Example usage for org.springframework.integration.config.xml IntegrationNamespaceUtils configureHeaderMapper

List of usage examples for org.springframework.integration.config.xml IntegrationNamespaceUtils configureHeaderMapper

Introduction

In this page you can find the example usage for org.springframework.integration.config.xml IntegrationNamespaceUtils configureHeaderMapper.

Prototype

public static void configureHeaderMapper(Element element, BeanDefinitionBuilder rootBuilder,
        ParserContext parserContext, BeanDefinitionBuilder headerMapperBuilder,
        @Nullable String replyHeaderValueArg) 

Source Link

Document

Utility method to configure a HeaderMapper for Inbound and Outbound channel adapters/gateway.

Usage

From source file:org.springframework.integration.ws.config.WebServiceInboundGatewayParser.java

protected void doParse(Element element, ParserContext parserContext, BeanDefinitionBuilder builder) {
    super.doParse(element, parserContext, builder);
    IntegrationNamespaceUtils.configureHeaderMapper(element, builder, parserContext,
            DefaultSoapHeaderMapper.class, null);
}