Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

net.sf.acegisecurity.ui.rememberme: Javadoc index of package net.sf.acegisecurity.ui.rememberme.


Package Samples:

net.sf.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. ...
RememberMeServices: Implement by a class that is capable of providing a remember-me service. Acegi Security filters (namely net.sf.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 ...
RememberMeProcessingFilter: Detects if there is no Authentication object in the ContextHolder , 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 ContextHolder . Do not use this class directly. Instead configure web.xml to use the net.sf.acegisecurity.util.FilterToBeanProxy .
NullRememberMeServices: Implementation of NullRememberMeServices that does nothing. Used as a default by several framework classes.

Home | Contact Us | Privacy Policy | Terms of Service