mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-25 21:42:17 +00:00
SEC-1779: Make new getters protected rather than public.
This commit is contained in:
parent
178765cf83
commit
0bccbbfc18
@ -429,11 +429,11 @@ public abstract class AbstractAuthenticationProcessingFilter extends GenericFilt
|
|||||||
this.failureHandler = failureHandler;
|
this.failureHandler = failureHandler;
|
||||||
}
|
}
|
||||||
|
|
||||||
public AuthenticationSuccessHandler getSuccessHandler() {
|
protected AuthenticationSuccessHandler getSuccessHandler() {
|
||||||
return successHandler;
|
return successHandler;
|
||||||
}
|
}
|
||||||
|
|
||||||
public AuthenticationFailureHandler getFailureHandler() {
|
protected AuthenticationFailureHandler getFailureHandler() {
|
||||||
return failureHandler;
|
return failureHandler;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user