|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.sun.identity.authentication.spi.AMLoginModule
An abstract class which implements JAAS LoginModule, it provides methods to access Sun ONE Identity Server services and the module xml configuration.
Because it is an abstract class, Login Module writers must subclass and implement init(), process(), getPrincipal() methods.
The Callback[] for the Login Module is dynamically generated based on the xml module configuration. The module configuration file name must be the same as the name of the class (no package name) and have the extension .xml.
Here is a sample module configuration file:
<ModuleProperties moduleName="LDAP" version="1.0" > <Callbacks length="2" order="1" timeout="60" header="LDAP Authentication" > <NameCallback> <Prompt> Enter UserId </Prompt> </NameCallback> <PasswordCallback echoPassword="false" > <Prompt> Enter Password </Prompt> </PasswordCallback> </Callbacks> <Callbacks length="3" order="2" timeout="120" header="Password Expiring Please Change" > <PasswordCallback echoPassword="false" > <Prompt> Enter Current Password </Prompt> </PasswordCallback> <PasswordCallback echoPassword="false" > <Prompt> Enter New Password </Prompt> </PasswordCallback> <PasswordCallback echoPassword="false" > <Prompt> Confirm New Password </Prompt> </PasswordCallback> </Callbacks> </ModuleProperties>Each Callbacks Element corresponds to one login state. When an authentication process is invoked, there will be Callback[] generated from user's Login Module for each state. All login state starts with 1, then module controls the login process, and decides what's the next state to go in the process() method.
In the sample module configuration shown above, state one has three Callbacks, Callback[0] is for module information, Callback[1] is for user ID, Callback[2] is for user password. When the user fills in the Callbacks, those Callback[] will be sent to the process() method, where the module writer gets the submitted Callbacks, validates them and returns. If user's password is expiring, the module writer will set the next state to 2. State two has four Callbacks to request user to change password. The process() routine is again called after user submits the Callback[]. If the module writer throws an LoginException, an 'authentication failed' page will be sent to the user. If no exception is thrown, the user will be redirected to their default page.
The optional 'timeout' attribute in each state is used to ensure that the user responds in a timely manner. If the time between sending the Callbacks and getting response is greater than the timeout, a timeout page will be sent.
There are also optional 'html' and 'image' attribute in each state. The 'html' attribute allows the module writer to use a custom HTML page for the Login UI. The 'image' attribute allows the writer to display a custom background image on each page.
When multiple states are available to the user, the Callback array from a previous state may be retrieved by using the 'getCallbak(int state)' methods. The underlying login module keeps the Callback[] from the previous states until the login process is completed.
If a module writer need to substitute dynamic text in next state, the writer could use the 'getCallback()' method to get the Callback[] for the next state, modify the output text or prompt, then call replaceCallback() to update the Callback array. This allows a module writer to dynamically generate challenges, passwords or user IDs.
Each authentication session will create a new instance of your Login Module Java class. The reference to the class will be released once the authentication session has either succeeded or failed. It is important to note that any static data or reference to any static data in your Login module must be thread-safe.
For a complete sample, please refer to <install_root>/SUNWam/samples/authentication/providers
Constructor Summary | |
AMLoginModule()
|
Method Summary | |
java.lang.String |
getAttribute(int state,
int index)
Get the attribute name for the specified callback in the specified login state |
int |
getAuthLevel()
Get auth level |
javax.security.auth.callback.Callback[] |
getCallback(int index)
Return a Callback array for a specific state. |
int |
getCurrentState()
Returns the current state in the authentication process. |
HttpServletRequest |
getHttpServletRequest()
Returns the HttpServletRequest object that initiated the call to this module. |
HttpServletResponse |
getHttpServletResponse()
Returns the HttpServletResponse object for the servlet request that initiated the call to this module. |
java.lang.String |
getLocale()
Gets the locale for this authentication session. |
int |
getNumberOfStates()
Returns the number of authentication states for this login module. |
java.util.Map |
getOrgProfile(java.lang.String orgDN)
Returns the organization attributes for specified organization. |
java.util.Map |
getOrgServiceTemplate(java.lang.String orgDN,
java.lang.String serviceName)
Gets service template attributes defined for the specified organization. |
boolean |
getPersistentCookieOn()
Checks if persistent cookie is on or off. |
abstract java.security.Principal |
getPrincipal()
Abstract method must be implemeted by each login module to get the user Principal |
java.lang.String |
getRequestOrg()
Returns the organization DN for this authentication session. |
java.util.Map |
getServiceConfig(java.lang.String name)
Returns service config attributes. |
java.lang.String |
getSessionId()
Returns a unique key for this authentication session. |
SSOToken |
getSSOSession()
Get the authentication SSO session |
AMUser |
getUserProfile(java.lang.String userDN)
Returns the user profile for the user specified. |
java.lang.String |
getUserSessionProperty(java.lang.String name)
Gets the property from the user session. |
abstract void |
init(javax.security.auth.Subject subject,
java.util.Map sharedState,
java.util.Map options)
Initialize this LoginModule. |
boolean |
isRequired(int state,
int index)
Check if a Callback is required to have input |
abstract int |
process(javax.security.auth.callback.Callback[] callbacks,
int state)
Abstract method must be implemented by each login module to control the flow of the login process. |
void |
replaceCallback(int state,
int index,
javax.security.auth.callback.Callback callback)
Replace Callback object for a specific state. |
void |
resetCallback(int state,
int index)
Reset a Callback instance to the original Callback for the specified state and the specified index. |
boolean |
setAuthLevel(int auth_level)
Set the AuthLevel for this session. |
void |
setFailureID(java.lang.String userID)
Sets the userID of user who failed authentication. |
void |
setLoginFailureURL(java.lang.String url)
Sets the the login failure URL for the user. |
void |
setLoginSuccessURL(java.lang.String url)
Sets the the login successful URL for the user. |
boolean |
setPersistentCookieOn()
Attempt to set the Persistent Cookie for this session. |
void |
setUserSessionProperty(java.lang.String name,
java.lang.String value)
Sets a property in the user session. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface javax.security.auth.spi.LoginModule |
abort, commit, initialize, login, logout |
Constructor Detail |
public AMLoginModule()
Method Detail |
public SSOToken getSSOSession() throws javax.security.auth.login.LoginException
public javax.security.auth.callback.Callback[] getCallback(int index) throws javax.security.auth.login.LoginException
This method can be used to retrieve Callback[] for any state. All previous submitted Callback[] information are kept until the login process is completed.
index
- order of statejavax.security.auth.login.LoginException
- if unable to read the callbackspublic void replaceCallback(int state, int index, javax.security.auth.callback.Callback callback) throws javax.security.auth.login.LoginException
state
- Order of login stateindex
- Index of Callback in the Callback array to be replaced
for the specified state. Here index starts with 0, i.e. 0 means the
first Callback in the Callback[], 1 means the second callback.callback
- Callback instance to be replaced
throw LoginException if state or index is out of bound, or callback
instance is null.public void resetCallback(int state, int index) throws javax.security.auth.login.LoginException
state
- state in which the Callback[] to be resetindex
- order of the Callback in the Callback[], index starts
with 0, i.e. 0 means first callback instance, 1 means
the second callback instance.
throw LoginException if state or index is out of bound.public abstract void init(javax.security.auth.Subject subject, java.util.Map sharedState, java.util.Map options)
This is an abstract method, must be implemented by user's Login Module to initialize this LoginModule with the relevant information. If this LoginModule does not understand any of the data stored in sharedState or options parameters, they can be ignored.
subject
- - the Subject to be authenticated.sharedState
- - state shared with other configured LoginModules.options
- - options specified in the login Configuration for this
particular LoginModule. It contains all the global and organization
attribute configuration for this module. The key of the map is the
attribute name (e.g. iplanet-am-auth-ldap-server) as String, the
value is the value of the corresponding attribute as Set.public abstract int process(javax.security.auth.callback.Callback[] callbacks, int state) throws javax.security.auth.login.LoginException
This method takes an array of sbumitted Callback, process them and decide the order of next state to go. Return -1 if the login is successful, return 0 if the LoginModule should be ignored.
callbacks
- Callback[] for this Login statestate
- Order of state. State order starts with 1.public abstract java.security.Principal getPrincipal()
public int getAuthLevel()
public boolean setAuthLevel(int auth_level)
auth_level
- authentication level string to be setboolean
- true if setting is successful, false otherwisepublic int getCurrentState()
public HttpServletRequest getHttpServletRequest()
public HttpServletResponse getHttpServletResponse()
public java.lang.String getLocale() throws javax.security.auth.login.LoginException
public int getNumberOfStates()
public java.lang.String getRequestOrg()
public java.lang.String getSessionId()
public java.util.Map getOrgProfile(java.lang.String orgDN) throws javax.security.auth.login.LoginException
orgDN
- Requested organization DNjavax.security.auth.login.LoginException
- if cannot get organization profilepublic java.util.Map getOrgServiceTemplate(java.lang.String orgDN, java.lang.String serviceName) throws javax.security.auth.login.LoginException
orgDN
- Organization DNserviceName
- Requested service namejavax.security.auth.login.LoginException
- if cannot get organization service
templatepublic boolean getPersistentCookieOn()
public boolean setPersistentCookieOn()
public java.util.Map getServiceConfig(java.lang.String name) throws javax.security.auth.login.LoginException
name
- Requested service namepublic AMUser getUserProfile(java.lang.String userDN) throws javax.security.auth.login.LoginException
public java.lang.String getUserSessionProperty(java.lang.String name) throws javax.security.auth.login.LoginException
name
- The property name.public void setUserSessionProperty(java.lang.String name, java.lang.String value) throws javax.security.auth.login.LoginException
name
- The property name.value
- The property value.public void setLoginFailureURL(java.lang.String url) throws javax.security.auth.login.LoginException
url
- URL to go when authentication failedjavax.security.auth.login.LoginException
- if unable to set the URLpublic void setLoginSuccessURL(java.lang.String url) throws javax.security.auth.login.LoginException
url
- URL to go when authentication is successfuljavax.security.auth.login.LoginException
- if unable to set the URLpublic boolean isRequired(int state, int index)
state
- Order of stateindex
- Order of the Callback in the Callback[], the index
starts with 0.public java.lang.String getAttribute(int state, int index)
state
- Order of stateindex
- Order of the Callback in the Callback[], the index
starts with 0.public void setFailureID(java.lang.String userID)
userID
- - user name of user who faild authentication.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |