Package | Description |
---|---|
com.jalios.jcms |
Contains the core JCMS classes.
|
com.jalios.jcms.authentication | |
com.jalios.jcms.authentication.handlers |
Modifier and Type | Method and Description |
---|---|
void |
Channel.addAuthenticationHandler(AuthenticationHandler authHandler)
Add the specified
AuthenticationHandler to the list of
AuthenticationHandlers used by the AuthenticationManager
to process users' authentication. |
void |
Channel.removeAuthenticationHandler(AuthenticationHandler authHandler)
Remove the specified
AuthenticationHandler from the list of
AuthenticationHandlers used by the AuthenticationManager
to process users' authentication. |
Modifier and Type | Method and Description |
---|---|
java.util.SortedSet<AuthenticationHandler> |
AuthenticationManager.getAuthenticationHandlerSet()
Retrieve the internal set of
AuthenticationHandler
managed by the AuthenticationManager.Modify only if you are sure of what you do... |
Modifier and Type | Method and Description |
---|---|
void |
AuthenticationManager.addAuthenticationHandler(AuthenticationHandler authHdlr)
Add the specified AuthenticationHandler to the handlers collection
already managed by the AuthenticationManager.
|
int |
AuthenticationHandler.compareTo(AuthenticationHandler authHdlr)
Compare this object with the specified AuthenticationHandler for order.
|
void |
AuthenticationManager.removeAuthenticationHandler(AuthenticationHandler authHdlr)
Remove the specified AuthenticationHandler from the handlers
managed by the AuthenticationManager.
|
Modifier and Type | Class and Description |
---|---|
class |
AuthKeyAuthenticationHandler
Authenticates users using an "authentication key" parameter valid only for the request for which it is processed.
|
class |
ClientCertificateAuthenticationHandler |
class |
CookieAuthenticationHandler
Save authentification made by other handlers into cookie
and use it later on to re-authenticate.
You can disable this handler by modifiying property "auth-mgr.cookie-enabled" . |
class |
DelegationAuthenticationHandler
Uses the Member's delegation to allow him to change its identity to somebody else.
|
class |
HttpBasicAuthenticationHandler
Authenticates user using HTTP Authorization.
In order to make it work you are responsible to call the method HttpBasicAuthenticationHandler.setHttpBasicAuthorizationHeader(HttpServletResponse, String) to
trigger a HTTP Authorization response, the handler will deal with
decoding of the next request. |
class |
HttpDigestAuthenticationHandler
Authenticates user using HTTP Authorization.
|
class |
LoggingAuthenticationHandler
Provide logging of the authentication process using log4j.
This authentication handler must be the first in the list of authentication handlers to be able to log authentication made by other handlers. |
class |
SessionAuthenticationHandler
Save authentification made by other handlers into session
and use it later on to re-authenticate.
|
class |
SilentParamsAuthenticationHandler
Read the authentification from the "silent" parameter,
silentLogin ,
silentPassword . |
class |
SimpleAuthenticationHandler
Authenticate user based on the login/password of existing member in JCMS.
Current implementation of this AuthenticationHandler :
stops the LoginChain on empty login or passowrd. |
Copyright © 2001-2017 Jalios SA. All Rights Reserved.