From 2331d3388fc2c797a9564bb762a0780575a8b67e Mon Sep 17 00:00:00 2001 From: Florian Wilhelm Date: Thu, 13 Aug 2015 10:34:42 +0200 Subject: [PATCH] Introduce Constant representing ListResponse Related to osiam/resource-server#33 --- .../src/main/java/org/osiam/resources/scim/Constants.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scim-schema/src/main/java/org/osiam/resources/scim/Constants.java b/scim-schema/src/main/java/org/osiam/resources/scim/Constants.java index 49924ff9..feb71c73 100644 --- a/scim-schema/src/main/java/org/osiam/resources/scim/Constants.java +++ b/scim-schema/src/main/java/org/osiam/resources/scim/Constants.java @@ -30,6 +30,7 @@ public interface Constants { String USER_CORE_SCHEMA = "urn:scim:schemas:core:2.0:User"; String GROUP_CORE_SCHEMA = "urn:scim:schemas:core:2.0:Group"; + String LIST_RESPONSE_CORE_SCHEMA = "urn:ietf:params:scim:api:messages:2.0:ListResponse"; String SERVICE_PROVIDER_CORE_SCHEMA = "urn:scim:schemas:core:2.0:ServiceProviderConfig"; int MAX_RESULT = 100; -} \ No newline at end of file +}