瀏覽代碼

SEC-2362: Clarify AbstractRememberMeServices loginSuccess javadoc

Rob Winch 12 年之前
父節點
當前提交
1351c8bada

+ 4 - 0
web/src/main/java/org/springframework/security/web/authentication/rememberme/AbstractRememberMeServices.java

@@ -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) {