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

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

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