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: - *

*