All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.integration.dsl.HeaderEnricherSpec Maven / Gradle / Ivy

There is a newer version: 6.3.3
Show newest version
/*
 * Copyright 2016-2019 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.integration.dsl;

import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.function.Consumer;
import java.util.function.Function;

import org.springframework.expression.Expression;
import org.springframework.integration.IntegrationMessageHeaderAccessor;
import org.springframework.integration.config.ConsumerEndpointFactoryBean;
import org.springframework.integration.context.IntegrationContextUtils;
import org.springframework.integration.expression.FunctionExpression;
import org.springframework.integration.handler.BeanNameMessageProcessor;
import org.springframework.integration.handler.ExpressionEvaluatingMessageProcessor;
import org.springframework.integration.handler.MessageProcessor;
import org.springframework.integration.support.MapBuilder;
import org.springframework.integration.support.StringStringMapBuilder;
import org.springframework.integration.transformer.HeaderEnricher;
import org.springframework.integration.transformer.MessageTransformingHandler;
import org.springframework.integration.transformer.support.AbstractHeaderValueMessageProcessor;
import org.springframework.integration.transformer.support.ExpressionEvaluatingHeaderValueMessageProcessor;
import org.springframework.integration.transformer.support.HeaderValueMessageProcessor;
import org.springframework.integration.transformer.support.RoutingSlipHeaderValueMessageProcessor;
import org.springframework.integration.transformer.support.StaticHeaderValueMessageProcessor;
import org.springframework.messaging.Message;
import org.springframework.messaging.MessageHeaders;
import org.springframework.util.Assert;
import org.springframework.util.StringUtils;

import reactor.util.function.Tuple2;

/**
 * An {@link IntegrationComponentSpec} for a {@link HeaderEnricher}.
 *
 * @author Artem Bilan
 * @author Gary Russell
 *
 * @since 5.0
 */
public class HeaderEnricherSpec extends ConsumerEndpointSpec {

	private static final String HEADERS_MUST_NOT_BE_NULL = "'headers' must not be null";

	private final Map> headerToAdd = new HashMap<>();

	private final HeaderEnricher headerEnricher = new HeaderEnricher(this.headerToAdd);

	HeaderEnricherSpec() {
		super(null);
		this.handler = new MessageTransformingHandler(this.headerEnricher);
	}

	/**
	 * Determine the default action to take when setting individual header specifications
	 * without an explicit 'overwrite' argument.
	 * @param defaultOverwrite the defaultOverwrite.
	 * @return the header enricher spec.
	 * @see HeaderEnricher#setDefaultOverwrite(boolean)
	 */
	public HeaderEnricherSpec defaultOverwrite(boolean defaultOverwrite) {
		this.headerEnricher.setDefaultOverwrite(defaultOverwrite);
		return _this();
	}

	/**
	 * @param shouldSkipNulls the shouldSkipNulls.
	 * @return the header enricher spec.
	 * @see HeaderEnricher#setShouldSkipNulls(boolean)
	 */
	public HeaderEnricherSpec shouldSkipNulls(boolean shouldSkipNulls) {
		this.headerEnricher.setShouldSkipNulls(shouldSkipNulls);
		return _this();
	}

	/**
	 * Configure an optional custom {@link MessageProcessor} for the enricher. The
	 * processor must return a {@link Map} of header names and values. They will be added
	 * to the inbound message headers before evaluating the individual configured header
	 * specifications.
	 * @param messageProcessor the messageProcessor.
	 * @return the header enricher spec.
	 * @see HeaderEnricher#setMessageProcessor(MessageProcessor)
	 */
	public HeaderEnricherSpec messageProcessor(MessageProcessor messageProcessor) {
		this.headerEnricher.setMessageProcessor(messageProcessor);
		return _this();
	}

	/**
	 * Configure an {@link ExpressionEvaluatingMessageProcessor} that evaluates to a
	 * {@link Map} of additional headers. They will be added to the inbound message
	 * headers before evaluating the individual configured header specifications.
	 * @param expression the expression.
	 * @return the header enricher spec.
	 * @see #messageProcessor(MessageProcessor)
	 */
	public HeaderEnricherSpec messageProcessor(String expression) {
		return messageProcessor(new ExpressionEvaluatingMessageProcessor<>(expression));
	}

