Import cleaning.

This commit is contained in:
Luke Taylor 2009-04-27 02:21:12 +00:00
parent bd1d19f372
commit e45f6914ee
1 changed files with 3 additions and 5 deletions

View File

@ -15,20 +15,18 @@
package org.springframework.security.web.authentication;
import org.springframework.security.core.Authentication;
import org.springframework.security.web.authentication.rememberme.RememberMeProcessingFilter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.security.core.Authentication;
/**
* Implement by a class that is capable of providing a remember-me service.
*
* <p>
* Spring Security filters (namely {@link org.springframework.security.web.authentication.AbstractProcessingFilter} and
* {@link org.springframework.security.web.authentication.rememberme.RememberMeProcessingFilter} will call
* the methods provided by an implementation of this interface.
* {@link RememberMeProcessingFilter} will call the methods provided by an implementation of this interface.
* <p>
* Implementations may implement any type of remember-me capability they wish.
* Rolling cookies (as per <a href="http://fishbowl.pastiche.org/2004/01/19/persistent_login_cookie_best_practice">