Class DefaultSoapHeaderMapper
java.lang.Object
org.springframework.integration.mapping.AbstractHeaderMapper<SoapMessage>
org.springframework.integration.ws.DefaultSoapHeaderMapper
- All Implemented Interfaces:
Aware
,BeanClassLoaderAware
,RequestReplyHeaderMapper<SoapMessage>
,SoapHeaderMapper
public class DefaultSoapHeaderMapper
extends AbstractHeaderMapper<SoapMessage>
implements SoapHeaderMapper
A
HeaderMapper
implementation for
mapping to and from a SoapHeader.
The AbstractHeaderMapper.setRequestHeaderNames(String[])
and AbstractHeaderMapper.setReplyHeaderNames(String[])
accept exact name Strings or simple patterns (e.g. "start*", "*end", or "*").
By default all inbound headers will be accepted, but any outbound header that should
be mapped must be configured explicitly. Note that the outbound mapping only writes
String header values into attributes on the SoapHeader. For anything more advanced,
one should implement the HeaderMapper interface directly.- Since:
- 2.0
- Author:
- Mark Fisher, Oleg Zhurakousky, Stephane Nicoll, Mauro Molinari, Artem Bilan, Gary Russell
-
Nested Class Summary
Nested classes/interfaces inherited from class org.springframework.integration.mapping.AbstractHeaderMapper
AbstractHeaderMapper.CompositeHeaderMatcher, AbstractHeaderMapper.ContentBasedHeaderMatcher, AbstractHeaderMapper.HeaderMatcher, AbstractHeaderMapper.PatternBasedHeaderMatcher, AbstractHeaderMapper.PrefixBasedMatcher, AbstractHeaderMapper.SinglePatternBasedHeaderMatcher
-
Field Summary
Fields inherited from class org.springframework.integration.mapping.AbstractHeaderMapper
logger, NON_STANDARD_HEADER_NAME_PATTERN, STANDARD_REPLY_HEADER_NAME_PATTERN, STANDARD_REQUEST_HEADER_NAME_PATTERN
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionextractStandardHeaders
(SoapMessage source) Extract the standard headers from the specified source.extractUserDefinedHeaders
(SoapMessage source) Extract the user-defined headers from the specified source.protected void
populateStandardHeaders
(Map<String, Object> headers, SoapMessage target) Populate the specified standard headers to the specified source.protected void
populateUserDefinedHeader
(String headerName, Object headerValue, SoapMessage target) Populate the specified user-defined headers to the specified source.Methods inherited from class org.springframework.integration.mapping.AbstractHeaderMapper
createDefaultHeaderMatcher, createHeaderMatcher, createTargetPropertyName, fromHeadersToReply, fromHeadersToRequest, getClassLoader, getHeaderIfAvailable, getTransientHeaderNames, populateStandardHeaders, setBeanClassLoader, setReplyHeaderNames, setRequestHeaderNames, toHeadersFromReply, toHeadersFromRequest
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.integration.mapping.RequestReplyHeaderMapper
fromHeadersToReply, fromHeadersToRequest, toHeadersFromReply, toHeadersFromRequest
-
Field Details
-
STANDARD_HEADER_NAMES
-
transformerHelper
-
-
Constructor Details
-
DefaultSoapHeaderMapper
public DefaultSoapHeaderMapper()
-
-
Method Details
-
extractStandardHeaders
Description copied from class:AbstractHeaderMapper
Extract the standard headers from the specified source.- Specified by:
extractStandardHeaders
in classAbstractHeaderMapper<SoapMessage>
- Parameters:
source
- the source object to extract standard headers.- Returns:
- the map of headers to be mapped.
-
extractUserDefinedHeaders
Description copied from class:AbstractHeaderMapper
Extract the user-defined headers from the specified source.- Specified by:
extractUserDefinedHeaders
in classAbstractHeaderMapper<SoapMessage>
- Parameters:
source
- the source object to extract user defined headers.- Returns:
- the map of headers to be mapped.
-
populateStandardHeaders
Description copied from class:AbstractHeaderMapper
Populate the specified standard headers to the specified source.- Specified by:
populateStandardHeaders
in classAbstractHeaderMapper<SoapMessage>
- Parameters:
headers
- the map of standard headers to be populated.target
- the target object to populate headers.
-
populateUserDefinedHeader
Description copied from class:AbstractHeaderMapper
Populate the specified user-defined headers to the specified source.- Specified by:
populateUserDefinedHeader
in classAbstractHeaderMapper<SoapMessage>
- Parameters:
headerName
- the user defined header name to be populated.headerValue
- the user defined header value to be populated.target
- the target object to populate headers.
-