void AppAuthState.authorize(AppAuthContext context) { login loginForm = context.getLoginForm(); loginForm.setStateMessage("로그인 되었습니다."); loginForm.onAuthorized(); }
void AppAuthState.error(AppAuthContext context) { throw new NotSupportedException(); }
void AppAuthState.disconnect(AppAuthContext context) { throw new NotSupportedException(); }
void AppAuthState.authenticateActivatingNew(AppAuthContext context) { throw new NotSupportedException(); }
void AppAuthState.unauthorize(AppAuthContext context, string message) { throw new NotSupportedException(); }
void AppAuthState.authorize(AppAuthContext context) { throw new NotSupportedException(); }
void AppAuthState.authenticate(AppAuthContext context) { login loginForm = context.getLoginForm(); loginForm.setStateMessage("로그인 시도하고 있습니다."); }