Example usage for org.springframework.integration.http.support DefaultHttpHeaderMapper outboundMapper

List of usage examples for org.springframework.integration.http.support DefaultHttpHeaderMapper outboundMapper

Introduction

In this page you can find the example usage for org.springframework.integration.http.support DefaultHttpHeaderMapper outboundMapper.

Prototype

public static DefaultHttpHeaderMapper outboundMapper() 

Source Link

Document

Factory method for creating a basic outbound mapper instance.

Usage

From source file:org.shaigor.rest.retro.security.gateway.config.integration.OutboundHeaderMapper.java

public OutboundHeaderMapper() {
    mapper = DefaultHttpHeaderMapper.outboundMapper();
    mapper.setExcludedOutboundStandardRequestHeaderNames(HTTP_REQUEST_HEADER_NAMES_OUTBOUND_EXCLUSIONS);
}