Searched refs:logout (Results 1 - 25 of 34) sorted by relevance

12

/openjdk10/jdk/test/javax/security/auth/login/LoginContext/
H A DResetModule.java39 public boolean logout() throws LoginException { return true; } method in class:ResetModule
H A DDummyLoginModule.java60 public boolean logout() throws LoginException { method in class:DummyLoginModule
61 System.out.println("\t\t" + header + " logout method is called");
62 System.out.println("\t\t" + header + " logout:PASS");
H A DDefaultHandlerModule.java74 public boolean logout() throws LoginException { method in class:DefaultHandlerModule
H A DModuleSubjectModule.java76 public boolean logout() throws LoginException { method in class:ModuleSubjectModule
H A DConfigConstructor.java210 public boolean logout() throws LoginException { return true; } method in class:ConfigConstructor.MyModule1
228 public boolean logout() throws LoginException { return true; } method in class:ConfigConstructor.MyModule2
247 public boolean logout() throws LoginException { return true; } method in class:ConfigConstructor.MyModule3
265 public boolean logout() throws LoginException { return true; } method in class:ConfigConstructor.MyModule4
282 public boolean logout() throws LoginException { return true; } method in class:ConfigConstructor.MyModule5
299 public boolean logout() throws LoginException { return true; } method in class:ConfigConstructor.MyModule6
H A DLCTest.java41 * @summary Test checks that proper methods associated with login/logout process
50 * @run main/othervm LCTest LogoutRequisite false logout
51 * @run main/othervm LCTest LogoutSufficient true logout
52 * @run main/othervm LCTest LogoutRequired false logout
86 lc.logout();
212 * Login module that throws Exception in logout method.
217 public boolean logout() throws LoginException { method in class:LCTest.LoginModuleWithLogoutException
218 super.logout();
315 public boolean logout() throws LoginException { method in class:LCTest.LoginModuleBase
316 LCTest.logAction("logout");
[all...]
H A DSharedState.java69 public boolean logout() throws LoginException { method in class:SharedState.Module
H A DSmartLoginModule.java90 logout();
170 public boolean logout() throws LoginException { method in class:SmartLoginModule
H A DStandardCallbacks.java111 context.logout();
/openjdk10/jdk/test/sun/security/pkcs11/Provider/
H A DLogin.java63 ap.logout();
78 ap.logout();
98 // logout
99 ap.logout();
H A DLoginISE.java58 ap.logout();
61 System.out.println("Expected ISE thrown for logout call");
67 System.out.println("Expected ISE thrown for logout call");
/openjdk10/jdk/src/java.base/share/classes/java/security/
H A DAuthProvider.java33 * This class defines login and logout methods for a provider.
114 * @throws LoginException if the logout operation fails
121 public abstract void logout() throws LoginException; method in class:AuthProvider
/openjdk10/jdk/src/java.base/share/classes/javax/security/auth/spi/
H A DLoginModule.java116 * The {@code LoginContext} invokes the LoginModule's {@code logout}
117 * method. The {@code logout} method for the {@code LoginModule}
118 * then performs the logout procedures, such as removing Principals or
224 * @exception LoginException if the logout fails
229 boolean logout() throws LoginException; method in interface:LoginModule
/openjdk10/jdk/test/javax/security/auth/spi/
H A DSecondLoginModule.java60 public boolean logout() throws LoginException { method in class:SecondLoginModule
H A DFirstLoginModule.java54 public boolean logout() throws LoginException { method in class:FirstLoginModule
/openjdk10/jdk/test/javax/security/auth/login/modules/
H A DJaasClientWithDefaultHandler.java42 lc.logout();
H A DJaasClient.java52 lc.logout();
H A DTestLoginModule.java125 public boolean logout() throws LoginException { method in class:TestLoginModule
128 "'%s' login module logout completed", this.getClass()));
/openjdk10/jdk/test/javax/security/auth/login/JAASConfigSyntaxCheck/
H A DSampleLoginModule.java71 public boolean logout() throws LoginException { method in class:SampleLoginModule
72 out.println("logout is called in AbstractLoginModule");
73 out.println(name + ":logout:PASS");
/openjdk10/jdk/test/com/sun/security/auth/module/KeyStoreLoginModule/
H A DReadOnly.java27 * @summary JAAS KeyStoreLoginModule logout doesn't
106 // test regular logout
107 m.logout();
127 // try to logout
129 m.logout();
/openjdk10/jdk/src/jdk.security.auth/share/classes/com/sun/security/auth/module/
H A DUnixLoginModule.java252 logout();
263 * @exception LoginException if the logout fails
268 public boolean logout() throws LoginException { method in class:UnixLoginModule
272 ("logout Failed: Subject is Readonly");
H A DNTLoginModule.java322 logout();
336 * @exception LoginException if the logout fails.
341 public boolean logout() throws LoginException { method in class:NTLoginModule
386 "completed logout processing");
/openjdk10/jdk/test/javax/management/security/
H A DTestSampleLoginModule.java112 public boolean logout() throws LoginException { method in class:TestSampleLoginModule
/openjdk10/jdk/src/java.management/share/classes/com/sun/jmx/remote/security/
H A DFileLoginModule.java392 logout();
403 * @exception LoginException if the logout fails.
407 public boolean logout() throws LoginException { method in class:FileLoginModule
421 logger.debug("logout", "Subject is being logged out");
/openjdk10/jdk/src/java.base/share/classes/javax/security/auth/login/
H A DLoginContext.java87 * <p> To logout the Subject, the caller calls
88 * the {@code logout} method. As with the {@code login}
89 * method, this {@code logout} method invokes the {@code logout}
199 private static final String LOGOUT_METHOD = "logout";
590 * <p> This method invokes the {@code logout} method for each
592 * Each {@code LoginModule} performs its respective logout procedure
604 * @exception LoginException if the logout fails.
606 public void logout() throws LoginException { method in class:LoginContext
609 ("null.subject.logout
[all...]

Completed in 78 milliseconds

12