Merge pull request #170 from moberwasserlechner/master

SEC-2838: Add toString for ExactUrlRequestMatcher
This commit is contained in:
Rob Winch 2015-02-03 10:48:51 -06:00
commit 71a053000a

View File

@ -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() {}