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
I'm trying to add the EnterpriseUserExtension class as an extension to the standard UserResource class, and for the extension attributes to appear alongside the standard attributes in results of the /Schemas endpoint.
I have a Spring @Controller defined with the requiredSchemaExtensions, as below:
@ScimResource(description = "Access User Resources", name = "User", schema = UserResource.class, requiredSchemaExtensions = EnterpriseUserExtension.class)
However, the extension attributes are not returned from the /Schemas endpoint.
Looking at the code for SchemasController, it seems that if a coreSchema is defined, that is returned without the schemaExtensions. I have attempted to provide only requiredSchemaExtensions (which looks like it should work), however the @ScimResource requires the schema.
The text was updated successfully, but these errors were encountered:
@martinpritchard did you ever figure this out ? I have tried to define a custom schema for some attributes, the api is not deserilalizing them although it is being sent by the scim client.
@fnaeem78 I don't think I worked it out, the /Schemas endpoint didn't (still doesn't?) include custom attributes. However, it sounds like you may have a different problem if its a deserialization issue on a different API?.
I'm trying to add the
EnterpriseUserExtension
class as an extension to the standardUserResource
class, and for the extension attributes to appear alongside the standard attributes in results of the /Schemas endpoint.I have a Spring
@Controller
defined with the requiredSchemaExtensions, as below:However, the extension attributes are not returned from the /Schemas endpoint.
Looking at the code for SchemasController, it seems that if a coreSchema is defined, that is returned without the schemaExtensions. I have attempted to provide only requiredSchemaExtensions (which looks like it should work), however the
@ScimResource
requires the schema.The text was updated successfully, but these errors were encountered: