Class BaseMessageBuilder<T,B extends BaseMessageBuilder<T,B>>
java.lang.Object
org.springframework.integration.support.AbstractIntegrationMessageBuilder<T>
org.springframework.integration.support.BaseMessageBuilder<T,B>
- Type Parameters:
T
- the payload type.B
- the target builder class type.
- Direct Known Subclasses:
MessageBuilder
public abstract class BaseMessageBuilder<T,B extends BaseMessageBuilder<T,B>>
extends AbstractIntegrationMessageBuilder<T>
The
AbstractIntegrationMessageBuilder
extension for the default logic to build message.
The MessageBuilder
is fully based on this class.
This abstract class can be used for creating custom Message
instances.
For that purpose its build()
method has to be overridden.
The custom Message
type could be used, for example, to hide sensitive information
from payload and headers when message is logged.
For this goal there would be enough to override GenericMessage.toString()
and filter out (or mask) those headers which container such sensitive information.- Since:
- 6.4
- Author:
- Artem Bilan
- See Also:
-
Constructor Summary
ModifierConstructorDescriptionprotected
BaseMessageBuilder
(T payload, Message<T> originalMessage) -
Method Summary
Modifier and TypeMethodDescriptionbuild()
Return an original message instance if it is not modified and does not have read-only headers.copyHeaders
(Map<String, ?> headersToCopy) Copy the name-value pairs from the provided Map.copyHeadersIfAbsent
(Map<String, ?> headersToCopy) Copy the name-value pairs from the provided Map.protected Object
<V> V
protected Object
protected Object
pushSequenceDetails
(Object correlationId, int sequenceNumber, int sequenceSize) readOnlyHeaders
(String... readOnlyHeaders) Specify a list of headers which should be considered as read only and prohibited from being populated in the message.removeHeader
(String headerName) Remove the value for the given header name.removeHeaders
(String... headerPatterns) Removes all headers provided via array of 'headerPatterns'.setCorrelationId
(Object correlationId) setErrorChannel
(MessageChannel errorChannel) setErrorChannelName
(String errorChannelName) setExpirationDate
(Long expirationDate) setExpirationDate
(Date expirationDate) Set the value for the given header name.setHeaderIfAbsent
(String headerName, Object headerValue) Set the value for the given header name only if the header name is not already associated with a value.setPriority
(Integer priority) setReplyChannel
(MessageChannel replyChannel) setReplyChannelName
(String replyChannelName) setSequenceNumber
(Integer sequenceNumber) setSequenceSize
(Integer sequenceSize) Methods inherited from class org.springframework.integration.support.AbstractIntegrationMessageBuilder
cloneMessageHistoryIfAny, filterAndCopyHeadersIfAbsent
-
Constructor Details
-
BaseMessageBuilder
-
-
Method Details
-
getPayload
- Specified by:
getPayload
in classAbstractIntegrationMessageBuilder<T>
-
getHeaders
- Specified by:
getHeaders
in classAbstractIntegrationMessageBuilder<T>
-
getHeader
- Specified by:
getHeader
in classAbstractIntegrationMessageBuilder<T>
-
setHeader
Set the value for the given header name. If the provided value isnull
, the header will be removed.- Specified by:
setHeader
in classAbstractIntegrationMessageBuilder<T>
- Parameters:
headerName
- The header name.headerValue
- The header value.- Returns:
- this MessageBuilder.
-
setHeaderIfAbsent
Set the value for the given header name only if the header name is not already associated with a value.- Specified by:
setHeaderIfAbsent
in classAbstractIntegrationMessageBuilder<T>
- Parameters:
headerName
- The header name.headerValue
- The header value.- Returns:
- this MessageBuilder.
-
removeHeaders
Removes all headers provided via array of 'headerPatterns'. As the name suggests the array may contain simple matching patterns for header names. Supported pattern styles are:xxx*
,*xxx
,*xxx*
andxxx*yyy
.- Specified by:
removeHeaders
in classAbstractIntegrationMessageBuilder<T>
- Parameters:
headerPatterns
- The header patterns.- Returns:
- this MessageBuilder.
-
removeHeader
Remove the value for the given header name.- Specified by:
removeHeader
in classAbstractIntegrationMessageBuilder<T>
- Parameters:
headerName
- The header name.- Returns:
- this MessageBuilder.
-
copyHeaders
Copy the name-value pairs from the provided Map. This operation will overwrite any existing values. UsecopyHeadersIfAbsent(Map)
to avoid overwriting values. Note that the 'id' and 'timestamp' header values will never be overwritten.- Specified by:
copyHeaders
in classAbstractIntegrationMessageBuilder<T>
- Parameters:
headersToCopy
- The headers to copy.- Returns:
- this MessageBuilder.
- See Also:
-
copyHeadersIfAbsent
Copy the name-value pairs from the provided Map. This operation will not override any existing values.- Specified by:
copyHeadersIfAbsent
in classAbstractIntegrationMessageBuilder<T>
- Parameters:
headersToCopy
- The headers to copy.- Returns:
- this MessageBuilder.
-
getSequenceDetails
- Specified by:
getSequenceDetails
in classAbstractIntegrationMessageBuilder<T>
-
getCorrelationId
- Specified by:
getCorrelationId
in classAbstractIntegrationMessageBuilder<T>
-
getSequenceNumber
- Specified by:
getSequenceNumber
in classAbstractIntegrationMessageBuilder<T>
-
getSequenceSize
- Specified by:
getSequenceSize
in classAbstractIntegrationMessageBuilder<T>
-
pushSequenceDetails
- Overrides:
pushSequenceDetails
in classAbstractIntegrationMessageBuilder<T>
-
popSequenceDetails
- Overrides:
popSequenceDetails
in classAbstractIntegrationMessageBuilder<T>
-
setExpirationDate
- Overrides:
setExpirationDate
in classAbstractIntegrationMessageBuilder<T>
-
setExpirationDate
- Overrides:
setExpirationDate
in classAbstractIntegrationMessageBuilder<T>
-
setCorrelationId
- Overrides:
setCorrelationId
in classAbstractIntegrationMessageBuilder<T>
-
setReplyChannel
- Overrides:
setReplyChannel
in classAbstractIntegrationMessageBuilder<T>
-
setReplyChannelName
- Overrides:
setReplyChannelName
in classAbstractIntegrationMessageBuilder<T>
-
setErrorChannel
- Overrides:
setErrorChannel
in classAbstractIntegrationMessageBuilder<T>
-
setErrorChannelName
- Overrides:
setErrorChannelName
in classAbstractIntegrationMessageBuilder<T>
-
setSequenceNumber
- Overrides:
setSequenceNumber
in classAbstractIntegrationMessageBuilder<T>
-
setSequenceSize
- Overrides:
setSequenceSize
in classAbstractIntegrationMessageBuilder<T>
-
setPriority
- Overrides:
setPriority
in classAbstractIntegrationMessageBuilder<T>
-
readOnlyHeaders
Specify 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 forreadOnly
mode. Defaults toMessageHeaders.ID
andMessageHeaders.TIMESTAMP
.- Returns:
- the current
BaseMessageBuilder
- See Also:
-
build
Return an original message instance if it is not modified and does not have read-only headers. If payload is an instance ofThrowable
, then anErrorMessage
is built. Otherwise, a new instance ofGenericMessage
is produced. This method can be overridden to provide any custom message implementations.- Specified by:
build
in classAbstractIntegrationMessageBuilder<T>
- Returns:
- the message instance
- See Also:
-