Package org.springframework.integration.transformer

Examples of org.springframework.integration.transformer.HeaderEnricher


  }

  @Bean
  @Transformer(inputChannel = "headerEnricherChannel", outputChannel = "transformChannel")
  public HeaderEnricher headerEnricher() {
    return new HeaderEnricher(Collections.singletonMap(SimpMessageHeaderAccessor.SESSION_ID_HEADER,
        new ExpressionEvaluatingHeaderValueMessageProcessor<Object>("payload", null)));
  }
View Full Code Here

TOP

Related Classes of org.springframework.integration.transformer.HeaderEnricher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.