This commit is contained in:
Michael Oberwasserlechner 2015-01-31 11:04:55 +01:00
parent 6627f76df7
commit 55fde81a0f
1 changed files with 7 additions and 0 deletions

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