Searched defs:oldResource (Results 1 - 1 of 1) sorted by relevance

/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/managed/
H A DRelationshipProvider.java487 public Promise<ResourceResponse, ResourceException> apply(ResourceResponse oldResource)
489 return updateIfChanged(context, request, relationshipId, rev, oldResource, newValue);
499 final ResourceResponse oldResource = getConnection().readAsync(context, readRequest).getOrThrow();
502 result = updateIfChanged(context, request, relationshipId, rev, oldResource, newValue).getOrThrow();
615 * @param oldResource the old value of the relationship object
621 String id, String rev, ResourceResponse oldResource, JsonValue newValue) throws ResourceException {
624 if (isEqual(oldResource.getContent(), newValue)) {
626 return newResourceResponse(oldResource.getId(), oldResource.getRevision(), oldResource
620 updateIfChanged(final Context context, Request request, String id, String rev, ResourceResponse oldResource, JsonValue newValue) argument
[all...]

Completed in 30 milliseconds