From 9bb64d19745ec50edf46399e95bd9ca0856386d9 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Sat, 6 Dec 2008 17:56:24 +0000 Subject: [PATCH] Removed out of date javadoc reference to SecurityEnforcementFilter. --- .../ui/ExceptionTranslationFilter.java | 252 +++++++++--------- 1 file changed, 125 insertions(+), 127 deletions(-) diff --git a/core/src/main/java/org/springframework/security/ui/ExceptionTranslationFilter.java b/core/src/main/java/org/springframework/security/ui/ExceptionTranslationFilter.java index 9c255a0dae..a318874dfe 100644 --- a/core/src/main/java/org/springframework/security/ui/ExceptionTranslationFilter.java +++ b/core/src/main/java/org/springframework/security/ui/ExceptionTranslationFilter.java @@ -46,21 +46,17 @@ import javax.servlet.http.HttpServletResponse; *

* This filter is necessary because it provides the bridge between Java exceptions and HTTP responses. * It is solely concerned with maintaining the user interface. This filter does not do any actual security enforcement. - *

*

* If an {@link AuthenticationException} is detected, the filter will launch the authenticationEntryPoint. * This allows common handling of authentication failures originating from any subclass of * {@link org.springframework.security.intercept.AbstractSecurityInterceptor}. - *

*

* If an {@link AccessDeniedException} is detected, the filter will determine whether or not the user is an anonymous * user. If they are an anonymous user, the authenticationEntryPoint will be launched. If they are not * an anonymous user, the filter will delegate to the {@link org.springframework.security.ui.AccessDeniedHandler}. * By default the filter will use {@link org.springframework.security.ui.AccessDeniedHandlerImpl}. - *

*

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

*