Class BulkRequest

  • 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 BulkRequest
    extends AbstractSchemasHolder
    author Pascal Knueppel
    created at: 25.10.2019 - 20:34

    represents a simple bulk request
    See Also:
    Serialized Form
    • Method Detail

      • getFailOnErrors

        public Optional<Integer> getFailOnErrors()
        An integer specifying the number of errors that the service provider will accept before the operation is terminated and an error response is returned. OPTIONAL in a request. Not valid in a response.
      • setFailOnErrors

        public void setFailOnErrors​(Integer failOnErrors)
        An integer specifying the number of errors that the service provider will accept before the operation is terminated and an error response is returned. OPTIONAL in a request. Not valid in a response.
      • getBulkRequestOperations

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

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