You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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);
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
The text was updated successfully, but these errors were encountered: