Class IntegrationMessageHeaderAccessor
java.lang.Object
org.springframework.messaging.support.MessageHeaderAccessor
org.springframework.integration.IntegrationMessageHeaderAccessor
Adds standard SI Headers.
- Since:
- 4.0
- Author:
- Andy Wilkinson, Artem Bilan, Gary Russell
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final StringA callback to acknowledge message delivery.static final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final StringRaw source message.static final Stringstatic final Stringstatic final Stringstatic final Stringstatic final StringRaw source message.Fields inherited from class org.springframework.messaging.support.MessageHeaderAccessorDEFAULT_CHARSET
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionReturn the acknowledgment callback, if present.If the payload was created by aCloseablethat needs to remain open until the payload is consumed, the resource will be added to this header.When a message-driven endpoint supports retry implicitly, this header is incremented for each delivery attempt.<T> Treactor.util.context.ContextViewGet aContextViewheader if present.intint<T> TGet the source data header, if present.booleanisReadOnly(String headerName) voidsetReadOnlyHeaders(String... readOnlyHeaders) Specify a list of headers which should be considered as read only and prohibited from being populated in the message.toMap()protected voidverifyType(String headerName, Object headerValue) Methods inherited from class org.springframework.messaging.support.MessageHeaderAccessorcopyHeaders, copyHeadersIfAbsent, createAccessor, getAccessor, getAccessor, getAccessor, getContentType, getDetailedLogMessage, getDetailedPayloadLogMessage, getErrorChannel, getHeader, getId, getMessageHeaders, getMutableAccessor, getReplyChannel, getShortLogMessage, getShortPayloadLogMessage, getTimestamp, isModified, isMutable, isReadableContentType, removeHeader, removeHeaders, setContentType, setErrorChannel, setErrorChannelName, setHeader, setHeaderIfAbsent, setImmutable, setLeaveMutable, setModified, setReplyChannel, setReplyChannelName, toMessageHeaders, toString
- 
Field Details- 
CORRELATION_ID- See Also:
 
- 
EXPIRATION_DATE- See Also:
 
- 
PRIORITY- See Also:
 
- 
SEQUENCE_NUMBER- See Also:
 
- 
SEQUENCE_SIZE- See Also:
 
- 
SEQUENCE_DETAILS- See Also:
 
- 
ROUTING_SLIP- See Also:
 
- 
DUPLICATE_MESSAGE- See Also:
 
- 
CLOSEABLE_RESOURCE- See Also:
 
- 
DELIVERY_ATTEMPT- See Also:
 
- 
ACKNOWLEDGMENT_CALLBACKA callback to acknowledge message delivery. The type of the header value depends on the context in which the header is used. See the reference manual for more information.- See Also:
 
- 
SOURCE_DATA
- 
REACTOR_CONTEXT
 
- 
- 
Constructor Details- 
IntegrationMessageHeaderAccessor
 
- 
- 
Method Details- 
setReadOnlyHeadersSpecify a list of headers which should be considered as read only and prohibited from being populated in the message.- Parameters:
- readOnlyHeaders- the list of headers for- readOnlymode. Defaults to- MessageHeaders.IDand- MessageHeaders.TIMESTAMP.
- Since:
- 4.3.2
- See Also:
 
- 
getExpirationDate
- 
getCorrelationId
- 
getSequenceNumberpublic int getSequenceNumber()
- 
getSequenceSizepublic int getSequenceSize()
- 
getPriority
- 
getCloseableResourceIf the payload was created by aCloseablethat needs to remain open until the payload is consumed, the resource will be added to this header. After the payload is consumed theCloseableshould be closed. Usually this must occur in an endpoint close to the message origin in the flow, and in the same JVM.- Returns:
- the Closeable.
- Since:
- 4.3
 
- 
getAcknowledgmentCallbackReturn the acknowledgment callback, if present.- Returns:
- the callback.
- Since:
- 5.0.1
 
- 
getDeliveryAttemptWhen a message-driven endpoint supports retry implicitly, this header is incremented for each delivery attempt.- Returns:
- the delivery attempt.
- Since:
- 5.0.1
 
- 
getSourceDataGet the source data header, if present.- Type Parameters:
- T- the data type.
- Returns:
- the source header.
- Since:
- 5.1.6
 
- 
getReactorContextGet aContextViewheader if present.- Returns:
- the ContextViewheader if present.
- Since:
- 6.0.5
 
- 
getHeader
- 
verifyType- Overrides:
- verifyTypein class- MessageHeaderAccessor
 
- 
isReadOnly- Overrides:
- isReadOnlyin class- MessageHeaderAccessor
 
- 
toMap- Overrides:
- toMapin class- MessageHeaderAccessor
 
 
-