From 33eef5ec7aaf3979c812e412fcf8159c93023924 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Mon, 8 Jun 2009 13:04:31 +0000 Subject: [PATCH] Javadoc updates --- .../web/authentication/AnonymousProcessingFilter.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/web/src/main/java/org/springframework/security/web/authentication/AnonymousProcessingFilter.java b/web/src/main/java/org/springframework/security/web/authentication/AnonymousProcessingFilter.java index fe000d7cf9..03b433919f 100644 --- a/web/src/main/java/org/springframework/security/web/authentication/AnonymousProcessingFilter.java +++ b/web/src/main/java/org/springframework/security/web/authentication/AnonymousProcessingFilter.java @@ -139,12 +139,13 @@ public class AnonymousProcessingFilter extends SpringSecurityFilter implements /** * Controls whether the filter will remove the Anonymous token after the request is complete. Generally * this is desired to avoid the expense of a session being created by {@link - * org.springframework.security.web.context.HttpSessionContextIntegrationFilter HttpSessionContextIntegrationFilter} simply to - * store the Anonymous authentication token.

Defaults to true, being the most optimal and - * appropriate option (ie AnonymousProcessingFilter will clear the token at the end of each request, - * thus avoiding the session creation overhead in a typical configuration.

+ * org.springframework.security.web.context.HttpSessionContextIntegrationFilter HttpSessionContextIntegrationFilter} + * simply to store the Anonymous authentication token. + *

+ * Defaults to true, being the most optimal and appropriate + * option – AnonymousProcessingFilter will clear the token at the end of each request, + * thus avoiding session creation overhead in a typical configuration. * - * @param removeAfterRequest DOCUMENT ME! */ public void setRemoveAfterRequest(boolean removeAfterRequest) { this.removeAfterRequest = removeAfterRequest;