From 7307b4b19d7e32f33ffe3f9f081ae0bfebbc8946 Mon Sep 17 00:00:00 2001 From: Justin Richer Date: Fri, 19 Apr 2013 16:11:42 -0400 Subject: [PATCH] added tostring to system scope to help with debugging --- .../src/main/java/org/mitre/oauth2/model/SystemScope.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/openid-connect-common/src/main/java/org/mitre/oauth2/model/SystemScope.java b/openid-connect-common/src/main/java/org/mitre/oauth2/model/SystemScope.java index fff8505e2..18858ef8d 100644 --- a/openid-connect-common/src/main/java/org/mitre/oauth2/model/SystemScope.java +++ b/openid-connect-common/src/main/java/org/mitre/oauth2/model/SystemScope.java @@ -201,6 +201,11 @@ public class SystemScope { return true; } + @Override + public String toString() { + return "SystemScope [value=" + value + ", description=" + description + ", icon=" + icon + ", allowDynReg=" + allowDynReg + ", defaultScope=" + defaultScope + "]"; + } + }