com.sun.security.auth.module.UnixLoginModule.
             This LoginModule is entirely deprecated and
             is here to allow for a smooth transition to the new
             UnixLoginModule.@Exported(value=false) @Deprecated public class SolarisLoginModule extends Object implements LoginModule
 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 and Description | 
|---|
| SolarisLoginModule()Deprecated.  | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | abort()Deprecated.  Abort the authentication (second phase). | 
| boolean | commit()Deprecated.  Commit the authentication (second phase). | 
| void | initialize(Subject subject,
          CallbackHandler callbackHandler,
          Map<String,?> sharedState,
          Map<String,?> options)Deprecated.  Initialize this  LoginModule. | 
| boolean | login()Deprecated.  Authenticate the user (first phase). | 
| boolean | logout()Deprecated.  Logout the user | 
public void initialize(Subject subject, CallbackHandler callbackHandler, Map<String,?> sharedState, Map<String,?> options)
LoginModule.
 initialize in interface LoginModulesubject - 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 LoginModuleLoginModule
          should not be ignored).FailedLoginException - if attempts to retrieve the underlying
          system information fail.LoginException - if the authentication failspublic 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 LoginModuleLoginException - 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 LoginModuleLoginException - if the abort failspublic boolean logout()
               throws LoginException
 This method removes the Principals associated
 with the Subject.
 
logout in interface LoginModuleLoginModule
          should not be ignored).LoginException - if the logout fails
 Copyright © 1998, 2017, Oracle and/or its affiliates.  All rights reserved.