From 99b751048264e3e74e53df3164062d2b8acae67f Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Mon, 7 Jan 2008 16:10:50 +0000 Subject: [PATCH] Tidied up getters/setters in AbstractProcessingFilter. Removed unused getters and reduced the scope of others where possible. --- .../security/ui/AbstractProcessingFilter.java | 217 +++++++++--------- .../context/SecurityContextHolderTests.java | 4 +- ...erAuthenticationProcessingFilterTests.java | 37 +-- 3 files changed, 107 insertions(+), 151 deletions(-) diff --git a/core/src/main/java/org/springframework/security/ui/AbstractProcessingFilter.java b/core/src/main/java/org/springframework/security/ui/AbstractProcessingFilter.java index f22fe37d03..e653e6417e 100644 --- a/core/src/main/java/org/springframework/security/ui/AbstractProcessingFilter.java +++ b/core/src/main/java/org/springframework/security/ui/AbstractProcessingFilter.java @@ -63,15 +63,12 @@ import javax.servlet.http.HttpSession; * authentication is successful, the resulting {@link Authentication} object * will be placed into the SecurityContext, which is guaranteed * to have already been created by an earlier filter. - *

*

* If authentication fails, the AuthenticationException will be * placed into the HttpSession with the attribute defined by * {@link #SPRING_SECURITY_LAST_EXCEPTION_KEY}. - *

*

* To use this filter, it is necessary to specify the following properties: - *

*