SEC-2838
This commit is contained in:
parent
6627f76df7
commit
55fde81a0f
|
@ -75,6 +75,13 @@ final class PermitAllSupport {
|
||||||
|
|
||||||
return uri.equals(request.getContextPath() + processUrl);
|
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() {}
|
private PermitAllSupport() {}
|
||||||
|
|
Loading…
Reference in New Issue