Class PatchOpRequest

  • All Implemented Interfaces:
    com.fasterxml.jackson.core.TreeNode, com.fasterxml.jackson.databind.JsonSerializable, com.fasterxml.jackson.databind.node.JsonNodeCreator, ScimNode, Serializable, Iterable<com.fasterxml.jackson.databind.JsonNode>

    public class PatchOpRequest
    extends AbstractSchemasHolder
    author Pascal Knueppel
    created at: 29.10.2019 - 08:31

    HTTP PATCH is an OPTIONAL server function that enables clients to update one or more attributes of a SCIM resource using a sequence of operations to "add", "remove", or "replace" values.Clients may discover service provider support for PATCH by querying the service provider configuration
    See Also:
    Serialized Form
    • Constructor Detail

      • PatchOpRequest

        public PatchOpRequest()
    • Method Detail

      • getOperations

        public List<PatchRequestOperation> getOperations()
        Defines operations within a bulk job. Each operation corresponds to a single HTTP request against a resource endpoint. REQUIRED.
      • setOperations

        public void setOperations​(List<PatchRequestOperation> operations)
        Defines operations within a bulk job. Each operation corresponds to a single HTTP request against a resource endpoint. REQUIRED.