Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
devel:documentation:modules_scim [2019/08/16 09:14]
tomiskar [SCIM standard resources]
devel:documentation:modules_scim [2019/08/16 09:16]
tomiskar [SCIM standard resources]
Line 117: Line 117:
  
 This attributes are not implemented on the CzechIdM side by default, so when client try to save this attributes, exception with filled unsupported attribute name will be thrown. Custom module extension can be created, when attributes should be supported and saved in CzechIdM (with ''ScimUserService'' extension - override ''toDto'' and ''toResource'' methods and save attribute e.g. to custom extended attributes or into custom entity). This attributes are not implemented on the CzechIdM side by default, so when client try to save this attributes, exception with filled unsupported attribute name will be thrown. Custom module extension can be created, when attributes should be supported and saved in CzechIdM (with ''ScimUserService'' extension - override ''toDto'' and ''toResource'' methods and save attribute e.g. to custom extended attributes or into custom entity).
 +
 +User resource property ''displayName'' is mapped to CzechIdM attributes ''code'' and ''name''. If ''displayName'' is changed, then both properties are changed (since 1.2.0 version, previous version modified ''name'' attribute only, ''code'' was unmodifiable).
  
 Implemented filter and sort properties on standard scim resources: Implemented filter and sort properties on standard scim resources:
   * ''User'' - ''externalId'', ''userName'', ''name.familyName''   * ''User'' - ''externalId'', ''userName'', ''name.familyName''
-  * ''Group'' - ''externalId'', ''displayName'' (mapped to both - code and name)+  * ''Group'' - ''externalId'', ''displayName''
  
 Filter supports equals (''eq'') operator and ''AND'' clause only. When other operator or clause is used, then unsupported operation will be thrown. Pagination ''startIndex'' and ''count'' parameter can be used. ''startIndex'' parameter is he 1-based index of the first query result. Start index has to be the first index on the page (n * count + 1), exception with code ''FIND\_START\_INDEX\_INVALID'' is thrown otherwise (CzechIdM can paginate by the whole page only). Filter parameter has to be url encoded. Filter supports equals (''eq'') operator and ''AND'' clause only. When other operator or clause is used, then unsupported operation will be thrown. Pagination ''startIndex'' and ''count'' parameter can be used. ''startIndex'' parameter is he 1-based index of the first query result. Start index has to be the first index on the page (n * count + 1), exception with code ''FIND\_START\_INDEX\_INVALID'' is thrown otherwise (CzechIdM can paginate by the whole page only). Filter parameter has to be url encoded.
  • by poulm