Example usage for org.springframework.integration IntegrationMessageHeaderAccessor SEQUENCE_DETAILS

List of usage examples for org.springframework.integration IntegrationMessageHeaderAccessor SEQUENCE_DETAILS

Introduction

In this page you can find the example usage for org.springframework.integration IntegrationMessageHeaderAccessor SEQUENCE_DETAILS.

Prototype

String SEQUENCE_DETAILS

To view the source code for org.springframework.integration IntegrationMessageHeaderAccessor SEQUENCE_DETAILS.

Click Source Link

Usage

From source file:org.springframework.integration.support.MessageBuilder.java

@SuppressWarnings("unchecked")
@Override/*from  w  w w  .ja v  a  2s .c  o m*/
protected List<List<Object>> getSequenceDetails() {
    return (List<List<Object>>) this.headerAccessor
            .getHeader(IntegrationMessageHeaderAccessor.SEQUENCE_DETAILS);
}