Class MockLoginModule
- java.lang.Object
-
- jetbrains.buildServer.serverSide.impl.auth.MockLoginModule
-
- All Implemented Interfaces:
LoginModule
public class MockLoginModule extends Object implements LoginModule
- Author:
- Pavel.Sher Date: 06.04.2006
-
-
Field Summary
Fields Modifier and Type Field Description static boolean
ourAllowCreatingNewUserByLogin
static String
ourLoginName
static String
REALM
-
Constructor Summary
Constructors Constructor Description MockLoginModule()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
abort()
boolean
commit()
protected Subject
getSubject()
void
initialize(Subject subject, CallbackHandler callbackHandler, Map<String,?> sharedState, Map<String,?> options)
boolean
login()
boolean
logout()
-
-
-
Field Detail
-
ourLoginName
public static String ourLoginName
-
ourAllowCreatingNewUserByLogin
public static boolean ourAllowCreatingNewUserByLogin
-
REALM
public static final String REALM
- See Also:
- Constant Field Values
-
-
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
-
getSubject
@NotNull protected Subject getSubject()
-
-