com.ibm.security.auth.module
Class AIXLoginModule2000
- java.lang.Object
com.ibm.security.auth.module.AIXLoginModule2000
- public class AIXLoginModule2000
- extends java.lang.Object
- implements LoginModule
This LoginModule
imports a user's AIX
Principal
information (UsernamePrincipal
,
UserIDPrincipal
,
and GroupIDPrincipal
)
and associates them with the current Subject
.
This LoginModule recognizes the debug option. If set to true in the login Configuration, debug messages will be output to the output stream, System.out.
Constructor Summary
Constructor and Description |
---|
AIXLoginModule2000()
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
abort()
Abort the authentication (second phase).
|
|
commit()
Commit the authentication (second phase).
|
|
initialize(Subject subject,CallbackHandler callbackHandler,java.util.Map<java.lang.String,?> sharedState,java.util.Map<java.lang.String,?> options)
Initialize this
LoginModule .
|
|
login()
Authenticate the user (first phase).
|
|
logout()
Logout the user.
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail
AIXLoginModule2000
- public AIXLoginModule2000()
Method Detail
initialize
- public void initialize(Subject subject,
- CallbackHandler callbackHandler,
- java.util.Map<java.lang.String,?> sharedState,
- java.util.Map<java.lang.String,?> options)
initialize
in interface LoginModule
subject
- the Subject
to be authenticated.
callbackHandler
- a CallbackHandler
for communicating
with the end user (prompting for usernames and
passwords, for example).
sharedState
- shared LoginModule
state.
options
- options specified in the login
Configuration
for this particular
LoginModule
. login
- public boolean login()
- throws LoginException
The implementation of this method attempts to retrieve the user's
AIX Subject
information by making a native AIX
system call.
login
in interface LoginModule
LoginModule
should not be ignored). FailedLoginException
- if attempts to retrieve the underlying
system information fail. LoginException
- if the authentication fails commit
- public boolean commit()
- throws LoginException
This method is called if the LoginContext's overall authentication succeeded (the relevant REQUIRED, REQUISITE, SUFFICIENT and OPTIONAL LoginModules succeeded).
If this LoginModule's own authentication attempt
succeeded (the importing of the AIX authentication information
succeeded), then this method associates the AIX Principals
with the Subject
currently tied to the
LoginModule
. If this LoginModule's
authentication attempted failed, then this method removes
any state that was originally saved.
commit
in interface LoginModule
LoginException
- if the commit fails. abort
- public boolean abort()
- throws LoginException
This method is called if the LoginContext's overall authentication failed. (the relevant REQUIRED, REQUISITE, SUFFICIENT and OPTIONAL LoginModules did not succeed).
This method cleans up any state that was originally saved
as part of the authentication attempt from the login
and commit
methods.
abort
in interface LoginModule
LoginException
- if the abort fails. logout
- public boolean logout()
- throws LoginException
This method removes the Principals associated
with the Subject
.
logout
in interface LoginModule
LoginModule
should not be ignored). LoginException
- if the logout fails.
LoginModule
.