Package org.jboss.security.auth.spi
Class DisabledLoginModule
- java.lang.Object
-
- org.jboss.security.auth.spi.DisabledLoginModule
-
- All Implemented Interfaces:
LoginModule
public class DisabledLoginModule extends Object implements LoginModule
A login module that always fails authentication. It is to be used for a security domain that needs to be disabled, for instance when we don't want JAAS to fallback to using the 'other' security domain.- Author:
- Marcus Moyses
-
-
Field Summary
Fields Modifier and Type Field Description protected String
securityDomain
-
Constructor Summary
Constructors Constructor Description DisabledLoginModule()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
abort()
boolean
commit()
void
initialize(Subject subject, CallbackHandler callbackHandler, Map<String,?> sharedState, Map<String,?> options)
boolean
login()
boolean
logout()
-
-
-
Field Detail
-
securityDomain
protected String securityDomain
-
-
Method Detail
-
initialize
public void initialize(Subject subject, CallbackHandler callbackHandler, Map<String,?> sharedState, Map<String,?> options)
- Specified by:
initialize
in interfaceLoginModule
-
login
public boolean login() throws LoginException
- Specified by:
login
in interfaceLoginModule
- Throws:
LoginException
-
commit
public boolean commit() throws LoginException
- Specified by:
commit
in interfaceLoginModule
- Throws:
LoginException
-
abort
public boolean abort() throws LoginException
- Specified by:
abort
in interfaceLoginModule
- Throws:
LoginException
-
logout
public boolean logout() throws LoginException
- Specified by:
logout
in interfaceLoginModule
- Throws:
LoginException
-
-