Skip to content
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

SCIMSchemaDefinitions uses wrong type String for PRIMARY sub-attribute. Should be Boolean #177

Closed
mspanovic opened this issue Dec 27, 2018 · 0 comments

Comments

@mspanovic
Copy link
Contributor

Description:
SCIMSchemaDefinitions uses wrong type String for PRIMARY sub-attribute. Should be Boolean
https://github.com/wso2/charon/blob/master/modules/charon-core/src/main/java/org/wso2/charon3/core/schema/SCIMSchemaDefinitions.java

eg.
//A Boolean value indicating the 'primary' or preferred attribute value for this attribute
public static final SCIMAttributeSchema PHOTOS_PRIMARY =
SCIMAttributeSchema.createSCIMAttributeSchema(SCIMConstants.UserSchemaConstants.PHOTOS_PRIMARY_URI,
SCIMConstants.CommonSchemaConstants.PRIMARY,
SCIMDefinitions.DataType.STRING, false, SCIMConstants.UserSchemaConstants
.PHOTOS_PRIMARY_DESC, false, false,
SCIMDefinitions.Mutability.READ_WRITE, SCIMDefinitions.Returned.DEFAULT,
SCIMDefinitions.Uniqueness.NONE, null, null, null);

Should have SCIMDefinitions.DataType.BOOLEAN

IMS_PRIMARY
ENTITLEMENTS_PRIMARY
ROLES_PRIMARY
X509CERTIFICATES_PRIMARY

Are also affected

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants