1
0
mirror of synced 2026-08-04 09:17:02 +00:00

SEC-2455: form-login@login-processing-url & logout@logout-url use matchers

Remove the deprecation warnings of using setFilterProcessingUrl by invoking
the matcher methods instead.
This commit is contained in:
Rob Winch
2014-01-29 15:35:18 -06:00
parent b5f5665ea6
commit 8d8475deb1
5 changed files with 50 additions and 2 deletions
@@ -125,6 +125,7 @@ public class LogoutFilter extends GenericFilterBean {
public void setLogoutRequestMatcher(RequestMatcher logoutRequestMatcher) {
Assert.notNull(logoutRequestMatcher, "logoutRequestMatcher cannot be null");
this.logoutRequestMatcher = logoutRequestMatcher;
this.filterProcessesUrl = null;
}
@Deprecated