Example #1
0
        void AppAuthState.authorize(AppAuthContext context)
        {
            login loginForm = context.getLoginForm();

            loginForm.setStateMessage("로그인 되었습니다.");
            loginForm.onAuthorized();
        }
Example #2
0
 void AppAuthState.error(AppAuthContext context)
 {
     throw new NotSupportedException();
 }
Example #3
0
 void AppAuthState.disconnect(AppAuthContext context)
 {
     throw new NotSupportedException();
 }
Example #4
0
 void AppAuthState.authenticateActivatingNew(AppAuthContext context)
 {
     throw new NotSupportedException();
 }
Example #5
0
 void AppAuthState.unauthorize(AppAuthContext context, string message)
 {
     throw new NotSupportedException();
 }
Example #6
0
 void AppAuthState.authorize(AppAuthContext context)
 {
     throw new NotSupportedException();
 }
Example #7
0
        void AppAuthState.authenticate(AppAuthContext context)
        {
            login loginForm = context.getLoginForm();

            loginForm.setStateMessage("로그인 시도하고 있습니다.");
        }