-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create complex object to store role properties #417
base: master
Are you sure you want to change the base?
Create complex object to store role properties #417
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #417 +/- ##
============================================
+ Coverage 28.40% 28.45% +0.04%
Complexity 919 919
============================================
Files 133 133
Lines 13007 13030 +23
Branches 2504 2504
============================================
+ Hits 3695 3708 +13
- Misses 8839 8849 +10
Partials 473 473
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
1082ef9
to
8f4c235
Compare
@@ -612,6 +619,11 @@ public static class RoleSchemaConstants { | |||
public static final String AUDIENCE_DISPLAY_URI = | |||
"urn:ietf:params:scim:schemas:extension:2.0:Role:audience.display"; | |||
public static final String AUDIENCE_TYPE_URI = "urn:ietf:params:scim:schemas:extension:2.0:Role:audience.type"; | |||
public static final String ROLE_PROPERTY_NAME_URI = | |||
"urn:ietf:params:scim:schemas:extension:2.0:Role:roleProperties.name"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"urn:ietf:params:scim:schemas:extension:2.0:Role:roleProperties.name"; | |
"urn:ietf:params:scim:schemas:extension:2.0:Role:properties.name"; |
@@ -612,6 +619,11 @@ public static class RoleSchemaConstants { | |||
public static final String AUDIENCE_DISPLAY_URI = | |||
"urn:ietf:params:scim:schemas:extension:2.0:Role:audience.display"; | |||
public static final String AUDIENCE_TYPE_URI = "urn:ietf:params:scim:schemas:extension:2.0:Role:audience.type"; | |||
public static final String ROLE_PROPERTY_NAME_URI = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public static final String ROLE_PROPERTY_NAME_URI = | |
public static final String PROPERTIES_NAME_URI = |
@@ -550,6 +550,10 @@ public static class RoleSchemaConstants { | |||
public static final String DISPLAY = "display"; | |||
public static final String VALUE = "value"; | |||
public static final String TYPE = "type"; | |||
public static final String ROLE_PROPERTIES_URI = | |||
"urn:ietf:params:scim:schemas:extension:2.0:Role:roleProperties"; | |||
public static final String ROLE_PROPERTIES = "roleProperties"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public static final String ROLE_PROPERTIES = "roleProperties"; | |
public static final String PROPERTIES = "roleProperties"; |
SCIMConstants.RoleSchemaConstants.ROLE_PROPERTY_NAME, SCIMDefinitions.DataType.STRING, false, | ||
SCIMConstants.RoleSchemaConstants.ROLE_PROPERTY_NAME_DESC, false, false, | ||
SCIMDefinitions.Mutability.IMMUTABLE, SCIMDefinitions.Returned.DEFAULT, | ||
SCIMDefinitions.Uniqueness.NONE, null, null, null); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Name needs to be unique
5b11bd6
to
eb501c2
Compare
eb501c2
to
fbdb315
Compare
Purpose