diff --git a/web/src/main/java/org/springframework/security/web/authentication/RememberMeServices.java b/web/src/main/java/org/springframework/security/web/authentication/RememberMeServices.java index 3bad1aa600..1a84b92026 100644 --- a/web/src/main/java/org/springframework/security/web/authentication/RememberMeServices.java +++ b/web/src/main/java/org/springframework/security/web/authentication/RememberMeServices.java @@ -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. * *

* 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. *

* Implementations may implement any type of remember-me capability they wish. * Rolling cookies (as per