mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-05-31 17:22:13 +00:00
Merge pull request #170 from moberwasserlechner/master
SEC-2838: Add toString for ExactUrlRequestMatcher
This commit is contained in:
commit
71a053000a
@ -75,6 +75,13 @@ final class PermitAllSupport {
|
||||
|
||||
return uri.equals(request.getContextPath() + processUrl);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("ExactUrl [processUrl='").append(processUrl).append("']");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
private PermitAllSupport() {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user