SEC-2362: Clarify AbstractRememberMeServices loginSuccess javadoc

This commit is contained in:
Rob Winch 2013-10-15 13:53:23 -05:00
parent 0978c12c47
commit 1351c8bada
1 changed files with 4 additions and 0 deletions

View File

@ -244,8 +244,12 @@ public abstract class AbstractRememberMeServices implements RememberMeServices,
protected void onLoginFail(HttpServletRequest request, HttpServletResponse response) {}
/**
* {@inheritDoc}
*
* <p>
* Examines the incoming request and checks for the presence of the configured "remember me" parameter.
* If it's present, or if <tt>alwaysRemember</tt> is set to true, calls <tt>onLoginSucces</tt>.
* </p>
*/
public final void loginSuccess(HttpServletRequest request, HttpServletResponse response,
Authentication successfulAuthentication) {