Reputation: 940
Beside of users and groups does SCIM covers CRUD operations for other resources. I guess no ? Mean on custom resources for specific cases. Per instance custom Product resource to be provisioned between two trusted SPs.
The only one extensibility (correct me if I am wrong) dictated by SCIM default schema is Enterprise User ("urn:scim:schemas:extension:enterprise:1.0")
Upvotes: 0
Views: 688
Reputation: 654
Better late than never. SCIM is not only users and groups! the RFCs are only mentioning users and groups but are defining a much wider scale of resources. Here is a java library supporting the definition of any resource-type: https://github.com/Captain-P-Goldfish/SCIM-SDK
I personally using it especially much for administration tools that define CRUD operations for specific resources.
Upvotes: 0
Reputation: 1892
Yes, only users and groups are covered by the spec, but as you mentioned you can always add extensions.
Upvotes: 1