| Home >> All >> org >> acegisecurity >> ui >> [ rememberme Javadoc ] |
org.acegisecurity.ui.rememberme: Javadoc index of package org.acegisecurity.ui.rememberme.
Package Samples:
org.acegisecurity.ui.rememberme
Classes:
TokenBasedRememberMeServices: Identifies previously remembered users by a Base-64 encoded cookie. This implementation does not rely on an external database, so is attractive for simple applications. The cookie will be valid for a specific period from the date of the last loginSuccess(HttpServletRequest, HttpServletResponse, Authentication) 55 . As per the interface contract, this method will only be called when the principal completes a successful interactive authentication. As such the time period commences from the last authentication attempt where they furnished credentials - not the time period they last logged in via remember-me. ...
RememberMeProcessingFilter: Detects if there is no Authentication object in the SecurityContext , and populates it with a remember-me authentication token if a RememberMeServices implementation so requests. Concrete RememberMeServices implementations will have their RememberMeServices.autoLogin(HttpServletRequest, HttpServletResponse) 55 method called by this filter. The Authentication or null returned by that method will be placed into the SecurityContext . If authentication is successful, an org.acegisecurity.event.authentication.InteractiveAuthenticationSuccessEvent will be published to the application context. No events ...
RememberMeServices: Implement by a class that is capable of providing a remember-me service. Acegi Security filters (namely org.acegisecurity.ui.AbstractProcessingFilter and RememberMeProcessingFilter will call the methods provided by an implementation of this interface. Implementations may implement any type of remember-me capability they wish. Rolling cookies (as per http://fishbowl.pastiche.org/2004/01/19/persistent_login_cookie_best_practice ) can be used, as can simple implementations that don't require a persistent store. Implementations also determine the validity period of a remember-me cookie. This interface ...
NullRememberMeServices: Implementation of NullRememberMeServices that does nothing. Used as a default by several framework classes.
| Home | Contact Us | Privacy Policy | Terms of Service |