|
JAAS | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.sun.security.auth.module.SolarisLoginModule
com.sun.security.auth.module.UnixLoginModule
.
This LoginModule is entirely deprecated and
is here to allow for a smooth transition to the new
UnixLoginModule.
This LoginModule
imports a user's Solaris
Principal
information (SolarisPrincipal
,
SolarisNumericUserPrincipal
,
and SolarisNumericGroupPrincipal
)
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 | |
SolarisLoginModule()
Deprecated. |
Method Summary | |
boolean |
abort()
Deprecated. Abort the authentication (second phase). |
boolean |
commit()
Deprecated. Commit the authentication (second phase). |
void |
initialize(Subject subject,
CallbackHandler callbackHandler,
Map sharedState,
Map options)
Deprecated. Initialize this LoginModule . |
boolean |
login()
Deprecated. Authenticate the user (first phase). |
boolean |
logout()
Deprecated. Logout the user |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public SolarisLoginModule()
Method Detail |
public void initialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, Map options)
LoginModule
.
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
.public boolean login() throws LoginException
The implementation of this method attempts to retrieve the user's
Solaris Subject
information by making a native Solaris
system call.
login
in interface LoginModule
LoginModule
should not be ignored).
FailedLoginException
- if attempts to retrieve the underlying
system information fail.
LoginException
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 Solaris authentication information
succeeded), then this method associates the Solaris 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 failspublic 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 failspublic 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
|
JAAS | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |