Package org.apache.activemq.jaas
Class GuestLoginModule
- java.lang.Object
-
- org.apache.activemq.jaas.GuestLoginModule
-
- All Implemented Interfaces:
LoginModule
public class GuestLoginModule extends Object implements LoginModule
Always login the user with a default 'guest' identity. Useful for unauthenticated communication channels being used in the same broker as authenticated ones.
-
-
Constructor Summary
Constructors Constructor Description GuestLoginModule()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanabort()booleancommit()voidinitialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, Map options)booleanlogin()booleanlogout()
-
-
-
Method Detail
-
initialize
public void initialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, Map options)
- Specified by:
initializein interfaceLoginModule
-
login
public boolean login() throws LoginException- Specified by:
loginin interfaceLoginModule- Throws:
LoginException
-
commit
public boolean commit() throws LoginException- Specified by:
commitin interfaceLoginModule- Throws:
LoginException
-
abort
public boolean abort() throws LoginException- Specified by:
abortin interfaceLoginModule- Throws:
LoginException
-
logout
public boolean logout() throws LoginException- Specified by:
logoutin interfaceLoginModule- Throws:
LoginException
-
-