Class MultipartMessageProcessedResponse
- java.lang.Object
-
- org.eclipse.dataspaceconnector.ids.api.multipart.dispatcher.message.MultipartMessageProcessedResponse
-
- All Implemented Interfaces:
MultipartResponse<java.lang.String>
public class MultipartMessageProcessedResponse extends java.lang.Object implements MultipartResponse<java.lang.String>
Models a multipart response for an IDS MessageProcessedNotificationMessage. As the EDC communicates mostly asynchronously, this message is the expected response for request messages that no answer will be sent for.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMultipartMessageProcessedResponse.Builder
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @NotNull de.fraunhofer.iais.eis.MessagegetHeader()Returns the response header.@Nullable java.lang.StringgetPayload()Returns the response payload.
-
-
-
Method Detail
-
getHeader
@NotNull public @NotNull de.fraunhofer.iais.eis.Message getHeader()
Description copied from interface:MultipartResponseReturns the response header.- Specified by:
getHeaderin interfaceMultipartResponse<java.lang.String>- Returns:
- the response header.
-
getPayload
@Nullable public @Nullable java.lang.String getPayload()
Description copied from interface:MultipartResponseReturns the response payload.- Specified by:
getPayloadin interfaceMultipartResponse<java.lang.String>- Returns:
- the response payload.
-
-