Interface OutboundMultiPartResponseParser
- All Known Implementing Classes:
DefaultOutboundBatchResponseParser
public interface OutboundMultiPartResponseParser
A service to parse the batch responses for the batch requests in outboundSync.
-
Method Summary
Modifier and TypeMethodDescriptionparseMultiPartResponse(org.springframework.http.ResponseEntity<String> responseEntity) Parse the batch response.
-
Method Details
-
parseMultiPartResponse
List<org.springframework.http.ResponseEntity<Map>> parseMultiPartResponse(org.springframework.http.ResponseEntity<String> responseEntity) Parse the batch response.- Parameters:
responseEntity- The response for the batch request sent out in outboundSync, could contain multiple batch parts which consist of multiple responses.- Returns:
- A list of responses which compose the batch response.
-