From 55fde81a0fe8620f151b553b2088958900c596e2 Mon Sep 17 00:00:00 2001 From: Michael Oberwasserlechner Date: Sat, 31 Jan 2015 11:04:55 +0100 Subject: [PATCH] SEC-2838 --- .../annotation/web/configurers/PermitAllSupport.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/src/main/java/org/springframework/security/config/annotation/web/configurers/PermitAllSupport.java b/config/src/main/java/org/springframework/security/config/annotation/web/configurers/PermitAllSupport.java index 4f95e43f1e..56d15ad55b 100644 --- a/config/src/main/java/org/springframework/security/config/annotation/web/configurers/PermitAllSupport.java +++ b/config/src/main/java/org/springframework/security/config/annotation/web/configurers/PermitAllSupport.java @@ -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() {}