Class BulkRequest

java.lang.Object
com.fasterxml.jackson.databind.JsonSerializable.Base
com.fasterxml.jackson.databind.JsonNode
com.fasterxml.jackson.databind.node.BaseJsonNode
com.fasterxml.jackson.databind.node.ContainerNode<com.fasterxml.jackson.databind.node.ObjectNode>
com.fasterxml.jackson.databind.node.ObjectNode
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:
  • Constructor Details

  • Method Details

    • 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.
    • builder

      public static BulkRequest.BulkRequestBuilder builder()