Interface BatchFacade


public interface BatchFacade

Provides methods to process ODataRequests and BatchRequestParts in the context of a batch request.

Within a BatchProcessor implementation BatchRequestParts should be passed to handleBatchRequest(BatchRequestPart). Only if the BatchRequestPart represents a change set, the request will be delegated to BatchProcessor.processChangeSet(BatchFacade, java.util.List). Otherwise the requests will be directly executed.

The processor implementation could use handleODataRequest(ODataRequest) to process requests in a change set.