scim2 icon indicating copy to clipboard operation
scim2 copied to clipboard

The UnboundID SCIM 2.0 SDK for Java

Results 60 scim2 issues
Sort by recently updated
recently updated
newest added

POJOs currently have to extend BaseScimResource to get the behavior of expecting the SCIM common attributes (schemas, id, externalId, and meta). We should make the SCIM compatible Jackson JSON mapper...

I would like to manage AWS SCIM with this scim2 library. AWS has some [known limitations](https://docs.aws.amazon.com/singlesignon/latest/developerguide/limitations.html), and /schemas and /ResourceTypes endpoints are not available. I would like the conditional option...

Bumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.10.5.1 to 2.12.6.1. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.core:jackson-databind&package-manager=maven&previous-version=2.10.5.1&new-version=2.12.6.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Patchoperation with opType remove does not save the objectNode value . This makes it hard to support removing group members according to this: https://help.salesforce.com/s/articleView?id=sf.identity_scim_manage_groups.htm&type=5. I want to use PatchRequest and...

_Please be aware that Ping Identity does not accept third-party contributions at this time! Please see our [contribution guidelines](https://github.com/pingidentity/scim2/blob/master/CONTRIBUTING.md)._ What does this implement/fix? Explain your changes. --------------------------------------------------- It is recommended...

Given that DotSearchFilter converts POST /Users/.search into GET /Users with query params, the obvious approach is to only handle the GET endpoint. Problem is that I found no way of...

**Describe the bug** When multiple Patch Add operations are issued for the same compound object in the scope of the same PatchRequest, AddOperation creates a separate record for each property....

This fixes an issue where PATCH requests with add operation and no path field containing nested fields (with '.') where not correctly applied. For example the following PATCH request: ~~~~...

**Describe the bug** When using the following code ~~~~ final PatchRequest patchToBeApplied = new ObjectMapper() .readValue(patchRequest, PatchRequest.class); final GenericScimResource resource = new ObjectMapper() .readValue(resourceJson, GenericScimResource.class); patchToBeApplied.apply(value); ~~~~ in the result...

**Describe the bug** Considering the RFC specification, the Resources field of ListResponse is required only if the "totalResults" is non-zero (https://datatracker.ietf.org/doc/html/rfc7644#section-3.4.2). In the current implementation (https://github.com/pingidentity/scim2/blob/master/scim2-sdk-common/src/main/java/com/unboundid/scim2/common/messages/ListResponse.java#L74), the "Resources" attribute is...