I need to map SCIM core schema to LDAP to be used by UnboundId for operations in LDAP.
Is there a better approach to convert these schema??
e.g. In schema given here I need to map:
userName
to uid
name.formatted
to cn
name.familyName
to sn (surname)
...
So there are search filters that will be mapped:
`userName eq john` will be mapped to `(uid=john)`
One way is to write utility classes and map each SCIM attribute to LDAP attribute to convert SCIM filter to LDAP.
Is there any useful standard for doing so?