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

SEC-1657: Corresponding namespace updates to use SecurityFilterChain list in place of filterChainMap.

This commit is contained in:
Luke Taylor
2011-04-23 22:28:19 +01:00
parent 37d0454fd7
commit 04dc65c8fe
17 changed files with 258 additions and 174 deletions
@@ -32,7 +32,7 @@ public final class SecurityFilterChain {
public SecurityFilterChain(RequestMatcher requestMatcher, List<Filter> filters) {
this.requestMatcher = requestMatcher;
this.filters = filters;
this.filters = new ArrayList<Filter>(filters);
}
public RequestMatcher getRequestMatcher() {
@@ -14,4 +14,13 @@ public final class AnyRequestMatcher implements RequestMatcher {
return true;
}
@Override
public boolean equals(Object obj) {
return obj instanceof AnyRequestMatcher;
}
@Override
public int hashCode() {
return 1;
}
}