List of usage examples for org.springframework.integration.mapping HeaderMapper interface-usage
From source file org.shaigor.rest.retro.security.gateway.config.integration.OutboundHeaderMapper.java
/** * @author Irena Shaigorodsky * Removes host header that is no longer accurate after the redirect */ @Component("outboundHeaderMapper") public class OutboundHeaderMapper implements HeaderMapper<HttpHeaders> {
From source file org.springframework.cloud.iot.integration.coap.support.DefaultCoapHeaderMapper.java
public class DefaultCoapHeaderMapper implements HeaderMapper<CoapHeaders>, BeanFactoryAware, InitializingBean { private static final Log logger = LogFactory.getLog(DefaultCoapHeaderMapper.class); private volatile BeanFactory beanFactory; private volatile ConversionService conversionService; private volatile String[] outboundHeaderNames = new String[0];
From source file org.springframework.integration.stomp.support.StompHeaderMapper.java
/**
* The STOMP {@link HeaderMapper} implementation.
*
* @author Artem Bilan
* @since 4.2
* @see StompHeaders
From source file org.springframework.integration.http.support.DefaultHttpHeaderMapper.java
/**
* Default {@link HeaderMapper} implementation for HTTP.
*
* @author Mark Fisher
* @author Jeremy Grelle
* @author Oleg Zhurakousky
From source file org.springframework.cloud.stream.app.http.source.DefaultMixedCaseContentTypeHttpHeaderMapper.java
/**
* Default {@link HeaderMapper} implementation for HTTP.
*
* Copy of SI 4.3.9 mapper with contentType case-insensitive test - when
* ServletServerHttpRequest.getHeaders() encounters a content-type with encoding, it is left
* as lower case; when it has no encoding, it becomes Content-Type.