SEC-1779: Make new getters protected rather than public.

This commit is contained in:
Luke Taylor 2011-11-01 00:20:34 +00:00
parent 178765cf83
commit 0bccbbfc18

View File

@ -429,11 +429,11 @@ public abstract class AbstractAuthenticationProcessingFilter extends GenericFilt
this.failureHandler = failureHandler;
}
public AuthenticationSuccessHandler getSuccessHandler() {
protected AuthenticationSuccessHandler getSuccessHandler() {
return successHandler;
}
public AuthenticationFailureHandler getFailureHandler() {
protected AuthenticationFailureHandler getFailureHandler() {
return failureHandler;
}
}