	/**
	 * Configure an
	 * {@link org.springframework.integration.handler.MethodInvokingMessageProcessor} that
	 * invokes the method on the bean - the method must return a {@link Map} of headers.
	 * They will be added to the inbound message headers before evaluating the individual
	 * configured header specifications.
	 * @param beanName The bean name.
	 * @param methodName The method name.
	 * @return the header enricher spec.
	 * @see #messageProcessor(MessageProcessor)
	 */
	public HeaderEnricherSpec messageProcessor(String beanName, String methodName) {
		return messageProcessor(new BeanNameMessageProcessor<>(beanName, methodName));
	}

	/**
	 * Add header specifications from the {@link MapBuilder}; if a map value is an
	 * {@link Expression}, it will be evaluated at run time when the message headers are
	 * enriched. Otherwise the value is simply added to the headers. Headers derived from
	 * the map will not overwrite existing headers, unless
	 * {@link #defaultOverwrite(boolean)} is true.
	 * @param headers the header map builder.
	 * @return the header enricher spec.
	 */
	public HeaderEnricherSpec headers(MapBuilder headers) {
		return headers(headers, null);
	}

	/**
	 * Add header specifications from the {@link MapBuilder}; if a map value is an
	 * {@link Expression}, it will be evaluated at run time when the message headers are
	 * enriched. Otherwise the value is simply added to the headers.
	 * @param headers the header map builder.
	 * @param overwrite true to overwrite existing headers.
	 * @return the header enricher spec.
	 */
	public HeaderEnricherSpec headers(MapBuilder headers, Boolean overwrite) {
		Assert.notNull(headers, HEADERS_MUST_NOT_BE_NULL);
		return headers(headers.get(), overwrite);
	}

	/**
	 * Add header specifications from the {@link Map}; if a map value is an
	 * {@link Expression}, it will be evaluated at run time when the message headers are
	 * enriched. Otherwise the value is simply added to the headers. Headers derived from
	 * the map will not overwrite existing headers, unless
	 * {@link #defaultOverwrite(boolean)} is true.
	 * @param headers The header builder.
	 * @return the header enricher spec.
	 */
	public HeaderEnricherSpec headers(Map headers) {
		return headers(headers, null);
	}

	/**
	 * Add header specifications from the {@link Map}; if a map value is an
	 * {@link Expression}, it will be evaluated at run time when the message headers are
	 * enriched. Otherwise the value is simply added to the headers.
	 * @param headers The header builder.
	 * @param overwrite true to overwrite existing headers.
	 * @return the header enricher spec.
	 */
	public HeaderEnricherSpec headers(Map headers, Boolean overwrite) {
		Assert.notNull(headers, HEADERS_MUST_NOT_BE_NULL);
		for (Entry entry : headers.entrySet()) {
			String name = entry.getKey();
			Object value = entry.getValue();
			if (value instanceof Expression) {
				AbstractHeaderValueMessageProcessor processor =
						new ExpressionEvaluatingHeaderValueMessageProcessor<>((Expression) value, null);
				processor.setOverwrite(overwrite);
				header(name, processor);
			}
			else {
				header(name, value, overwrite);
			}
		}
		return this;
	}

	/**
	 * Add header specifications from the {@link MapBuilder}; the {@link Map} values must
	 * be String representations of SpEL expressions that will be evaluated at run time
	 * when the message headers are enriched. Headers derived from the map will not
	 * overwrite existing headers, unless {@link #defaultOverwrite(boolean)} is true.
	 * @param headers the header map builder.
	 * @return the header enricher spec.
	 */
	public HeaderEnricherSpec headerExpressions(MapBuilder headers) {
		return headerExpressions(headers, null);
	}

	/**
	 * Add header specifications from the {@link MapBuilder}; the {@link Map} values must
	 * be String representations of SpEL expressions that will be evaluated at run time
	 * when the message headers are enriched.
	 * @param headers the header map builder.
	 * @param overwrite true to overwrite existing headers.
	 * @return the header enricher spec.
	 */
	public HeaderEnricherSpec headerExpressions(MapBuilder headers, Boolean overwrite) {
		Assert.notNull(headers, HEADERS_MUST_NOT_BE_NULL);
		return headerExpressions(headers.get(), overwrite);
	}

	/**
	 * Add header specifications via the consumer callback, which receives a
	 * {@link StringStringMapBuilder}; the {@link Map} values must be String
	 * representations of SpEL expressions that will be evaluated at run time when the
	 * message headers are enriched. Headers derived from the map will not
	 * overwrite existing headers, unless {@link #defaultOverwrite(boolean)} is true.
	 * Usually used with a JDK8 lambda:
	 * 
	 * {@code
	 * .enrichHeaders(s -> s.headerExpressions(c -> c
	 * 			.put(MailHeaders.SUBJECT, "payload.subject")
	 * 			.put(MailHeaders.FROM,    "payload.from[0].toString()")))
	 * }
	 * 
* @param configurer the configurer. * @return the header enricher spec. */ public HeaderEnricherSpec headerExpressions(Consumer configurer) { return headerExpressions(configurer, null); } /** * Add header specifications via the consumer callback, which receives a * {@link StringStringMapBuilder}; the {@link Map} values must be String * representations of SpEL expressions that will be evaluated at run time when the * message headers are enriched. Usually used with a JDK8 lambda: *
	 * {@code
	 * .enrichHeaders(s -> s.headerExpressions(c -> c
	 * 			.put(MailHeaders.SUBJECT, "payload.subject")
	 * 			.put(MailHeaders.FROM,    "payload.from[0].toString()"), true))
	 * }
	 * 
* @param configurer the configurer. * @param overwrite true to overwrite existing headers. * @return the header enricher spec. */ public HeaderEnricherSpec headerExpressions(Consumer configurer, Boolean overwrite) { Assert.notNull(configurer, "'configurer' must not be null"); StringStringMapBuilder builder = new StringStringMapBuilder(); configurer.accept(builder); return headerExpressions(builder.get(), overwrite); } /** * Add header specifications; the {@link Map} values must be String representations * of SpEL expressions that will be evaluated at run time when the message headers are * enriched. Headers derived from the map will not overwrite existing headers, * unless {@link #defaultOverwrite(boolean)} is true. * @param headers the headers. * @return the header enricher spec. */ public HeaderEnricherSpec headerExpressions(Map headers) { return headerExpressions(headers, null); } /** * Add header specifications; the {@link Map} values must be String representations of * SpEL expressions that will be evaluated at run time when the message headers are * enriched. * @param headers the headers. * @param overwrite true to overwrite existing headers. * @return the header enricher spec. */ public HeaderEnricherSpec headerExpressions(Map headers, Boolean overwrite) { Assert.notNull(headers, HEADERS_MUST_NOT_BE_NULL); for (Entry entry : headers.entrySet()) { AbstractHeaderValueMessageProcessor processor = new ExpressionEvaluatingHeaderValueMessageProcessor<>(entry.getValue(), null); processor.setOverwrite(overwrite); header(entry.getKey(), processor); } return this; } /** * Add a {@link IntegrationMessageHeaderAccessor#CORRELATION_ID} header. * If the header exists, it will not be overwritten unless {@link #defaultOverwrite(boolean)} is true. * @param correlationId the header value for {@link IntegrationMessageHeaderAccessor#CORRELATION_ID}. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec correlationId(Object correlationId) { return correlationId(correlationId, null); } /** * Add a {@link IntegrationMessageHeaderAccessor#CORRELATION_ID} header. * @param correlationId the header value for {@link IntegrationMessageHeaderAccessor#CORRELATION_ID}. * @param overwrite true to overwrite an existing header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec correlationId(Object correlationId, Boolean overwrite) { return header(IntegrationMessageHeaderAccessor.CORRELATION_ID, correlationId, overwrite); } /** * Add a {@link IntegrationMessageHeaderAccessor#CORRELATION_ID} header * where the value is a SpEL {@link Expression} evaluation result. * If the header exists, it will not be overwritten * unless {@link #defaultOverwrite(boolean)} is true. * @param correlationIdExpression the expression for * {@link IntegrationMessageHeaderAccessor#CORRELATION_ID} header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec correlationIdExpression(String correlationIdExpression) { return correlationIdExpression(correlationIdExpression, null); } /** * Add a {@link IntegrationMessageHeaderAccessor#CORRELATION_ID} header * where the value is a SpEL {@link Expression} evaluation result. * @param correlationIdExpression the expression for * {@link IntegrationMessageHeaderAccessor#CORRELATION_ID} header. * @param overwrite true to overwrite an existing header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec correlationIdExpression(String correlationIdExpression, Boolean overwrite) { return headerExpression(IntegrationMessageHeaderAccessor.CORRELATION_ID, correlationIdExpression, overwrite); } /** * Add a {@link IntegrationMessageHeaderAccessor#CORRELATION_ID} header where the * value is obtained by invoking the {@link Function} callback. * If the header exists, it will not be overwritten * unless {@link #defaultOverwrite(boolean)} is true. * @param correlationIdFunction the function. * @param

the payload type. * @return the header enricher spec. * @see FunctionExpression * @since 5.2 */ public

HeaderEnricherSpec correlationIdFunction(Function, Object> correlationIdFunction) { return correlationIdFunction(correlationIdFunction, null); } /** * Add a {@link IntegrationMessageHeaderAccessor#CORRELATION_ID} header where the * value is obtained by invoking the {@link Function} callback. * @param correlationIdFunction the function. * @param overwrite true to overwrite an existing header. * @param

the payload type. * @return the header enricher spec. * @see FunctionExpression * @since 5.2 */ public

HeaderEnricherSpec correlationIdFunction(Function, ?> correlationIdFunction, Boolean overwrite) { return headerFunction(IntegrationMessageHeaderAccessor.CORRELATION_ID, correlationIdFunction, overwrite); } /** * Add a {@link MessageHeaders#REPLY_CHANNEL} header: bean name or instance. * If the header exists, it will not be overwritten unless {@link #defaultOverwrite(boolean)} is true. * @param replyChannel the header value for {@link MessageHeaders#REPLY_CHANNEL}. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec replyChannel(Object replyChannel) { return replyChannel(replyChannel, null); } /** * Add a {@link MessageHeaders#REPLY_CHANNEL} header: bean name or instance. * @param replyChannel the header value for {@link MessageHeaders#REPLY_CHANNEL}. * @param overwrite true to overwrite an existing header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec replyChannel(Object replyChannel, Boolean overwrite) { return header(MessageHeaders.REPLY_CHANNEL, replyChannel, overwrite); } /** * Add a {@link MessageHeaders#REPLY_CHANNEL} header * where the value is a SpEL {@link Expression} evaluation result. * If the header exists, it will not be overwritten * unless {@link #defaultOverwrite(boolean)} is true. * @param replyChannelExpression the expression for {@link MessageHeaders#REPLY_CHANNEL} header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec replyChannelExpression(String replyChannelExpression) { return replyChannelExpression(replyChannelExpression, null); } /** * Add a {@link MessageHeaders#REPLY_CHANNEL} header * where the value is a SpEL {@link Expression} evaluation result. * @param replyChannelExpression the expression for {@link MessageHeaders#REPLY_CHANNEL} header. * @param overwrite true to overwrite an existing header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec replyChannelExpression(String replyChannelExpression, Boolean overwrite) { return headerExpression(MessageHeaders.REPLY_CHANNEL, replyChannelExpression, overwrite); } /** * Add a {@link MessageHeaders#REPLY_CHANNEL} header where the * value is obtained by invoking the {@link Function} callback. * If the header exists, it will not be overwritten * unless {@link #defaultOverwrite(boolean)} is true. * @param replyChannelFunction the function. * @param

the payload type. * @return the header enricher spec. * @see FunctionExpression * @since 5.2 */ public

HeaderEnricherSpec replyChannelFunction(Function, Object> replyChannelFunction) { return replyChannelFunction(replyChannelFunction, null); } /** * Add a {@link MessageHeaders#REPLY_CHANNEL} header where the * value is obtained by invoking the {@link Function} callback. * @param replyChannelFunction the function. * @param overwrite true to overwrite an existing header. * @param

the payload type. * @return the header enricher spec. * @see FunctionExpression * @since 5.2 */ public

HeaderEnricherSpec replyChannelFunction(Function, ?> replyChannelFunction, Boolean overwrite) { return headerFunction(MessageHeaders.REPLY_CHANNEL, replyChannelFunction, overwrite); } /** * Add a {@link MessageHeaders#ERROR_CHANNEL} header: bean name or instance. * If the header exists, it will not be overwritten unless {@link #defaultOverwrite(boolean)} is true. * @param errorChannel the header value for {@link MessageHeaders#ERROR_CHANNEL}. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec errorChannel(Object errorChannel) { return errorChannel(errorChannel, null); } /** * Add a {@link MessageHeaders#ERROR_CHANNEL} header: bean name or instance. * @param errorChannel the header value for {@link MessageHeaders#ERROR_CHANNEL}. * @param overwrite true to overwrite an existing header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec errorChannel(Object errorChannel, Boolean overwrite) { return header(MessageHeaders.ERROR_CHANNEL, errorChannel, overwrite); } /** * Add a {@link MessageHeaders#ERROR_CHANNEL} header * where the value is a SpEL {@link Expression} evaluation result. * If the header exists, it will not be overwritten * unless {@link #defaultOverwrite(boolean)} is true. * @param errorChannelExpression the expression for {@link MessageHeaders#ERROR_CHANNEL} header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec errorChannelExpression(String errorChannelExpression) { return errorChannelExpression(errorChannelExpression, null); } /** * Add a {@link MessageHeaders#ERROR_CHANNEL} header * where the value is a SpEL {@link Expression} evaluation result. * @param errorChannelExpression the expression for {@link MessageHeaders#ERROR_CHANNEL} header. * @param overwrite true to overwrite an existing header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec errorChannelExpression(String errorChannelExpression, Boolean overwrite) { return headerExpression(MessageHeaders.ERROR_CHANNEL, errorChannelExpression, overwrite); } /** * Add a {@link MessageHeaders#ERROR_CHANNEL} header where the * value is obtained by invoking the {@link Function} callback. * If the header exists, it will not be overwritten * unless {@link #defaultOverwrite(boolean)} is true. * @param errorChannelFunction the function. * @param

the payload type. * @return the header enricher spec. * @see FunctionExpression * @since 5.2 */ public

HeaderEnricherSpec errorChannelFunction(Function, Object> errorChannelFunction) { return errorChannelFunction(errorChannelFunction, null); } /** * Add a {@link MessageHeaders#ERROR_CHANNEL} header where the * value is obtained by invoking the {@link Function} callback. * @param errorChannelFunction the function. * @param overwrite true to overwrite an existing header. * @param

the payload type. * @return the header enricher spec. * @see FunctionExpression * @since 5.2 */ public

HeaderEnricherSpec errorChannelFunction(Function, ?> errorChannelFunction, Boolean overwrite) { return headerFunction(MessageHeaders.ERROR_CHANNEL, errorChannelFunction, overwrite); } /** * Add a {@link IntegrationMessageHeaderAccessor#PRIORITY} header. * If the header exists, it will not be overwritten unless {@link #defaultOverwrite(boolean)} is true. * @param priority the header value for {@link IntegrationMessageHeaderAccessor#PRIORITY}. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec priority(Number priority) { return priority(priority, null); } /** * Add a {@link IntegrationMessageHeaderAccessor#PRIORITY} header. * @param priority the header value for {@link IntegrationMessageHeaderAccessor#PRIORITY}. * @param overwrite true to overwrite an existing header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec priority(Number priority, Boolean overwrite) { return header(IntegrationMessageHeaderAccessor.PRIORITY, priority, overwrite); } /** * Add a {@link IntegrationMessageHeaderAccessor#PRIORITY} header * where the value is a SpEL {@link Expression} evaluation result. * If the header exists, it will not be overwritten * unless {@link #defaultOverwrite(boolean)} is true. * @param priorityExpression the expression for {@link IntegrationMessageHeaderAccessor#PRIORITY} header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec priorityExpression(String priorityExpression) { return priorityExpression(priorityExpression, null); } /** * Add a {@link IntegrationMessageHeaderAccessor#PRIORITY} header * where the value is a SpEL {@link Expression} evaluation result. * @param priorityExpression the expression for {@link IntegrationMessageHeaderAccessor#PRIORITY} header. * @param overwrite true to overwrite an existing header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec priorityExpression(String priorityExpression, Boolean overwrite) { return headerExpression(IntegrationMessageHeaderAccessor.PRIORITY, priorityExpression, overwrite); } /** * Add a {@link IntegrationMessageHeaderAccessor#PRIORITY} header where the * value is obtained by invoking the {@link Function} callback. * If the header exists, it will not be overwritten * unless {@link #defaultOverwrite(boolean)} is true. * @param priorityFunction the function. * @param

the payload type. * @return the header enricher spec. * @see FunctionExpression * @since 5.2 */ public

HeaderEnricherSpec priorityFunction(Function, Object> priorityFunction) { return priorityFunction(priorityFunction, null); } /** * Add a {@link IntegrationMessageHeaderAccessor#PRIORITY} header where the * value is obtained by invoking the {@link Function} callback. * @param priorityFunction the function. * @param overwrite true to overwrite an existing header. * @param

the payload type. * @return the header enricher spec. * @see FunctionExpression * @since 5.2 */ public

HeaderEnricherSpec priorityFunction(Function, ?> priorityFunction, Boolean overwrite) { return headerFunction(IntegrationMessageHeaderAccessor.PRIORITY, priorityFunction, overwrite); } /** * Add a {@link IntegrationMessageHeaderAccessor#EXPIRATION_DATE} header: {@link java.util.Date} or {@code long}. * If the header exists, it will not be overwritten unless {@link #defaultOverwrite(boolean)} is true. * @param expirationDate the header value for {@link IntegrationMessageHeaderAccessor#EXPIRATION_DATE}. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec expirationDate(Object expirationDate) { return expirationDate(expirationDate, null); } /** * Add a {@link IntegrationMessageHeaderAccessor#EXPIRATION_DATE} header. * @param expirationDate the header value for {@link IntegrationMessageHeaderAccessor#EXPIRATION_DATE}. * @param overwrite true to overwrite an existing header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec expirationDate(Object expirationDate, Boolean overwrite) { return header(IntegrationMessageHeaderAccessor.EXPIRATION_DATE, expirationDate, overwrite); } /** * Add a {@link IntegrationMessageHeaderAccessor#EXPIRATION_DATE} header * where the value is a SpEL {@link Expression} evaluation result. * If the header exists, it will not be overwritten * unless {@link #defaultOverwrite(boolean)} is true. * @param expirationDateExpression the expression for {@link IntegrationMessageHeaderAccessor#EXPIRATION_DATE} * header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec expirationDateExpression(String expirationDateExpression) { return expirationDateExpression(expirationDateExpression, null); } /** * Add a {@link IntegrationMessageHeaderAccessor#EXPIRATION_DATE} header * where the value is a SpEL {@link Expression} evaluation result. * @param expirationDateExpression the expression for * {@link IntegrationMessageHeaderAccessor#EXPIRATION_DATE} header. * @param overwrite true to overwrite an existing header. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec expirationDateExpression(String expirationDateExpression, Boolean overwrite) { return headerExpression(IntegrationMessageHeaderAccessor.EXPIRATION_DATE, expirationDateExpression, overwrite); } /** * Add a {@link IntegrationMessageHeaderAccessor#EXPIRATION_DATE} header where the * value is obtained by invoking the {@link Function} callback. * If the header exists, it will not be overwritten * unless {@link #defaultOverwrite(boolean)} is true. * @param expirationDateFunction the function. * @param

the payload type. * @return the header enricher spec. * @see FunctionExpression * @since 5.2 */ public

HeaderEnricherSpec expirationDateFunction(Function, Object> expirationDateFunction) { return expirationDateFunction(expirationDateFunction, null); } /** * Add a {@link IntegrationMessageHeaderAccessor#EXPIRATION_DATE} header where the * value is obtained by invoking the {@link Function} callback. * @param expirationDateFunction the function. * @param overwrite true to overwrite an existing header. * @param

the payload type. * @return the header enricher spec. * @see FunctionExpression * @since 5.2 */ public

HeaderEnricherSpec expirationDateFunction(Function, ?> expirationDateFunction, Boolean overwrite) { return headerFunction(IntegrationMessageHeaderAccessor.EXPIRATION_DATE, expirationDateFunction, overwrite); } /** * Add a {@link IntegrationMessageHeaderAccessor#ROUTING_SLIP} header. * The possible values are: *

    *
  • A {@link org.springframework.messaging.MessageChannel} instance. *
  • A {@link org.springframework.messaging.MessageChannel} bean name. *
  • A {@link org.springframework.integration.routingslip.RoutingSlipRouteStrategy} instance. *
  • A {@link org.springframework.integration.routingslip.RoutingSlipRouteStrategy} bean name. *
  • A {@code String} for SpEL expression which has to be evaluated to the * {@link org.springframework.messaging.MessageChannel} or * {@link org.springframework.integration.routingslip.RoutingSlipRouteStrategy}. *
* If the header exists, it will not be overwritten unless {@link #defaultOverwrite(boolean)} is true. * @param routingSlipPath the header value for {@link IntegrationMessageHeaderAccessor#ROUTING_SLIP}. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec routingSlip(Object... routingSlipPath) { return routingSlip(null, routingSlipPath); } /** * Add a {@link IntegrationMessageHeaderAccessor#ROUTING_SLIP} header. * The possible values are: *
    *
  • A {@link org.springframework.messaging.MessageChannel} instance. *
  • A {@link org.springframework.messaging.MessageChannel} bean name. *
  • A {@link org.springframework.integration.routingslip.RoutingSlipRouteStrategy} instance. *
  • A {@link org.springframework.integration.routingslip.RoutingSlipRouteStrategy} bean name. *
  • A {@code String} for SpEL expression which has to be evaluated to the * {@link org.springframework.messaging.MessageChannel} or * {@link org.springframework.integration.routingslip.RoutingSlipRouteStrategy}. *
* @param overwrite true to overwrite an existing header. * @param routingSlipPath the header value for {@link IntegrationMessageHeaderAccessor#ROUTING_SLIP}. * @return the header enricher spec. * @since 5.2 */ public HeaderEnricherSpec routingSlip(Boolean overwrite, Object... routingSlipPath) { RoutingSlipHeaderValueMessageProcessor routingSlipHeaderValueMessageProcessor = new RoutingSlipHeaderValueMessageProcessor(routingSlipPath); routingSlipHeaderValueMessageProcessor.setOverwrite(overwrite); return header(IntegrationMessageHeaderAccessor.ROUTING_SLIP, routingSlipHeaderValueMessageProcessor); } /** * Add a single header specification. If the header exists, it will not be * overwritten unless {@link #defaultOverwrite(boolean)} is true. * @param name the header name. * @param value the header value (not an {@link Expression}). * @param the value type. * @return the header enricher spec. */ public HeaderEnricherSpec header(String name, V value) { return header(name, value, null); } /** * Add a single header specification. * @param name the header name. * @param value the header value (not an {@link Expression}). * @param overwrite true to overwrite an existing header. * @param the value type. * @return the header enricher spec. */ public HeaderEnricherSpec header(String name, V value, Boolean overwrite) { AbstractHeaderValueMessageProcessor headerValueMessageProcessor = new StaticHeaderValueMessageProcessor<>(value); headerValueMessageProcessor.setOverwrite(overwrite); return header(name, headerValueMessageProcessor); } /** * Add a single header specification where the value is a String representation of a * SpEL {@link Expression}. If the header exists, it will not be overwritten * unless {@link #defaultOverwrite(boolean)} is true. * @param name the header name. * @param expression the expression. * @return the header enricher spec. */ public HeaderEnricherSpec headerExpression(String name, String expression) { return headerExpression(name, expression, null); } /** * Add a single header specification where the value is a String representation of a * SpEL {@link Expression}. * @param name the header name. * @param expression the expression. * @param overwrite true to overwrite an existing header. * @return the header enricher spec. */ public HeaderEnricherSpec headerExpression(String name, String expression, Boolean overwrite) { Assert.hasText(expression, "'expression' must not be empty"); return headerExpression(name, PARSER.parseExpression(expression), overwrite); } /** * Add a single header specification where the value is obtained by invoking the * {@link Function} callback. If the header exists, it will not be overwritten * unless {@link #defaultOverwrite(boolean)} is true. * @param name the header name. * @param function the function. * @param

the payload type. * @return the header enricher spec. * @see FunctionExpression */ public

HeaderEnricherSpec headerFunction(String name, Function, ?> function) { return headerFunction(name, function, null); } /** * Add a single header specification where the value is obtained by invoking the * {@link Function} callback. * @param name the header name. * @param function the function. * @param overwrite true to overwrite an existing header. * @param

the payload type. * @return the header enricher spec. * @see FunctionExpression */ public

HeaderEnricherSpec headerFunction(String name, Function, ?> function, Boolean overwrite) { return headerExpression(name, new FunctionExpression<>(function), overwrite); } private HeaderEnricherSpec headerExpression(String name, Expression expression, Boolean overwrite) { AbstractHeaderValueMessageProcessor headerValueMessageProcessor = new ExpressionEvaluatingHeaderValueMessageProcessor<>(expression, null); headerValueMessageProcessor.setOverwrite(overwrite); return header(name, headerValueMessageProcessor); } /** * Add a single header specification where the value is obtained by calling the * {@link HeaderValueMessageProcessor}. * @param headerName the header name. * @param headerValueMessageProcessor the message processor. * @param the value type. * @return the header enricher spec. */ public HeaderEnricherSpec header(String headerName, HeaderValueMessageProcessor headerValueMessageProcessor) { Assert.hasText(headerName, "'headerName' must not be empty"); this.headerToAdd.put(headerName, headerValueMessageProcessor); return _this(); } /** * Add header specifications to automatically convert header channels (reply, error * channels) to Strings and store them in a header channel registry. Allows * persistence and serialization of messages without losing these important framework * headers. * @return the header enricher spec. * @see org.springframework.integration.support.channel.HeaderChannelRegistry */ public HeaderEnricherSpec headerChannelsToString() { return headerChannelsToString(null); } /** * Add header specifications to automatically convert header channels (reply, error * channels) to Strings and store them in a header channel registry. Allows * persistence and serialization of messages without losing these important framework * headers. * @param timeToLiveExpression the minimum time that the mapping will remain in the registry. * @return the header enricher spec. * @see org.springframework.integration.support.channel.HeaderChannelRegistry */ public HeaderEnricherSpec headerChannelsToString(String timeToLiveExpression) { return headerExpression("replyChannel", "@" + IntegrationContextUtils.INTEGRATION_HEADER_CHANNEL_REGISTRY_BEAN_NAME + ".channelToChannelName(headers.replyChannel" + (StringUtils.hasText(timeToLiveExpression) ? ", " + timeToLiveExpression : "") + ")", true) .headerExpression("errorChannel", "@" + IntegrationContextUtils.INTEGRATION_HEADER_CHANNEL_REGISTRY_BEAN_NAME + ".channelToChannelName(headers.errorChannel" + (StringUtils.hasText(timeToLiveExpression) ? ", " + timeToLiveExpression : "") + ")", true); } @Override protected Tuple2 doGet() { this.componentsToRegister.put(this.headerEnricher, null); return super.doGet(); } }