diff --git a/spring-integration-core/src/main/resources/META-INF/spring.schemas b/spring-integration-core/src/main/resources/META-INF/spring.schemas
index e8ae15f046..aee88e2097 100644
--- a/spring-integration-core/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-core/src/main/resources/META-INF/spring.schemas
@@ -1,5 +1,6 @@
http\://www.springframework.org/schema/integration/spring-integration-1.0.xsd=org/springframework/integration/config/xml/spring-integration-1.0.xsd
http\://www.springframework.org/schema/integration/spring-integration-2.0.xsd=org/springframework/integration/config/xml/spring-integration-2.0.xsd
-http\://www.springframework.org/schema/integration/spring-integration.xsd=org/springframework/integration/config/xml/spring-integration-2.0.xsd
+http\://www.springframework.org/schema/integration/spring-integration-2.1.xsd=org/springframework/integration/config/xml/spring-integration-2.1.xsd
+http\://www.springframework.org/schema/integration/spring-integration.xsd=org/springframework/integration/config/xml/spring-integration-2.1.xsd
http\://www.springframework.org/schema/integration/scripting/spring-integration-scripting-core.xsd=org/springframework/integration/scripting/config/xml/spring-integration-scripting-core-2.1.xsd
http\://www.springframework.org/schema/integration/scripting/spring-integration-scripting-core-2.1.xsd=org/springframework/integration/scripting/config/xml/spring-integration-scripting-core-2.1.xsd
diff --git a/spring-integration-core/src/main/resources/org/springframework/integration/config/xml/spring-integration-2.1.xsd b/spring-integration-core/src/main/resources/org/springframework/integration/config/xml/spring-integration-2.1.xsd
new file mode 100644
index 0000000000..8398e0c0c9
--- /dev/null
+++ b/spring-integration-core/src/main/resources/org/springframework/integration/config/xml/spring-integration-2.1.xsd
@@ -0,0 +1,3021 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Enables annotation support for Message Endpoints.
+
+
+
+
+
+
+ Default output channel for the @Publisher annotation support.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines the ApplicationEventMulticaster to use for this
+ ApplicationContext.
+ The "task-executor"
+ reference is optional. If not provided, an
+ instance of
+ ThreadPoolTaskExecutor will be created by default.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Point-to-Point MessageChannel.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Identifies this channel as a Queue style
+ channel
+
+
+
+
+
+
+ Identifies this channel as a Queue style
+ channel where messages could be prioritized
+ based on custom logic
+
+
+
+
+
+
+ Provides MessageDispatcher configuration
+ (i.e., failover, load-balancing, task-executor)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a queue for messages. If 'capacity' is specified, it will be a
+ bounded queue.
+ A custom Queue
+ implementation can be injected using the 'ref'
+ attribute.
+
+
+
+
+
+ Capacity for this queue. Default capacity is 0 which means
+ this queue will accumulate as many
+ messages as available resources allow.
+
+
+
+
+
+
+ Reference to a MessageGroupStore that can be used to buffer the messages. If a message store is
+ specified then it will store messages for this channel with a correlation key equal to the
+ channel name. If you need
+ more control over the correlation key (e.g. two channels in the same
+ application share a name), then you need to
+ look to the queue implementation itself and provide an
+ explicit instance via the "ref" attribute, or else maybe the
+ message store has a way to specify a region or similar additional
+ tag for messages. This attribute is
+ mutually
+ exclusive with the "ref" attribute (only one can be specified).
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a BlockingQueue that can be used to buffer the messages. This attribute is
+ mutually
+ exclusive with the "message-store" attribute (only one can be specified).
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a queue with priority-ordering for message reception.
+
+
+
+
+
+ Capacity for this queue. Default capacity is 0 which means
+ this queue will accumulate as many
+ messages as available resources allow.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a rendezvous queue where a sender will block until the receiver
+ arrives or vice-versa.
+
+
+
+
+
+
+
+ Defines the dispatching configuration for a non-buffering channel
+ (i.e. one without a queue).
+
+
+
+
+
+ Defines a load-balancing strategy for the channel's dispatcher.
+ The default is a round-robin load
+ balancer.
+
+
+
+
+
+
+
+ [DEFAULT] Defines a Round Robin dispatching strategy which allows
+ load balancing of messages
+ between multiple Message Handlers. Which
+ message
+ handler receives the message first is determined by the 'order'
+ attribute
+ of such Message Handler.
+
+
+
+
+
+
+ No LoadBalancingStrategy will be used.
+
+
+
+
+
+
+
+
+
+ Specifies whether this dispatcher has failover enabled. By default,
+ failover will be enabled. Set
+ this to 'false' to disable it.
+ When enabled and message delivery to the primary Message Handler fails,
+ an attempt
+ will be made to deliver the message to the next handler
+ and so on...
+ Primary, secondary etc... is determined by the
+ load-balancing strategy in
+ use
+ (e.g. round-robin). If no load-balancer strategy is configured, the
+ order will
+ be fixed
+ in a sequence determined by the 'order' attribute on the
+ Message Handlers
+ (or the @Ordered annotation on adapted
+ methods).
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Publish-Subscribe channel that broadcasts messages to its
+ subscribers.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specify whether Exceptions thrown by any subscribed handler should be
+ ignored (only logged).
+
+
+
+
+
+
+ Specify whether the sequence size, sequence number, and correlation id
+ headers should be set on
+ Messages that are sent through this channel.
+
+
+
+
+
+
+
+
+
+
+
+ Defines a message channel.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This attribute is DEPRECATED. Please use the dispatcher sub-element
+ instead.
+
+
+
+
+
+
+
+ Enables failover, but disables load-balancing.
+ See the dispatcher sub-element for more
+ information.
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Messaging Gateway.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Messaging Gateway to be used within a chain.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Channel Adapter that receives from a MessageSource and sends to a
+ MessageChannel.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Maximum amount of time in milliseconds to wait when sending a message to the channel if such channel may block.
+ For example, a Queue Channel can block until space is available if its maximum capacity has been reached.
+
+
+
+
+
+
+
+
+
+ Defines a Channel Adapter that receives from a MessageChannel and passes to
+ a method-invoking
+ MessageHandler.
+
+
+
+
+
+
+
+
+ Specifies the order for invocation when this endpoint is connected as a
+subscriber to a channel. This is particularly relevant when that channel
+is using a "failover" dispatching strategy. It has no effect when this
+endpoint itself is a Polling Consumer for a channel with a queue.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A reference to a bean defined in the application context.
+
+
+
+
+
+
+
+
+
+
+
+ A method defined on the bean referenced by 'ref' attribute
+
+
+
+
+
+
+ SpEL expression to be evaluated for each triggered execution.
+ The result of the evaluation will be
+ passed as the payload of
+ the Message that is sent to the MessageChannel.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Identifies channel attached to this adapter. Depending on the type of the adapter
+ this channel could be the receiving channel (e.g., outbound-channel-adapter) or channel where
+ messages will be sent to by this adapter (e.g., inbound-channel-adapter).
+
+
+
+
+
+
+ Lifecycle attribute signaling if this component should be started during Application Context startup.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an endpoint for exposing any bean reference as a service that
+ receives request Messages
+ from an 'input-channel' and may send reply
+ Messages to an 'output-channel'. The 'ref' may point to an instance
+ that
+ has either a single public method or a method with the
+ @ServiceActivator annotation. Otherwise, the 'method'
+ attribute
+ should be provided along with 'ref'.
+
+
+
+
+
+
+
+
+
+ Specify whether the service method must return a non-null value. This value will be
+ FALSE by
+ default, but if set to TRUE, a MessageHandlingException will be thrown when
+ the underlying service method (or
+ expression) returns a NULL value.
+
+
+
+
+
+
+
+
+
+
+
+ Base type for Message-handling endpoints.
+
+
+
+
+
+
+
+
+
+
+ A reference to a bean that implements the handler.
+ The bean can be an implementation of the MessageHandler interface or a POJO
+
+
+
+
+
+
+
+
+
+
+
+ A method defined on the bean referenced by 'ref' attribute
+
+
+
+
+
+
+
+
+ Base type for Message Handlers.
+
+
+
+
+
+
+
+
+
+
+
+
+ A reference to a bean that implements the handler.
+ The bean can be an implementation of the MessageHandler interface or a POJO
+
+
+
+
+
+
+
+
+
+
+
+ A method defined on the bean referenced by 'ref' attribute
+
+
+
+
+
+
+
+
+
+
+ Defines an endpoint that passes a Message to the output-channel after a
+ delay. The delay may
+ be
+ retrieved from a Message header or else fallback to the
+ 'default-delay' of this endpoint.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specify the default delay in milliseconds. This value can be set to 0
+ if the only Messages
+ that
+ should be delayed are those with a particular header (in that
+ case, be sure to provide
+ a value for the
+ 'delay-header-name' attribute).
+
+
+
+
+
+
+ Specify the name of the header that should contain the delay value.
+ This value can either
+ represent the number of milliseconds to delay counting from the current
+ time or it can be an
+ absolute Date until
+ which the Message should be delayed.
+
+
+
+
+
+
+ Provide a reference to the ScheduledExecutorService instance to which
+ this endpoint should
+ delegate when scheduling the sending of delayed Messages. If not
+ provided, the default
+ will use a thread pool of
+ size
+ 1.
+
+
+
+
+
+
+
+
+
+
+
+ Provide a reference to the MessageStore instance that should be used
+ to store Messages while
+ awaiting the delay.
+
+
+
+
+
+
+
+
+
+
+
+ Specify whether tasks should be able to complete on shutdown. By
+ default this is 'false'.
+
+
+
+
+
+
+
+
+ Defines an endpoint that passes a Message to the
+ output-channel without
+ modifying it.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an endpoint composed of a chain of Message
+ Handlers.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a top-level poller.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines the configuration metadata for a poller.
+
+
+
+
+
+
+
+ NOTE: The 'interval-trigger' sub-element is deprecated as of Spring Integration 2.0 and will be
+ removed in version
+ 2.1.
+ Use one of the interval trigger attributes instead ('fixed-delay' or 'fixed-rate').
+
+
+
+
+
+
+ NOTE: The 'cron-trigger' sub-element is deprecated as of Spring Integration 2.0 and will be
+ removed in version 2.1.
+ Use the 'cron' attribute instead.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Fixed delay trigger (in milliseconds).
+
+
+
+
+
+ Allows this poller to reference another instance of a top-level poller.
+ [IMPORTANT] - This attribute is only allowed on inner poller definitions.
+ Defining this attribute on a top-level poller definition will result in a configuration exception.
+
+
+
+
+
+ Fixed rate trigger (in milliseconds).
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cron trigger.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an interval-based trigger.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an cron-based trigger.
+
+
+
+
+
+
+
+
+
+ Defines a MessageSelector chain.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Provides a MessageSelector reference. If a method attribute is set the
+ referred bean doesn't need
+ to implement the MessageSelector
+ interface.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a HeaderEnricher endpoint for values defined in the MessageHeader.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Shortcut to specify value for 'replyChannel' header
+
+
+
+
+
+
+ Shortcut to specify value for 'errorChannel' header
+
+
+
+
+
+
+ Shortcut to specify value for 'correlationId' header
+
+
+
+
+
+
+ Shortcut to specify value for 'expirationDate' header (java.lang.Long)
+
+
+
+
+
+
+ Shortcut to specify value for 'priority' header when using PriotityChannel
+
+
+
+
+
+
+
+
+
+
+
+ Boolean value to indicate whether this header value should overwrite
+ an existing header
+ value
+ for the same name.
+
+
+
+
+
+
+
+
+
+
+
+ Element that accepts any user-defined header name/value pair.
+
+
+
+
+
+
+ Allows you to configure Message Poller if this endpoint is a Polling Consumer
+
+
+
+
+
+
+
+ Specify the default boolean value for whether to overwrite existing
+ header values. This will
+ only
+ take effect for
+ sub-elements that do not provide their own 'overwrite' attribute. If the
+ 'default-overwrite'
+ attribute is not
+ provided, then the specified header values will NOT overwrite any
+ existing ones with the same
+ header
+ names.
+
+
+
+
+
+
+
+
+
+ Specify whether null values, such as might be returned from an expression evaluation,
+ should be
+ skipped. The default value is true. Set this to false if a null value should
+ trigger removal of the corresponding
+ header instead.
+
+
+
+
+
+
+
+
+
+ Reference to an Object to be invoked for header values.
+ The 'method' attribute is required
+ along
+ with this.
+
+
+
+
+
+
+
+
+
+ Method to be invoked on the referenced Object as specified by the
+ 'ref' attribute. The method
+ should return a Map with String-typed keys.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Message Header with a literal value or object reference.
+
+
+
+
+
+
+
+ Name of the header to be added.
+
+
+
+
+
+
+
+
+
+
+ Provides a header value for the given header name. Requires
+ exactly one of the 'ref', 'value', or
+ 'expression' attributes.
+ The 'type' attribute allows for the specification of the expected
+ type when using a 'value'
+ or 'expression', but it is optional.
+
+
+
+
+
+
+
+
+
+
+
+ Literal value to be associated with the given header name.
+
+
+
+
+
+
+ Expression to be evaulated at runtime to determine the header value.
+ The EvaluationContext will
+ include variables for 'payload' and
+ 'headers'.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to be associated with the given header name.
+
+
+
+
+
+
+
+
+
+ Name of a method to be invoked on the referenced target object.
+
+
+
+
+
+
+
+
+
+
+
+ Boolean value to indicate whether this header value should overwrite an
+ existing header value for
+ the same name.
+
+
+
+
+
+
+
+
+
+
+
+ Defines a HeaderFilter endpoint to remove values defined in the MessageHeaders.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specify one or more header names (as a comma separated list) to
+ be removed from the
+ MessageHeaders
+ of the Message being handled.
+
+
+
+
+
+
+ Boolean flag that specifies whether values provided in 'header-names' should be treated as
+ match patterns or literal values. For example header-names='foo*' would mean remove all
+ headers that begin with 'foo' including the header named 'foo*'. However if you want to
+ treat '*' as literal value setting this flag to FALSE will not perform pattern match and
+ the only header that will be removed is the one that is an exact match.
+
+
+
+
+
+
+
+
+ Defines a Transformer.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Transformer that converts any Object payload to a String by
+ invoking its toString()
+ method.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Transformer that converts any Object payload to a SpEL Map.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Transformer that converts SpEL-based Map to an object.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The name of the bean to be produced by this transformer. The bean MUST BE of scope 'prototype'.
+ NOTE: This attribute is mutually-exclusive with 'type'.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Transformer that converts any Object payload to a JSON String.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a Jackson ObjectMapper instance to be provided optionally
+ if the default ObjectMapper
+ configuration is not desirable.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Transformer that converts a JSON String to an object.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a Jackson ObjectMapper instance to be provided optionally
+ if the default ObjectMapper
+ configuration is not desirable.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Transformer that converts an object payload to a byte array.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a Serializer instance to convert from an object to a byte array.
+ This is optional.
+ The default will use standard Java serialization.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Transformer that converts a byte array to an object.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a Deserializer instance to convert from a byte array to an object.
+ This is optional.
+ The default will use standard Java deserialization.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Transformer that stores a Message and returns a new Message whose
+ payload is the id of
+ the stored Message.
+
+
+
+
+
+
+
+ Defines a Transformer that accepts a Message whose payload is a UUID and
+ retrieves the Message
+ associated with that id from a MessageStore if
+ available (else null).
+
+
+
+
+
+
+
+
+ If set to 'true' the Message will be removed from the MessageStore by
+ this transformer. Useful when Message can be 'claimed' only once. DEFAULT is 'false'.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to the MessageStore to be used by this Claim Check transformer.
+ If not specified, the
+ default reference will be to a bean named 'messageStore'.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Message Filters that is used to decide whether a Message should be passed
+ along or dropped based on some criteria
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The channel where the filter will send the messages that were dropped
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An expression to be evaluated to determine if this recipient should be included in the
+ recipient
+ list for a given input Message. The evaluation result of the expression must be a boolean.
+ If this
+ attribute is not defined, the channel will always be among the list of recipients.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A value of the evaluation token that will be mapped to a channel reference
+ (e.g., mapping value='foo' channel='myChannel')
+
+
+
+
+
+
+ A reference to a bean that defines a Message Channel
+ (e.g., mapping value='foo' channel='myChannel')
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specify whether a failure to resolve a channel name returned by this
+ router should be ignored.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to the default channel where Messages should be sent if channel
+ resolution fails to
+ return any channels. If no default channel
+ is
+ provided, the router will either drop the Message or throw an
+ Exception
+ depending on the value of the "resolution-required" attribute.
+
+
+
+
+
+
+
+ Specify whether this router should always be required to return at least
+ one channel or name.
+
+
+
+
+
+
+
+
+
+
+
+ Specify the maximum amount of time in milliseconds to wait when sending
+ Messages
+ to the target
+ MessageChannels. By default the send will block
+ indefinitely.
+
+
+
+
+
+
+ Specify whether a failure to send to a single channel should be ignored.
+ Otherwise
+ MessageDeliveryExceptions will be thrown.
+
+
+
+
+
+
+ Specify whether sequence number and size headers should be added to each
+ Message.
+
+
+
+
+
+
+
+
+ Defines a Splitter.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specify whether the splitter method must return a non-null value. This value will be
+ FALSE by default, but if set to TRUE, a MessageHandlingException will be thrown when
+ the underlying service method (or expression) returns a NULL value.
+
+
+
+
+
+
+ Set this flag to false to prevent adding sequence related headers in this splitter.
+ This can be convenient in cases where the set sequence numbers conflict with downstream
+ custom aggregations.
+
+
+
+
+
+
+ Provide one or more delimiters (as a single String value, e.g. delimiters=",;:") for
+ tokenizing String-typed payload values. This attribute is only allowed if no 'ref' or
+ 'expression' have been provided since that is when the DefaultMessageSplitter would
+ be used, and it's the implementation that contains the "delimiters" property.
+
+
+
+
+
+
+
+
+
+
+ Defines an aggregating message endpoint.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A SpEL expression to be evaluated against the input message list as its root object.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A reference to a bean that implements the release strategy.
+ The bean can be an implementation of the
+ ReleaseStrategy interface or a POJO
+
+
+
+
+
+
+
+
+
+
+
+ A method defined on the bean referenced by release-strategy, that implements the completion
+ decision algorithm.
+
+
+
+
+
+ A SpEL expression to apply to the message group (e.g, payload.size() > 6)
+
+
+
+
+
+
+
+
+
+
+ A reference to a bean that implements the decision algorithm as to whether a given
+ message group is complete. The bean can be an implementation of the
+ CorrelationStrategy interface or a POJO.
+
+
+
+
+
+
+
+
+
+
+
+ A method defined on the bean referenced by correlation-strategy, that implements the
+ correlation decision algorithm
+
+
+
+
+
+ A SpEL expression which implements correlation decision
+ algorithm to apply to the Message (e.g., payload.getPerson().getId() - correlate
+ based on the 'id' of the 'person' attribute of the message payload object)
+
+
+
+
+
+
+
+
+
+
+ The channel where the aggregator will send the messages that timed out (if send-partial-results-
+ on-expiry is 'false').
+
+
+
+
+
+
+ Reference to a MessageGroupStore for holding
+ state in between message processing. The default
+ is to use a volatile in-memory store, which means that unprocessed messages
+ will be lost if the JVM exits. To customize
+ the expiry of incomplete message groups configure the message store.
+
+
+
+
+
+
+
+
+
+
+
+ Tells if partially aggregated messages should be released when their storage time had expired (see
+ MessageGroupStore.expireMessageGroups(long))
+
+
+
+
+
+
+
+
+
+
+ Defines a resequencing message endpoint.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Comparator for messages used to sort the sequence when released. Defaults to comparing
+ the
+ sequence number header.
+
+
+
+
+
+
+
+
+
+
+
+ Flag to say that partial sequences can be released (e.g. 1-4 of 10).
+ Defaults to true, so the
+ sequence has to be complete before any messages
+ are released.
+ This is mutually exclusive with the release-strategy
+ attribute (either or none can be specified , but not both).
+
+
+
+
+
+
+
+
+
+
+ Defines a list of interceptors. Each element may be a ChannelInterceptor,
+ ref, or inner-bean.
+
+
+
+
+
+
+
+ Reference to a bean in this Application Context that implements ChannelInterceptor
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a bean in this Application Context that implements ChannelInterceptor
+
+
+
+
+
+
+
+
+ Alows you to configure a Wire Tap interceptor that will send a copy of the message to a
+ channel identified by 'channel' attribute.
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Wire Tap Channel Interceptor.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A reference to a bean in the Application Context
+ which implements MessageSelector that must accept a message for it to be
+ sent to the intercepting channel
+
+
+
+
+
+
+ The timeout for sending the message to the intercepting channel
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A SpEL expression to be evaluated against the input Message as its root object.
+
+
+
+
+
+
+
+
+
+
+
+ The key for retrieving the expression from an ExpressionSource.
+
+
+
+
+
+
+ The reference to an ExpressionSource.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a MessagePublishingInterceptor which allows you to generate messages
+ as a by-product of
+ method invocations on Spring configured components.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ [REQUIRED] Channel name(s) or patterns. To specify more than one channel use
+ ','
+ (e.g.,
+ channel-name-pattern="input*, foo, bar")
+
+
+
+
+
+
+ [OPTIONAL] Specifies the order in which this interceptor will be
+ added to the existing channel
+ interceptors (if any).
+ Negative value (e.g., -2) will signify BEFORE existing iinterceptors (if any). Positive
+ value (e.g., 2)
+ will signify AFTER existing interceptors (if any)
+
+
+
+
+
+
+
+
+
+
+
+ Allows you to define channel interceptors to be applied globally.
+
+
+
+
+
+
+
+
+
+ [REQUIRED] Channel name(s) or patterns. To specify more than one channel use
+ ','
+ (e.g.,
+ channel-name-pattern="input*, foo, bar")
+
+
+
+
+
+
+ [OPTIONAL] Specifies the order in which this interceptor will be
+ added to the existing channel
+ interceptors (if any).
+ Negative value (e.g., -2) will signify BEFORE existing iinterceptors (if any). Positive
+ value (e.g., 2)
+ will signify AFTER existing interceptors (if any)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Allows you to register Converters (implementation of the Converter interface) that will
+be automatically registered with the ConversionService. ConversionService itself does not have to be
+explicitly defined since the default ConversionService will be registered under the name 'integrationConversionService'
+unless bean with this name is already registered.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Identifies the Message channel where Message will be sent after it's being processed by this endpoint
+
+
+
+
+
+
+ Specify the maximum amount of time in milliseconds to wait when sending a reply
+ Message to the
+ output channel. By default the send will block for one second.
+
+
+
+
+
+
+
+
+
+
+
+ The receiving Message channel of this endpoint
+
+
+
+
+
+
+
+
+
+
+
+ Lifecycle attribute signaling if this component should be started during Application Context startup.
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-integration-event/src/main/resources/META-INF/spring.schemas b/spring-integration-event/src/main/resources/META-INF/spring.schemas
index 0598e0cccb..b4fe05b048 100644
--- a/spring-integration-event/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-event/src/main/resources/META-INF/spring.schemas
@@ -1,2 +1,3 @@
http\://www.springframework.org/schema/integration/event/spring-integration-event-2.0.xsd=org/springframework/integration/event/config/spring-integration-event-2.0.xsd
-http\://www.springframework.org/schema/integration/event/spring-integration-event.xsd=org/springframework/integration/event/config/spring-integration-event-2.0.xsd
\ No newline at end of file
+http\://www.springframework.org/schema/integration/event/spring-integration-event-2.1.xsd=org/springframework/integration/event/config/spring-integration-event-2.1.xsd
+http\://www.springframework.org/schema/integration/event/spring-integration-event.xsd=org/springframework/integration/event/config/spring-integration-event-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-event/src/main/resources/org/springframework/integration/event/config/spring-integration-event-2.1.xsd b/spring-integration-event/src/main/resources/org/springframework/integration/event/config/spring-integration-event-2.1.xsd
new file mode 100644
index 0000000000..29748ed275
--- /dev/null
+++ b/spring-integration-event/src/main/resources/org/springframework/integration/event/config/spring-integration-event-2.1.xsd
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Configures an inbound Channel Adapter which listens for Application Context
+ events, converts them to Messages and sends them to a Message Channel.
+
+
+
+
+
+
+
+
+
+
+
+
+ The channel to which Messages generated from Application Context events will be sent.
+
+
+
+
+
+
+
+
+
+
+
+ If a (synchronous) downstream exception is thrown and an error-channel is specified,
+ the MessagingException will be sent to this channel. Otherwise, any such exception
+ will be propagated to the caller.
+
+
+
+
+
+
+ Comma delimited list of event types (classes that extend ApplicationEvent) that this adapter
+ should send to the message channel. By default, all event types will be sent [OPTIONAL]
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Channel Adapter that receives Messages from a MessageChannel and then publishes
+ MessagingEvents containing those Messages.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The Message Channel from which this adapter receives Messages.
+
+
+
+
+
+
+
+ Specifies the order for invocation when this endpoint is connected as a
+ subscriber to a SubscribableChannel.
+
+
+
+
+
+
+
+
diff --git a/spring-integration-feed/src/main/resources/META-INF/spring.schemas b/spring-integration-feed/src/main/resources/META-INF/spring.schemas
index 311d93a42e..a1e27e03d2 100644
--- a/spring-integration-feed/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-feed/src/main/resources/META-INF/spring.schemas
@@ -1,2 +1,3 @@
http\://www.springframework.org/schema/integration/feed/spring-integration-feed-2.0.xsd=org/springframework/integration/feed/config/spring-integration-feed-2.0.xsd
-http\://www.springframework.org/schema/integration/feed/spring-integration-feed.xsd=org/springframework/integration/feed/config/spring-integration-feed-2.0.xsd
\ No newline at end of file
+http\://www.springframework.org/schema/integration/feed/spring-integration-feed-2.1.xsd=org/springframework/integration/feed/config/spring-integration-feed-2.1.xsd
+http\://www.springframework.org/schema/integration/feed/spring-integration-feed.xsd=org/springframework/integration/feed/config/spring-integration-feed-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-feed/src/main/resources/org/springframework/integration/feed/config/spring-integration-feed-2.1.xsd b/spring-integration-feed/src/main/resources/org/springframework/integration/feed/config/spring-integration-feed-2.1.xsd
new file mode 100644
index 0000000000..c64fd727f1
--- /dev/null
+++ b/spring-integration-feed/src/main/resources/org/springframework/integration/feed/config/spring-integration-feed-2.1.xsd
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The URL for an RSS or ATOM feed.
+
+
+
+
+
+
+
+
+
+
+
+ Identifies channel attached to this adapter. Depending on the type of the adapter
+ this channel could be the receiving channel (e.g., outbound-channel-adapter) or channel where
+ messages will be sent to by this adapter (e.g., inbound-channel-adapter).
+
+
+
+
+
+
+ Reference to a FeedFetcher instance for retrieveing Feeds from the provided URL.
+ By default, the HTTP protocol is supported. For any other protocols or general
+ customizations, provide a reference to a different implementation.
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a MetadataStore instance for storing metadata associated with
+ the retrieved feeds. If the implementation is persistent, it can help to
+ prevent duplicates between restarts. If shared, it can help coordinate multiple
+ instances of an adapter across different processes.
+
+
+
+
+
+
+
+
+
+
+
+ Lifecycle attribute signaling if this component should be started during Application Context startup.
+ Default is 'true'
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-integration-file/src/main/resources/META-INF/spring.schemas b/spring-integration-file/src/main/resources/META-INF/spring.schemas
index 190aedc84a..682b84f779 100644
--- a/spring-integration-file/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-file/src/main/resources/META-INF/spring.schemas
@@ -1,3 +1,4 @@
http\://www.springframework.org/schema/integration/file/spring-integration-file-1.0.xsd=org/springframework/integration/file/config/spring-integration-file-1.0.xsd
http\://www.springframework.org/schema/integration/file/spring-integration-file-2.0.xsd=org/springframework/integration/file/config/spring-integration-file-2.0.xsd
-http\://www.springframework.org/schema/integration/file/spring-integration-file.xsd=org/springframework/integration/file/config/spring-integration-file-2.0.xsd
\ No newline at end of file
+http\://www.springframework.org/schema/integration/file/spring-integration-file-2.1.xsd=org/springframework/integration/file/config/spring-integration-file-2.1.xsd
+http\://www.springframework.org/schema/integration/file/spring-integration-file.xsd=org/springframework/integration/file/config/spring-integration-file-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-file/src/main/resources/org/springframework/integration/file/config/spring-integration-file-2.1.xsd b/spring-integration-file/src/main/resources/org/springframework/integration/file/config/spring-integration-file-2.1.xsd
new file mode 100644
index 0000000000..7d6bcbe6de
--- /dev/null
+++ b/spring-integration-file/src/main/resources/org/springframework/integration/file/config/spring-integration-file-2.1.xsd
@@ -0,0 +1,325 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Configures an inbound Channel Adapter that polls a directory and sends Messages whose payloads are
+ instances of java.io.File.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a custom DirectoryScanner implementation.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specify whether to automatically create the source directory if it does not yet exist when this
+ adapter is being initialized. The default value is 'true'. If set to 'false' and the directory
+ does not exist upon initialization, an Exception will be thrown.
+
+
+
+
+
+
+ Specify the maximum number of files stored in memory by the underlying FileReadingMessageSource.
+ This is useful to limit the memory footprint of this endpoint. Using a stateful filter would counter
+ this benefit, so AcceptOnceFileListFilter is not used when this attribute is specified.
+ MUTUALLY EXCLUSIVE with comparator, if comparator is set this attribute will be ignored.
+ MUTUALLY EXCLUSIVE with stateful filtering.
+
+
+
+
+
+
+
+
+
+
+ Configures an outbound Channel Adapter that writes Message payloads to a File.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Configures an outbound Gateway that writes request Message payloads to a File and then generates a
+ reply Message containing the newly written File as its payload.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Allows you to provide SpEL expression which will compute file name of
+ the target file (e.g., assuming payload is java.io.File "payload.getName() + '.transfered'");
+
+
+
+
+
+
+ Extension used when uploading files. We change it right after we know it's uploaded.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specify whether to automatically create the destination directory if it does not yet exist when this
+ adapter is being initialized. The default value is 'true'. If set to 'false' and the directory does
+ not exist upon initialization, an Exception will be thrown.
+
+
+
+
+
+
+
+
+
+
+
+ Creates a Transformer that converts a File payload to a String.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Creates a Transformer that converts a File payload to an array of bytes.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/spring-integration-ftp/src/main/resources/META-INF/spring.schemas b/spring-integration-ftp/src/main/resources/META-INF/spring.schemas
index 6442125fe9..3ac1694641 100644
--- a/spring-integration-ftp/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-ftp/src/main/resources/META-INF/spring.schemas
@@ -1,2 +1,3 @@
http\://www.springframework.org/schema/integration/ftp/spring-integration-ftp-2.0.xsd=org/springframework/integration/ftp/config/spring-integration-ftp-2.0.xsd
-http\://www.springframework.org/schema/integration/ftp/spring-integration-ftp.xsd=org/springframework/integration/ftp/config/spring-integration-ftp-2.0.xsd
+http\://www.springframework.org/schema/integration/ftp/spring-integration-ftp-2.1.xsd=org/springframework/integration/ftp/config/spring-integration-ftp-2.1.xsd
+http\://www.springframework.org/schema/integration/ftp/spring-integration-ftp.xsd=org/springframework/integration/ftp/config/spring-integration-ftp-2.1.xsd
diff --git a/spring-integration-ftp/src/main/resources/org/springframework/integration/ftp/config/spring-integration-ftp-2.1.xsd b/spring-integration-ftp/src/main/resources/org/springframework/integration/ftp/config/spring-integration-ftp-2.1.xsd
new file mode 100644
index 0000000000..4715bb9010
--- /dev/null
+++ b/spring-integration-ftp/src/main/resources/org/springframework/integration/ftp/config/spring-integration-ftp-2.1.xsd
@@ -0,0 +1,234 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Identifies directory path (e.g., "/temp/mytransfers") where file will be transferred TO
+
+
+
+
+
+
+ Allows you to provide SpEL expression which will compute directory path
+ where file will be transferred TO (e.g., "headers.['remote_dir'] + '/myTransfers'");
+
+
+
+
+
+
+ Allows you to provide remote file/directory separator character. DEFAULT: '/'
+
+
+
+
+
+
+ Extension used when uploading files. We change it right after we know it's uploaded.
+
+
+
+
+
+
+ Allows you to specify a reference to
+ [org.springframework.integration.file.FileNameGenerator] bean.
+
+
+
+
+
+
+
+
+
+
+
+ Allows you to provide SpEL expression which will compute file name of
+ the remote file (e.g., assuming payload is java.io.File "payload.getName() + '.transfered'");
+
+
+
+
+
+
+ Specifies the order for invocation when this endpoint is connected as a
+subscriber to a channel. This is particularly relevant when that channel
+is using a "failover" dispatching strategy, or when a failure in the delivery to one subscriber should signal that
+the message should not be sent to subscribers with a higher 'order' attribute. It has no effect when this
+endpoint itself is a Polling Consumer for a channel with a queue.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Allows you to provide file name pattern to determine the file names that needs to be scanned
+ and is based on simple pattern matching algorithm (e.g., "*.txt, fo*.txt" etc.)
+
+
+
+
+
+
+ Allows you to provide Regular Expression to determine the file names that needs to be scanned.
+ (e.g., "f[o]+\.txt" etc.)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Allows you to specify a reference to
+ [org.springframework.integration.file.filters.FileListFilter] bean.
+
+
+
+
+
+
+ Extension used when downloading files. We change it right after we know it's downloaded.
+
+
+
+
+
+
+ Identifies directory path (e.g., "/temp/mytransfers") where file will be transferred FROM.
+
+
+
+
+
+
+ Allows you to provide remote file/directory separator character. DEFAULT: '/'
+
+
+
+
+
+
+ Identifies directory path (e.g., "/local/mytransfers") where file will be transferred TO.
+
+
+
+
+
+
+ Tells this adapter if local directory must be auto-created if it doesn''t exist. Default is TRUE.
+
+
+
+
+
+
+ Specify whether to delete the remote source file after copying.
+ By default, the remote files will NOT be deleted.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Identifies channel attached to this adapter. Depending on the type of the adapter
+ this channel could be the receiving channel (e.g., outbound-channel-adapter) or channel where
+ messages will be sent to by this adapter (e.g., inbound-channel-adapter).
+
+
+
+
+
+
+ Allows you to specify Charset (e.g., US-ASCII, ISO-8859-1, UTF-8). [UTF-8] is default
+
+
+
+
+
+
diff --git a/spring-integration-http/src/main/resources/META-INF/spring.schemas b/spring-integration-http/src/main/resources/META-INF/spring.schemas
index 10ab245657..67c216ac25 100644
--- a/spring-integration-http/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-http/src/main/resources/META-INF/spring.schemas
@@ -1,3 +1,4 @@
http\://www.springframework.org/schema/integration/http/spring-integration-http-1.0.xsd=org/springframework/integration/http/config/spring-integration-http-1.0.xsd
http\://www.springframework.org/schema/integration/http/spring-integration-http-2.0.xsd=org/springframework/integration/http/config/spring-integration-http-2.0.xsd
-http\://www.springframework.org/schema/integration/http/spring-integration-http.xsd=org/springframework/integration/http/config/spring-integration-http-2.0.xsd
\ No newline at end of file
+http\://www.springframework.org/schema/integration/http/spring-integration-http-2.1.xsd=org/springframework/integration/http/config/spring-integration-http-2.1.xsd
+http\://www.springframework.org/schema/integration/http/spring-integration-http.xsd=org/springframework/integration/http/config/spring-integration-http-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-http/src/main/resources/org/springframework/integration/http/config/spring-integration-http-2.1.xsd b/spring-integration-http/src/main/resources/org/springframework/integration/http/config/spring-integration-http-2.1.xsd
new file mode 100644
index 0000000000..d7fdd681cb
--- /dev/null
+++ b/spring-integration-http/src/main/resources/org/springframework/integration/http/config/spring-integration-http-2.1.xsd
@@ -0,0 +1,537 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an inbound HTTP-based Channel Adapter.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Target type for payload that is the conversion result of the request.
+
+
+
+
+
+
+
+
+ View name to be resolved when rendering a response.
+
+
+
+
+
+
+ In the case that a view-name is specified this attribute can be used to
+ override the default key of the Errors (if the request cannot be handled).
+ Defaults to "errors" (similar to normal MVC
+ usage).
+
+
+
+
+
+
+ In the case that a view-name is specified this attribute can be used to
+ override the default error code under which the handling exception is exposed.
+ Defaults to
+ "spring.integration.http.handler.error" and is supplied with 3
+ parameters: the exception itself, its message and
+ its stack trace as a String.
+
+
+
+
+
+
+ List of HttpMessageConverters for this Channel Adapter.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an inbound HTTP-based Messaging Gateway.
+
+
+
+
+
+
+
+
+
+
+ View name to be resolved when rendering a response.
+
+
+
+
+
+
+ In the case that a view-name is specified this attribute can be used to
+ override the default key of the Errors (if the request cannot be handled).
+ Defaults to "errors" (similar to normal MVC usage).
+
+
+
+
+
+
+ In the case that a view-name is specified this attribute can be used to
+ override the default error code under which the handling exception is exposed.
+ Defaults to "spring.integration.http.handler.error" and is supplied with 3
+ parameters: the exception itself, its message and its stack trace as a String.
+
+
+
+
+
+
+ In the case that a view-name is not specified this attribute can be used to
+ override the default behaviour when there is a message handling exception (which
+ is to rethrow). If this flag is true then the normal conversion process will be
+ applied to the exception and written out to the response body.
+
+
+
+
+
+
+ Target type for payload that is the conversion result of the request.
+
+
+
+
+
+
+ List of HttpMessageConverters for this Gateway.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an outbound HTTP-based Channel Adapter.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The HTTP method to use when executing requests with this adapter.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The expected type to which the response body should be converted.
+
+
+
+
+
+
+
+
+
+
+
+ Provide a reference to a list of HttpMessageConverter instances. If specified, these converters will replace
+ all of the default converters that would normally be present on the underlying RestTemplate.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specifies whether this adapter should start automatically.
+
+
+
+
+
+
+
+
+
+
+ Defines an outbound HTTP-based Messaging Gateway.
+
+
+
+
+
+
+
+
+
+
+ URL to be used as a fallback for any request Message does not contain the request URL Message header.
+
+
+
+
+
+
+ The HTTP method to use when executing requests with this adapter.
+
+
+
+
+
+
+
+
+
+ Provide a reference to a list of HttpMessageConverter instances. If specified, these converters will replace
+ all of the default converters that would normally be present on the underlying RestTemplate.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The expected type to which the response body should be converted.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines common configuration for gateway adapters.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-integration-ip/src/main/resources/META-INF/spring.schemas b/spring-integration-ip/src/main/resources/META-INF/spring.schemas
index 5cf91575f4..63ccfbedb7 100644
--- a/spring-integration-ip/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-ip/src/main/resources/META-INF/spring.schemas
@@ -1,2 +1,3 @@
http\://www.springframework.org/schema/integration/ip/spring-integration-ip-2.0.xsd=org/springframework/integration/ip/config/spring-integration-ip-2.0.xsd
-http\://www.springframework.org/schema/integration/ip/spring-integration-ip.xsd=org/springframework/integration/ip/config/spring-integration-ip-2.0.xsd
\ No newline at end of file
+http\://www.springframework.org/schema/integration/ip/spring-integration-ip-2.1.xsd=org/springframework/integration/ip/config/spring-integration-ip-2.1.xsd
+http\://www.springframework.org/schema/integration/ip/spring-integration-ip.xsd=org/springframework/integration/ip/config/spring-integration-ip-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-ip/src/main/resources/org/springframework/integration/ip/config/spring-integration-ip-2.1.xsd b/spring-integration-ip/src/main/resources/org/springframework/integration/ip/config/spring-integration-ip-2.1.xsd
new file mode 100644
index 0000000000..74de95b463
--- /dev/null
+++ b/spring-integration-ip/src/main/resources/org/springframework/integration/ip/config/spring-integration-ip-2.1.xsd
@@ -0,0 +1,483 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a udp inbound Channel Adapter for receiving incoming udp packets.
+
+
+
+
+
+
+
+
+The number of threads that will be used for socket/channel handling. Only applies
+if an external task-executor is NOT being used. When using an external task executor,
+its configuration specifies the number of threads.
+
+
+
+
+
+
+
+
+ Specifies a specific Executor to be used for socket handling. If not supplied, an internal
+ pooled executor will be used (See pool-size). Needed on some platforms that require the use of specific
+ task executors such as a WorkManagerTaskExecutor.
+
+
+
+
+
+
+
+
+
+
+
+ If a (synchronous) downstream exception is thrown and an "error-channel" is specified,
+ the MessagingException will be sent to this channel. Otherwise, any such exception
+ will simply be logged by the channel adapter.
+
+
+
+
+
+
+Whether or not to do a DNS reverse-lookup on the remote ip address to insert the host name into the
+message headers (ip_hostName). Default "true".
+
+
+
+
+
+
+
+
+
+
+
+ Defines an outbound UDP packet-sending Channel Adapter.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Specifies a specific Executor to be used for handling acknowledgments in the UDP adapter. If not supplied, an internal
+pooled executor will be used. Needed on some platforms that require the use of specific
+task executors such as a WorkManagerTaskExecutor.
+
+
+
+
+
+
+ Specifies the order for invocation when this endpoint is connected as a
+ subscriber to a SubscribableChannel.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+A connection factory is needed by an inbound adapter. If the connection factory has a type 'server',
+the factory is 'owned' by this adapter. If it has a type 'client', it is owned by an outbound channel
+adapter and this adapter will receive any incoming messages on the connection created by the outbound
+adapter.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If a (synchronous) downstream exception is thrown and an "error-channel" is specified,
+ the MessagingException will be sent to this channel. Otherwise, any such exception
+ will simply be logged by the channel adapter.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+A connection factory is needed by an outbound adapter. If the connection factory has a type 'client',
+the factory is 'owned' by this adapter. If it has a type 'server', it is owned by an inbound channel
+adapter and this adapter will attempt to correlate messages to the connection on which an original
+inbound message was received.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specifies the order for invocation when this endpoint is connected as a
+ subscriber to a SubscribableChannel.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+A connection factory is needed by an inbound adapter. The connection factory must be of type 'server'.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If a (synchronous) downstream exception is thrown and an "error-channel" is specified,
+ the MessagingException will be sent to this channel and the ultimate response
+ of the error flow will be returned as a response by the gateway. If no
+ "error-channel" is specified, any such exception
+ will simply be logged by the gateway. In such a situation, no response is sent
+ to the client.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+A connection factory is needed by an outbound adapter. The connection factory must be of 'client'.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specifies the order for invocation when this endpoint is connected as a
+ subscriber to a SubscribableChannel.
+
+
+
+
+
+
+
+
+
+
+
+
+Connection factories can be 'client' or 'server'. Client factories
+open a connection to a server using a host and port. Server factories
+listen on a port and create a separate connection for each incoming
+connection request.
+
+
+
+
+
+
+
+
+
+
+
+
+The host to which a client connection factory will connect.
+
+
+
+
+
+
+For client factories, the port to which a client connection factory will connect.
+For server factories, the port on which the factory will listen for incoming
+connections.
+
+
+
+
+
+
+If true, the factory will use java.nio.channel.SocketChannel for communication;
+for a large number of connections on the server side, this can provide better
+performance and may use fewer threads.
+
+
+
+
+
+
+
+
+
+
+
+
+
+If true, instructs the factory to use direct buffers if possible; only applies if
+using-nio is true. Refer to ByteBuffer javadocs for more information.
+
+
+
+
+
+
+If true, a new connection will be created for each use. For inbound adapters
+where there is no outbound adapter sharing the factory, the connection will
+be closed after a message is received. For outbound adapters where there is
+no inbound adapter sharing the factory, or for inbound adapters where an
+outbound adapter shares the factory, the connection will be closed after
+so-timeout milliseconds. For outbound adapters where an inbound adapter shares
+the factory, the connection will be closed after a response is received.
+
+
+
+
+
+
+
+
+
+
+
+A Serializer that converts message payloads to/from output streams/input streams
+associated with the connection. Default is ByteArrayCrLfSerializer. Serializer and Deserializer
+would normally be the same but this is not required.
+
+
+
+
+
+
+
+
+
+
+
+A Deserializer that converts message payloads to/from output streams/input streams
+associated with the connection. Default is ByteArrayCrLfSerializer. Serializer and Deserializer
+would normally be the same but this is not required.
+
+
+
+
+
+
+On a multi-homed system, specifies the ip address of the network interface used to communicate.
+For inbound adapters and gateways, specifies the interface used to listen for incoming connections.
+If omitted, the endpoint will listen on all available adapters. For the UDP multicast outbound adapter
+specifies the interface to which multicast packets will be sent. For UDP unicast and multicast
+adapters, specifies which interface to which the acknowledgment socket will be bound. Does not
+apply to TCP outbound adapters and gateways.
+
+
+
+
+
+
+
+The number of threads that will be used for socket/channel handling. Only applies
+if an external task-executor is NOT being used. When using an external task executor,
+its configuration specifies the number of threads.
+
+
+
+
+
+
+Whether or not to do a DNS reverse-lookup on the remote ip address to insert the host name into the
+message headers (ip_connectionId, ip_hostName). Default "true".
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Common configuration for UDP-based adapters.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+On a multi-homed system, specifies the ip address of the network interface used to communicate.
+For inbound adapters and gateways, specifies the interface used to listen for incoming connections.
+If omitted, the endpoint will listen on all available adapters. For the UDP multicast outbound adapter
+specifies the interface to which multicast packets will be sent. For UDP unicast and multicast
+adapters, specifies which interface to which the acknowledgment socket will be bound. Does not
+apply to TCP outbound adapters and gateways.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-integration-jdbc/src/main/resources/META-INF/spring.schemas b/spring-integration-jdbc/src/main/resources/META-INF/spring.schemas
index 20f739d934..9cad3d1ad6 100644
--- a/spring-integration-jdbc/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-jdbc/src/main/resources/META-INF/spring.schemas
@@ -1,2 +1,3 @@
http\://www.springframework.org/schema/integration/jdbc/spring-integration-jdbc-2.0.xsd=org/springframework/integration/jdbc/config/spring-integration-jdbc-2.0.xsd
-http\://www.springframework.org/schema/integration/jdbc/spring-integration-jdbc.xsd=org/springframework/integration/jdbc/config/spring-integration-jdbc-2.0.xsd
\ No newline at end of file
+http\://www.springframework.org/schema/integration/jdbc/spring-integration-jdbc-2.1.xsd=org/springframework/integration/jdbc/config/spring-integration-jdbc-2.1.xsd
+http\://www.springframework.org/schema/integration/jdbc/spring-integration-jdbc.xsd=org/springframework/integration/jdbc/config/spring-integration-jdbc-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-jdbc/src/main/resources/org/springframework/integration/jdbc/config/spring-integration-jdbc-2.1.xsd b/spring-integration-jdbc/src/main/resources/org/springframework/integration/jdbc/config/spring-integration-jdbc-2.1.xsd
new file mode 100644
index 0000000000..59dea96f31
--- /dev/null
+++ b/spring-integration-jdbc/src/main/resources/org/springframework/integration/jdbc/config/spring-integration-jdbc-2.1.xsd
@@ -0,0 +1,554 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a MessageStore (and MessageGroupStore)
+ backed by a database.
+
+
+
+
+
+
+
+
+ Reference to a data source to use to access
+ the database. Either this or the jdbc-operations
+ must be
+ specified (but not both).
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a JdbcOperations. Either
+ this or
+ the data-source must be
+ specified (but not both).
+
+
+
+
+
+
+
+
+
+
+ Unique string to use as a partition for the
+ data in this store, so that
+ multiple instances can
+ share the same
+ database tables. The default
+ is "DEFAULT".
+
+
+
+
+
+
+ Prefix for the table names in the database
+ (e.g. so that a schema can be specified, or to avoid
+ a clash
+ with
+ other tables). The default is "INT_".
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an inbound Channel Adapter for polling a
+ database.
+
+
+
+
+
+
+
+
+
+
+ An update query to execute when a message is
+ polled. If the poll is in a transaction then the
+ update will
+ roll back if the transaction does.
+
+
+
+
+
+
+
+
+
+
+
+ An update query to execute when a message is
+ polled. If the poll is in a transaction then the
+ update will
+ roll back if the transaction does. The update can also be specified as a nested element.
+
+
+
+
+
+
+
+
+ Flag to indicate whether the update query
+ should be executed per message, or per row (in the
+ case that a
+ message contains multiple rows).
+
+
+
+
+
+
+
+
+ Limits the number of rows extracted per query (otherwise all rows
+ are extracted into the
+ outgoing message).
+
+
+
+
+
+
+
+
+ Channel to which polled messages will be
+ sent.
+
+
+
+
+
+
+
+
+
+
+
+ Flag to indicate that the poller should start automatically on startup (default true).
+
+
+
+
+
+
+
+
+ Reference to a SqlParameterSourceFactory. The input is the result of the
+ query. The
+ default factory creates a parameter source that treats a List in a special
+ way: the parameter name is used as an expression and projected onto the list,
+ so for instance "update foos set status=1 where id in (:id)" will generate
+ an in clause from the properties "id" of the input list elements.
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a static SqlParameterSource for the SELECT query used for polling. If
+ that query has
+ placeholders (e.g. "SELECT * from FOO where KEY=:key") they
+ will be bound from this source by name.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an outbound Channel Adapter for updating a
+ database.
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a SqlParameterSourceFactory. The input is the whole
+ outgoing message. The
+ default factory creates a bean
+ property parameter source so the query can specify named
+ parameters like :payload and :headers[foo].
+
+
+
+
+
+
+
+
+
+
+
+
+ Channel from which messages will be output.
+ When a message is sent to this channel it will
+ cause the query
+ to be executed.
+
+
+
+
+
+
+
+
+
+
+
+ Flag to indicate whether primary keys are generated by the query.
+
+
+
+
+
+
+
+
+ Flag to indicate that the poller should start automatically on startup (default true).
+
+
+
+
+
+
+
+ Specifies the order for invocation when this endpoint is connected as a
+ subscriber to a SubscribableChannel.
+
+
+
+
+
+
+
+
+
+
+
+ Defines an outbound Channel Gateway for updating a
+ database in response to a message on the request
+ channel and getting a response
+ on the reply channel. The response can be created from a query
+ supplied here, or (if keys-generated="true") can be the
+ primary keys generated from an auto-increment, or else just a
+ count of the number of rows affected by the update. The response
+ is in general a case insensitive Map (or list of maps if multi-valued), unless
+ a select query and a row-mapper is provided. If the update count is
+ returned then the map key is "UPDATE".
+
+
+
+
+
+
+
+
+
+
+ An update query to execute when a message is
+ received. If this is in a transaction then the
+ update will
+ roll back when the transaction does.
+
+
+
+
+
+
+
+
+
+
+
+ An update query to execute when a message is
+ received. If this is in a transaction then the
+ update will
+ roll back when the transaction does. The update can also be specified as a nested element.
+
+
+
+
+
+
+
+
+ Reference to a SqlParameterSourceFactory. The input is the whole
+ outgoing message. The
+ default factory creates a bean
+ property parameter source so the query can specify named
+ parameters like :payload and :headers[foo].
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a SqlParameterSourceFactory. The input is the whole
+ outgoing message. The
+ default factory creates a bean
+ property parameter source so the query can specify named
+ parameters like :payload and :headers[foo].
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Flag to indicate whether primary keys are generated by the query. If they are then
+ they can be used as a reply payload instead of providing a select query. A single
+ valued result is extracted before returning (the usual case), so the payload of the reply message
+ can be a Map (column name to value) or a list of maps.
+
+
+
+
+
+
+
+
+ Flag to indicate that the poller should start automatically on startup (default true).
+
+
+
+
+
+
+
+ Specifies the order for invocation when this endpoint is connected as a
+ subscriber to a SubscribableChannel.
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a data source to use to access
+ the
+ database. Either this or the
+ simple-jdbc-operations
+ must be
+ specified
+ (but not both).
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a JdbcOperations. Either
+ this or
+ the
+ data-source must be
+ specified (but not both).
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A select query to execute when a message is
+ polled. In general
+ the query can return multiple
+ rows, because
+ the result will be a List (of type determined by the
+ row
+ mapper).
+
+
+
+
+
+
+
+
+
+ A select query to execute when a message is
+ polled. In general the query can return multiple
+ rows, because
+ the result will be a List (of type determined by the row
+ mapper). The query can also be specified as
+ a nested element.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a row mapper to use to convert
+ JDBC result set rows to message payloads.
+ Optional
+ with default
+ that maps
+ result set row to a map (column name to column value).
+ Other simple
+ use cases can
+ be handled
+ with out-of-the box
+ implementations from Spring JDBC. Others require a custom row
+ mapper.
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-integration-jms/src/main/resources/META-INF/spring.schemas b/spring-integration-jms/src/main/resources/META-INF/spring.schemas
index 125d0f342c..bfc6adf157 100644
--- a/spring-integration-jms/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-jms/src/main/resources/META-INF/spring.schemas
@@ -1,3 +1,4 @@
http\://www.springframework.org/schema/integration/jms/spring-integration-jms-1.0.xsd=org/springframework/integration/jms/config/spring-integration-jms-1.0.xsd
http\://www.springframework.org/schema/integration/jms/spring-integration-jms-2.0.xsd=org/springframework/integration/jms/config/spring-integration-jms-2.0.xsd
-http\://www.springframework.org/schema/integration/jms/spring-integration-jms.xsd=org/springframework/integration/jms/config/spring-integration-jms-2.0.xsd
\ No newline at end of file
+http\://www.springframework.org/schema/integration/jms/spring-integration-jms-2.1.xsd=org/springframework/integration/jms/config/spring-integration-jms-2.1.xsd
+http\://www.springframework.org/schema/integration/jms/spring-integration-jms.xsd=org/springframework/integration/jms/config/spring-integration-jms-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-jms/src/main/resources/org/springframework/integration/jms/config/spring-integration-jms-2.1.xsd b/spring-integration-jms/src/main/resources/org/springframework/integration/jms/config/spring-integration-jms-2.1.xsd
new file mode 100644
index 0000000000..1dd9054225
--- /dev/null
+++ b/spring-integration-jms/src/main/resources/org/springframework/integration/jms/config/spring-integration-jms-2.1.xsd
@@ -0,0 +1,1063 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Message Channel that is backed by a JMS Queue.
+
+
+
+
+
+
+
+
+ Reference to a JMS Queue. Either this attribute or the 'queue-name'
+ must be provided, but only one.
+
+
+
+
+
+
+ Specifies whether this channel should be Message-Driven. The value is "true" by default.
+ Set to "false" if this channel should be pollable.
+
+
+
+
+
+
+ Name of a JMS Queue to be resolved by this channel's DestinationResolver.
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Message Channel that is backed by a JMS Topic.
+
+
+
+
+
+
+
+
+ Reference to a JMS Topic. Either this attribute or the 'topic-name'
+ must be provided, but only one.
+
+
+
+
+
+
+ Name of a JMS Topic to be resolved by this channel's DestinationResolver.
+
+
+
+
+
+
+ Boolean value indicating whether the Topic subscription is durable.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ID for this channel. Required.
+
+
+
+
+
+
+ Reference to a JMS ConnectionFactory. If none is provided, the default
+ bean name for the reference will be "connectionFactory".
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Timeout for the container's consumers if messsage-driven is TRUE, or
+ timeout for receive calls on the template if message-driven is FALSE.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a JMS Message-Driven inbound Channel Adapter.
+
+
+
+
+
+
+
+
+ A reference to a javax.jms.Destination by bean name. As an alternative to a bean
+ reference, use 'destination-name' and 'pub-sub-domain' which will rely upon the
+ DestinationResolver strategy (DynamicDestinationResolver by default).
+
+
+
+
+
+
+
+
+
+
+
+
+ The boolean property used to configure the JmsTemplate with knowledge of what JMS domain is being used. By default the value of this property is 'false'',
+ indicating that the point-to-point domain, Queues, will be used. This property used by JmsTemplate determines the behavior of dynamic destination resolution
+ via implementations of the DestinationResolver interface.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If a (synchronous) downstream exception is thrown and an error-channel is specified,
+ the MessagingException will be sent to this channel. Otherwise, any such exception
+ will be propagated to the listener container and any JMS transaction will be
+ rolled back. Any synchronous downstream exceptions in the error flow will
+ also cause any JMS transaction to be rolled back.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an inbound Channel Adapter for polling a JMS Destination.
+
+
+
+
+
+
+
+
+
+
+
+ A reference to a javax.jms.Destination by bean name. As an alternative to a bean
+ reference, use 'destination-name' and 'pub-sub-domain' which will rely upon the
+ DestinationResolver strategy (DynamicDestinationResolver by default).
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Timeout for receive calls on the template.
+ NOTE: for JmsTemplate, 0 means indefinite while -1 means no-wait.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an inbound JMS-based Messaging Gateway.
+
+
+
+
+
+
+
+
+ A reference to a javax.jms.Destination by bean name. As an alternative to a bean
+ reference, use 'request-destination-name' and 'request-pub-sub-domain' which will rely
+ upon the DestinationResolver strategy (DynamicDestinationResolver by default).
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A reference to a javax.jms.Destination by bean name. As an alternative to a bean
+ reference, use either 'default-reply-queue-name' or 'default-reply-topic-name' which
+ will rely upon the DestinationResolver strategy (DynamicDestinationResolver by default).
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Allows to specify custom implementation of JmsHeaderMapper to map Message Headers to JMS Message.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If a (synchronous) downstream exception is thrown and an "error-channel" is specified,
+ the MessagingException will be sent to this channel; any response from
+ which will be returned as a reply by the gateway. If an "error-channel" is not
+ supplied, any such exception
+ will be propagated to the listener container and any JMS transaction will be
+ rolled back. Any synchronous downstream exceptions in the error flow will
+ also cause any JMS transaction to be rolled back.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an outbound JMS-based Messaging Gateway.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A reference to a javax.jms.Destination by bean name. As an alternative to a bean
+ reference, use 'request-destination-name' and 'request-pub-sub-domain' which will rely
+ upon the DestinationResolver strategy (DynamicDestinationResolver by default).
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A reference to a javax.jms.Destination by bean name. As an alternative to a bean
+ reference, use 'reply-destination-name' and 'reply-pub-sub-domain' which will rely
+ upon the DestinationResolver strategy (DynamicDestinationResolver by default).
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Allows to specify custom implementation of JmsHeaderMapper to map Message Headers to JMS Message.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specify a boolean value indicating whether the delivery mode should be
+ DeliveryMode.PERSISTENT (true) or DeliveryMode.NON_PERSISTENT (false).
+ This setting will only take effect if 'explicit-qos-enabled' is true.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an outbound JMS Message-sending Channel Adapter.
+
+
+
+
+
+
+
+
+
+
+
+ A reference to a javax.jms.Destination by bean name. As an alternative to a bean
+ reference, use 'destination-name' and 'pub-sub-domain' which will rely upon the
+ DestinationResolver strategy (DynamicDestinationResolver by default).
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specify a boolean value indicating whether the delivery mode should be
+ DeliveryMode.PERSISTENT (true) or DeliveryMode.NON_PERSISTENT (false).
+ This setting will only take effect if 'explicit-qos-enabled' is true.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Common configuration for message-driven inbound JMS-based adapters.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Common configuration for inbound JMS-based adapters.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A JMS Message Selector expression.
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Transformer for adding statically configured JMS Headers.
+
+
+
+
+
+
+
+
+ The ReplyTo Destination for the JMS Message.
+
+
+
+
+
+
+ The Correlation ID for the JMS Message.
+
+
+
+
+
+
+
+ Specify the default boolean value for whether to overwrite existing header values. This will only take effect for
+ sub-elements that do not provide their own 'overwrite' attribute. If the 'default-overwrite' attribute is not
+ provided, then the specified header values will NOT overwrite any existing ones with the same header names.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Boolean value to indicate whether this header value should overwrite an existing header value for the same name.
+
+
+
+
+
+
+
+
+
+
+
+ Common configuration for JMS-based adapters.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-integration-jmx/src/main/resources/META-INF/spring.schemas b/spring-integration-jmx/src/main/resources/META-INF/spring.schemas
index d7c1983d4b..8390855dd3 100644
--- a/spring-integration-jmx/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-jmx/src/main/resources/META-INF/spring.schemas
@@ -1,2 +1,3 @@
http\://www.springframework.org/schema/integration/jmx/spring-integration-jmx-2.0.xsd=org/springframework/integration/jmx/config/spring-integration-jmx-2.0.xsd
-http\://www.springframework.org/schema/integration/jmx/spring-integration-jmx.xsd=org/springframework/integration/jmx/config/spring-integration-jmx-2.0.xsd
\ No newline at end of file
+http\://www.springframework.org/schema/integration/jmx/spring-integration-jmx-2.1.xsd=org/springframework/integration/jmx/config/spring-integration-jmx-2.1.xsd
+http\://www.springframework.org/schema/integration/jmx/spring-integration-jmx.xsd=org/springframework/integration/jmx/config/spring-integration-jmx-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-jmx/src/main/resources/org/springframework/integration/jmx/config/spring-integration-jmx-2.1.xsd b/spring-integration-jmx/src/main/resources/org/springframework/integration/jmx/config/spring-integration-jmx-2.1.xsd
new file mode 100644
index 0000000000..0f245dbd36
--- /dev/null
+++ b/spring-integration-jmx/src/main/resources/org/springframework/integration/jmx/config/spring-integration-jmx-2.1.xsd
@@ -0,0 +1,183 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an inbound Channel Adapter that polls for JMX attribute values.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an outbound Gateway which allows for Message-driven invocation of managed operations that
+ return values
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an outbound Channel Adapter for invoking JMX operations.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an inbound Channel Adapter that listens for JMX notifications.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an outbound Channel Adapter that publishes JMX notifications.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Exports Message Channels and Endpoints as MBeans.
+
+
+
+
+
+
+
+
+ The domain name for the MBeans exported by this Exporter.
+
+
+
+
+
+
+
+
+
+
+
+ Static object properties to be used for this domain. These properties are appended to
+ the ObjectName of all MBeans registered by this component.
+
+
+
+
+
+
+ Comma separated list of simple patterns for component names to register (defaults to '*').
+ The pattern is applied to all components before they are registered, looking for a match on
+ the 'name' property of the ObjectName. A MessageChannel and a MessageHandler (for instance)
+ can share a name because they have a different type, so in that case they would either both
+ be included or both excluded.
+
+
+
+
+
+
+
+
+
+
+
+ Defines inbound operation invoking type
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines outbound operation invoking type
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines the name of the MBeanServer bean to connect to.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-integration-mail/src/main/resources/META-INF/spring.schemas b/spring-integration-mail/src/main/resources/META-INF/spring.schemas
index 1483e775e8..f34f3e9c93 100644
--- a/spring-integration-mail/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-mail/src/main/resources/META-INF/spring.schemas
@@ -1,3 +1,4 @@
http\://www.springframework.org/schema/integration/mail/spring-integration-mail-1.0.xsd=org/springframework/integration/mail/config/spring-integration-mail-1.0.xsd
http\://www.springframework.org/schema/integration/mail/spring-integration-mail-2.0.xsd=org/springframework/integration/mail/config/spring-integration-mail-2.0.xsd
-http\://www.springframework.org/schema/integration/mail/spring-integration-mail.xsd=org/springframework/integration/mail/config/spring-integration-mail-2.0.xsd
\ No newline at end of file
+http\://www.springframework.org/schema/integration/mail/spring-integration-mail-2.1.xsd=org/springframework/integration/mail/config/spring-integration-mail-2.1.xsd
+http\://www.springframework.org/schema/integration/mail/spring-integration-mail.xsd=org/springframework/integration/mail/config/spring-integration-mail-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-mail/src/main/resources/org/springframework/integration/mail/config/spring-integration-mail-2.1.xsd b/spring-integration-mail/src/main/resources/org/springframework/integration/mail/config/spring-integration-mail-2.1.xsd
new file mode 100644
index 0000000000..79f0844566
--- /dev/null
+++ b/spring-integration-mail/src/main/resources/org/springframework/integration/mail/config/spring-integration-mail-2.1.xsd
@@ -0,0 +1,334 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an outbound mail-sending Channel Adapter.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specifies the order for invocation when this endpoint is connected as a
+ subscriber to a SubscribableChannel.
+
+
+
+
+
+
+
+
+
+ Defines an inbound Channel Adapter that polls a mailbox for mail messages.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an IMAP IDLE channel adapter.
+
+
+
+
+
+
+
+
+ [DEPRECATED as of 2.0.5]
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If a (synchronous) downstream exception is thrown and an error-channel is specified,
+ the MessagingException will be sent to this channel. Otherwise, any such exception
+ will simply be logged as a warning by the channel adapter.
+
+
+
+
+
+
+
+
+
+
+
+
+ A unique identifier for this Channel Adapter.
+
+
+
+
+
+
+ Reference for the MessageChannel to which this adapter will send Messages.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specify the javax.mail.Session reference.
+ NOTE: if this is provided, then 'java-mail-properties' should not be.
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a 'java.util.Properties' instance with settings for the JavaMail Session.
+ NOTE: if this is provided, then 'session' should not be.
+
+
+
+
+
+
+
+
+
+
+
+ Specify the javax.mail.Authenticator.
+ NOTE: if this is provided, then 'session' should not be.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specify whether this endpoint should be started automatically. The default is TRUE.
+
+
+
+
+
+
+
+
+
+ Defines a Transformer that converts a javax.mail.Message payload to a String.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Transformer for adding statically configured Mail Headers.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specify the default boolean value for whether to overwrite existing header values. This will only take effect for
+ sub-elements that do not provide their own 'overwrite' attribute. If the 'default-overwrite' attribute is not
+ provided, then the specified header values will NOT overwrite any existing ones with the same header names.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Boolean value to indicate whether this header value should overwrite an existing header value for the same name.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-integration-redis/src/main/resources/META-INF/spring.schemas b/spring-integration-redis/src/main/resources/META-INF/spring.schemas
index cef04c2b24..76b691f990 100644
--- a/spring-integration-redis/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-redis/src/main/resources/META-INF/spring.schemas
@@ -1,2 +1,2 @@
-http\://www.springframework.org/schema/integration/redis/spring-integration-redis-2.0.xsd=org/springframework/integration/redis/config/spring-integration-redis-2.0.xsd
-http\://www.springframework.org/schema/integration/redis/spring-integration-redis.xsd=org/springframework/integration/redis/config/spring-integration-redis-2.0.xsd
\ No newline at end of file
+http\://www.springframework.org/schema/integration/redis/spring-integration-redis-2.1.xsd=org/springframework/integration/redis/config/spring-integration-redis-2.1.xsd
+http\://www.springframework.org/schema/integration/redis/spring-integration-redis.xsd=org/springframework/integration/redis/config/spring-integration-redis-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-redis/src/main/resources/org/springframework/integration/redis/config/spring-integration-redis-2.0.xsd b/spring-integration-redis/src/main/resources/org/springframework/integration/redis/config/spring-integration-redis-2.1.xsd
similarity index 100%
rename from spring-integration-redis/src/main/resources/org/springframework/integration/redis/config/spring-integration-redis-2.0.xsd
rename to spring-integration-redis/src/main/resources/org/springframework/integration/redis/config/spring-integration-redis-2.1.xsd
diff --git a/spring-integration-rmi/src/main/resources/META-INF/spring.schemas b/spring-integration-rmi/src/main/resources/META-INF/spring.schemas
index 20772c72d9..f289a6c331 100644
--- a/spring-integration-rmi/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-rmi/src/main/resources/META-INF/spring.schemas
@@ -1,3 +1,4 @@
http\://www.springframework.org/schema/integration/rmi/spring-integration-rmi-1.0.xsd=org/springframework/integration/rmi/config/spring-integration-rmi-1.0.xsd
http\://www.springframework.org/schema/integration/rmi/spring-integration-rmi-2.0.xsd=org/springframework/integration/rmi/config/spring-integration-rmi-2.0.xsd
-http\://www.springframework.org/schema/integration/rmi/spring-integration-rmi.xsd=org/springframework/integration/rmi/config/spring-integration-rmi-2.0.xsd
\ No newline at end of file
+http\://www.springframework.org/schema/integration/rmi/spring-integration-rmi-2.1.xsd=org/springframework/integration/rmi/config/spring-integration-rmi-2.1.xsd
+http\://www.springframework.org/schema/integration/rmi/spring-integration-rmi.xsd=org/springframework/integration/rmi/config/spring-integration-rmi-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-rmi/src/main/resources/org/springframework/integration/rmi/config/spring-integration-rmi-2.1.xsd b/spring-integration-rmi/src/main/resources/org/springframework/integration/rmi/config/spring-integration-rmi-2.1.xsd
new file mode 100644
index 0000000000..7610abaf04
--- /dev/null
+++ b/spring-integration-rmi/src/main/resources/org/springframework/integration/rmi/config/spring-integration-rmi-2.1.xsd
@@ -0,0 +1,107 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an RMI-based inbound MessagingGateway.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an RMI-based outbound Messaging Gateway.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specifies the order for invocation when this endpoint is connected as a
+ subscriber to a SubscribableChannel.
+
+
+
+
+
+
+
+
+
+
+
+ Defines common configuration for gateway adapters.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-integration-security/src/main/resources/META-INF/spring.schemas b/spring-integration-security/src/main/resources/META-INF/spring.schemas
index 21b0c7399c..c2fd3ac4bc 100644
--- a/spring-integration-security/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-security/src/main/resources/META-INF/spring.schemas
@@ -1,3 +1,4 @@
http\://www.springframework.org/schema/integration/security/spring-integration-security-1.0.xsd=org/springframework/integration/security/config/spring-integration-security-1.0.xsd
http\://www.springframework.org/schema/integration/security/spring-integration-security-2.0.xsd=org/springframework/integration/security/config/spring-integration-security-2.0.xsd
-http\://www.springframework.org/schema/integration/security/spring-integration-security.xsd=org/springframework/integration/security/config/spring-integration-security-2.0.xsd
+http\://www.springframework.org/schema/integration/security/spring-integration-security-2.1.xsd=org/springframework/integration/security/config/spring-integration-security-2.1.xsd
+http\://www.springframework.org/schema/integration/security/spring-integration-security.xsd=org/springframework/integration/security/config/spring-integration-security-2.1.xsd
diff --git a/spring-integration-security/src/main/resources/org/springframework/integration/security/config/spring-integration-security-2.1.xsd b/spring-integration-security/src/main/resources/org/springframework/integration/security/config/spring-integration-security-2.1.xsd
new file mode 100644
index 0000000000..4158b84ceb
--- /dev/null
+++ b/spring-integration-security/src/main/resources/org/springframework/integration/security/config/spring-integration-security-2.1.xsd
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+ Defines security requirements for one or more Message Channels.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines the security access policy for send and/or receive invocations based on a Message Channel name pattern.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-integration-sftp/src/main/resources/META-INF/spring.schemas b/spring-integration-sftp/src/main/resources/META-INF/spring.schemas
index b0a4907255..816a9c91e2 100644
--- a/spring-integration-sftp/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-sftp/src/main/resources/META-INF/spring.schemas
@@ -1,2 +1,3 @@
http\://www.springframework.org/schema/integration/sftp/spring-integration-sftp-2.0.xsd=org/springframework/integration/sftp/config/spring-integration-sftp-2.0.xsd
-http\://www.springframework.org/schema/integration/sftp/spring-integration-sftp.xsd=org/springframework/integration/sftp/config/spring-integration-sftp-2.0.xsd
+http\://www.springframework.org/schema/integration/sftp/spring-integration-sftp-2.1.xsd=org/springframework/integration/sftp/config/spring-integration-sftp-2.1.xsd
+http\://www.springframework.org/schema/integration/sftp/spring-integration-sftp.xsd=org/springframework/integration/sftp/config/spring-integration-sftp-2.1.xsd
diff --git a/spring-integration-sftp/src/main/resources/org/springframework/integration/sftp/config/spring-integration-sftp-2.1.xsd b/spring-integration-sftp/src/main/resources/org/springframework/integration/sftp/config/spring-integration-sftp-2.1.xsd
new file mode 100644
index 0000000000..d59efb52bb
--- /dev/null
+++ b/spring-integration-sftp/src/main/resources/org/springframework/integration/sftp/config/spring-integration-sftp-2.1.xsd
@@ -0,0 +1,272 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Identifies channel attached to this adapter. Depending on the type of the adapter
+ this channel could be the receiving channel (e.g., outbound-channel-adapter) or channel where
+ messages will be sent to by this adapter (e.g., inbound-channel-adapter).
+
+
+
+
+
+
+ Identifies directory path (e.g., "/temp/mytransfers") where file will be transferred TO
+
+
+
+
+
+
+ Allows you to provide remote file/directory separator character. DEFAULT: '/'
+
+
+
+
+
+
+ Allows you to provide SpEL expression which will compute directory path
+ where file will be transferred TO (e.g., "headers.['remote_dir'] + '/myTransfers'");
+
+
+
+
+
+
+ Extension used when uploading files. We change it right after we know it's uploaded.
+
+
+
+
+
+
+
+ Specify whether to automatically create the remote target directory if it doesn't exist.
+
+
+
+
+
+
+ Allows you to specify a reference to
+ [org.springframework.integration.file.FileNameGenerator] bean.
+
+
+
+
+
+
+
+
+
+
+
+ Allows you to provide SpEL expression which will compute file name of
+ the remote file (e.g., assuming payload is java.io.File "payload.getName() + '.transfered'");
+
+
+
+
+
+
+ Allows you to specify Charset (e.g., US-ASCII, ISO-8859-1, UTF-8). [UTF-8] is default
+
+
+
+
+
+
+ Specifies the order for invocation when this endpoint is connected as a
+subscriber to a channel. This is particularly relevant when that channel
+is using a "failover" dispatching strategy, or when a failure in the delivery to one subscriber should signal that
+the message should not be sent to subscribers with a higher 'order' attribute. It has no effect when this
+endpoint itself is a Polling Consumer for a channel with a queue.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a [org.springframework.integration.sftp.session.SftpSessionFactory] bean.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Lifecycle attribute signaling if this component should be started during Application Context startup.
+ Default is 'true'
+
+
+
+
+
+
+ Extension used when downloading files. We change it right after we know it's downloaded.
+
+
+
+
+
+
+
+
+
+
+
+ Identifies channel attached to this adapter. Depending on the type of the adapter
+ this channel could be the receiving channel (e.g., outbound-channel-adapter) or channel where
+ messages will be sent to by this adapter (e.g., inbound-channel-adapter).
+
+
+
+
+
+
+
+
+
+
+
+ Allows you to specify a reference to
+ [org.springframework.integration.file.filters.FileListFilter] bean.
+
+
+
+
+
+
+ Allows you to provide file name pattern to determine the file names that needs to be scanned
+ and is based on simple pattern matching algorithm (e.g., "*.txt, fo*.txt" etc.)
+
+
+
+
+
+
+ Allows you to provide Regular Expression to determine the file names that needs to be scanned.
+ (e.g., "f[o]+\.txt" etc.)
+
+
+
+
+
+
+ Allows you to provide remote file/directory separator character. DEFAULT: '/'
+
+
+
+
+
+
+ Identifies directory path (e.g., "/temp/mytransfers") where file will be transferred FROM.
+
+
+
+
+
+
+ Identifies directory path (e.g., "/local/mytransfers") where file will be transferred TO.
+
+
+
+
+
+
+ Tells this adapter if local directory must be auto-created if it doesn''t exist. Default is TRUE.
+
+
+
+
+
+
+ Specify whether to delete the remote source file after copying.
+ By default, the remote files will NOT be deleted.
+
+
+
+
+
+
+
diff --git a/spring-integration-stream/src/main/resources/META-INF/spring.schemas b/spring-integration-stream/src/main/resources/META-INF/spring.schemas
index f07e6b8bab..ac3a230154 100644
--- a/spring-integration-stream/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-stream/src/main/resources/META-INF/spring.schemas
@@ -1,3 +1,4 @@
http\://www.springframework.org/schema/integration/stream/spring-integration-stream-1.0.xsd=org/springframework/integration/stream/config/spring-integration-stream-1.0.xsd
http\://www.springframework.org/schema/integration/stream/spring-integration-stream-2.0.xsd=org/springframework/integration/stream/config/spring-integration-stream-2.0.xsd
-http\://www.springframework.org/schema/integration/stream/spring-integration-stream.xsd=org/springframework/integration/stream/config/spring-integration-stream-2.0.xsd
\ No newline at end of file
+http\://www.springframework.org/schema/integration/stream/spring-integration-stream-2.1.xsd=org/springframework/integration/stream/config/spring-integration-stream-2.1.xsd
+http\://www.springframework.org/schema/integration/stream/spring-integration-stream.xsd=org/springframework/integration/stream/config/spring-integration-stream-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-stream/src/main/resources/org/springframework/integration/stream/config/spring-integration-stream-2.1.xsd b/spring-integration-stream/src/main/resources/org/springframework/integration/stream/config/spring-integration-stream-2.1.xsd
new file mode 100644
index 0000000000..dc5a0f9701
--- /dev/null
+++ b/spring-integration-stream/src/main/resources/org/springframework/integration/stream/config/spring-integration-stream-2.1.xsd
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Configures a source that reads from stdin (System.in).
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Configures an outbound Channel Adapter that writes to stdout (System.out)
+ or to stderr (System.err) depending on the element name.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specifies the order for invocation when this endpoint is connected as a
+ subscriber to a SubscribableChannel.
+
+
+
+
+
+
diff --git a/spring-integration-twitter/src/main/resources/META-INF/spring.schemas b/spring-integration-twitter/src/main/resources/META-INF/spring.schemas
index b2ebc5bb0d..a2980702be 100644
--- a/spring-integration-twitter/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-twitter/src/main/resources/META-INF/spring.schemas
@@ -1,2 +1,3 @@
http\://www.springframework.org/schema/integration/twitter/spring-integration-twitter-2.0.xsd=org/springframework/integration/twitter/config/spring-integration-twitter-2.0.xsd
-http\://www.springframework.org/schema/integration/twitter/spring-integration-twitter.xsd=org/springframework/integration/twitter/config/spring-integration-twitter-2.0.xsd
+http\://www.springframework.org/schema/integration/twitter/spring-integration-twitter-2.1.xsd=org/springframework/integration/twitter/config/spring-integration-twitter-2.1.xsd
+http\://www.springframework.org/schema/integration/twitter/spring-integration-twitter.xsd=org/springframework/integration/twitter/config/spring-integration-twitter-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-twitter/src/main/resources/org/springframework/integration/twitter/config/spring-integration-twitter-2.1.xsd b/spring-integration-twitter/src/main/resources/org/springframework/integration/twitter/config/spring-integration-twitter-2.1.xsd
new file mode 100644
index 0000000000..0ed3813695
--- /dev/null
+++ b/spring-integration-twitter/src/main/resources/org/springframework/integration/twitter/config/spring-integration-twitter-2.1.xsd
@@ -0,0 +1,199 @@
+
+
+
+
+
+
+
+
+
+
+
+ Configures an inbound channel adapter that consumes message (representing your friends' timeline updates)
+ from twitter and sends Messages whose payloads are Tweet objects.
+
+
+
+
+
+
+
+
+
+
+
+
+ Configures an inbound channel adapter that consumes message (representing mentions of your handle)
+ from twitter and sends Messages whose payloads are Status objects.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Configures an inbound channel adapter that consumes message (representing mentions of your handle)
+ from twitter and sends Messages whose payloads are Status objects.
+
+
+
+
+
+
+
+
+ Twitter search query (e.g, #springintegration .
+ For more info on Twitter queries please refer to this site: http://search.twitter.com/operators)
+
+
+
+
+
+
+
+
+
+
+
+ Configures an inbound channel adapter that consumes direct messages and forwards them to Spring Integration
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Configures an inbound channel adapter that consumes message (representing your friends' timeline updates)
+ from twitter and sends Messages whose payloads are Tweet objects.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Configures an inbound channel adapter that consumes message (representing your friends' timeline updates)
+ from twitter and sends Messages whose payloads are Tweet objects.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a [org.springframework.integration.twitter.core.TwitterOperations] bean. Spring
+ Integration provides [Twitter4jTemplate] template for your convenience.
+ NOTE: in future releases TwitterOperations usage will be migrated to using Spring Social's TwitterOperations
+
+
+
+
+
+
+ Lifecycle attribute signaling if this component should be started during Application Context startup.
+ Default is 'true'
+
+
+
+
+
+
+
+
+
+
+
+ Identifies channel attached to this adapter. Depending on the type of the adapter
+ this channel could be the receiving channel (e.g., outbound-channel-adapter) or channel where
+ messages will be sent to by this adapter (e.g., inbound-channel-adapter).
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a [org.springframework.integration.twitter.core.TwitterOperations] bean. Spring
+ Integration provides [Twitter4jTemplate] template for your convenience.
+ NOTE: in future releases TwitterOperations usage will be migrated to using Spring Social's TwitterOperations
+
+
+
+
+
+
+
+
+
+
+
+ Identifies channel attached to this adapter. Depending on the type of the adapter
+ this channel could be the receiving channel (e.g., outbound-channel-adapter) or channel where
+ messages will be sent to by this adapter (e.g., inbound-channel-adapter).
+
+
+
+
+
+
+ Specifies the order for invocation when this endpoint is connected as a
+ subscriber to a SubscribableChannel.
+
+
+
+
+
diff --git a/spring-integration-ws/src/main/resources/META-INF/spring.schemas b/spring-integration-ws/src/main/resources/META-INF/spring.schemas
index 9cd46a1db0..5648ffd484 100644
--- a/spring-integration-ws/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-ws/src/main/resources/META-INF/spring.schemas
@@ -1,3 +1,4 @@
http\://www.springframework.org/schema/integration/ws/spring-integration-ws-1.0.xsd=org/springframework/integration/ws/config/spring-integration-ws-1.0.xsd
http\://www.springframework.org/schema/integration/ws/spring-integration-ws-2.0.xsd=org/springframework/integration/ws/config/spring-integration-ws-2.0.xsd
-http\://www.springframework.org/schema/integration/ws/spring-integration-ws.xsd=org/springframework/integration/ws/config/spring-integration-ws-2.0.xsd
\ No newline at end of file
+http\://www.springframework.org/schema/integration/ws/spring-integration-ws-2.1.xsd=org/springframework/integration/ws/config/spring-integration-ws-2.1.xsd
+http\://www.springframework.org/schema/integration/ws/spring-integration-ws.xsd=org/springframework/integration/ws/config/spring-integration-ws-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-ws/src/main/resources/org/springframework/integration/ws/config/spring-integration-ws-2.1.xsd b/spring-integration-ws/src/main/resources/org/springframework/integration/ws/config/spring-integration-ws-2.1.xsd
new file mode 100644
index 0000000000..0ce610c4b8
--- /dev/null
+++ b/spring-integration-ws/src/main/resources/org/springframework/integration/ws/config/spring-integration-ws-2.1.xsd
@@ -0,0 +1,349 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Web Service based outbound Messaging Gateway.
+
+
+
+
+
+
+
+
+ A unique identifier for this Gateway.
+
+
+
+
+
+
+ The channel where Messages should be sent to invoke the Web Service.
+
+
+
+
+
+
+
+
+
+
+
+ The channel where Messages created from the Web Service responses will be sent.
+ This is optional. However, if non-empty responses are expected and this is not set,
+ then the request Messages must contain a REPLY_CHANNEL header.
+
+
+
+
+
+
+
+
+
+
+
+ The Destination URI for this Web Service Gateway. If the URI should be determined at runtime
+ (e.g. registry lookup), then configure a 'destination-provider' reference instead.
+
+
+
+
+
+
+ Reference to a DestinationProvider implementation. Either provide this or a 'uri', never both.
+ See org.springframework.ws.client.support.destination.DestinationProvider for more detail.
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a Spring OXM Mashaller. If the Marshaller instance also implements
+ the Unmarshaller interface, then the 'unmarshaller' attribute is not required.
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a Spring OXM Unmarshaller.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a Spring Web Services SourceExtractor.
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a Spring Web Services WebServiceMessageCallback. This enables changing
+ the Web Service request message after the payload has been written to it but prior
+ to invocation of the actual Web Service.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to the bean definition of a WebServiceMessageSender.
+
+
+
+
+
+
+
+
+
+
+
+ Reference to the bean definition for a list or array of WebServiceMessageSenders.
+
+
+
+
+
+
+ Reference to the bean definition of a ClientInterceptor.
+
+
+
+
+
+
+
+
+
+
+
+ Reference to the bean definition for a list or array of ClientInterceptors.
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Web Service based inbound Messaging Gateway.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ If a (synchronous) downstream exception is thrown and an error-channel is specified,
+ the MessagingException will be sent to this channel.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a HeaderMapper<SoapHeader> implementation
+ that this gateway will use to map between Spring Integration
+ MessageHeaders and the SoapHeader. This strategy can only be
+ applied when a 'marshaller' is not being configured.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Transformer for adding a SOAP Action value.
+
+
+
+
+
+
+
+
+
+
+ Specify the default boolean value for whether to overwrite existing header values. This will only take effect for
+ sub-elements that do not provide their own 'overwrite' attribute. If the 'default-overwrite' attribute is not
+ provided, then the specified header values will NOT overwrite any existing ones with the same header names.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Boolean value to indicate whether this header value should overwrite an existing header value for the same name.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-integration-xml/src/main/resources/META-INF/spring.schemas b/spring-integration-xml/src/main/resources/META-INF/spring.schemas
index 5850bc5591..444562cc73 100644
--- a/spring-integration-xml/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-xml/src/main/resources/META-INF/spring.schemas
@@ -1,3 +1,4 @@
http\://www.springframework.org/schema/integration/xml/spring-integration-xml-1.0.xsd=org/springframework/integration/xml/config/spring-integration-xml-1.0.xsd
http\://www.springframework.org/schema/integration/xml/spring-integration-xml-2.0.xsd=org/springframework/integration/xml/config/spring-integration-xml-2.0.xsd
-http\://www.springframework.org/schema/integration/xml/spring-integration-xml.xsd=org/springframework/integration/xml/config/spring-integration-xml-2.0.xsd
\ No newline at end of file
+http\://www.springframework.org/schema/integration/xml/spring-integration-xml-2.1.xsd=org/springframework/integration/xml/config/spring-integration-xml-2.1.xsd
+http\://www.springframework.org/schema/integration/xml/spring-integration-xml.xsd=org/springframework/integration/xml/config/spring-integration-xml-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-xml/src/main/resources/org/springframework/integration/xml/config/spring-integration-xml-2.1.xsd b/spring-integration-xml/src/main/resources/org/springframework/integration/xml/config/spring-integration-xml-2.1.xsd
new file mode 100644
index 0000000000..c4c66153c5
--- /dev/null
+++ b/spring-integration-xml/src/main/resources/org/springframework/integration/xml/config/spring-integration-xml-2.1.xsd
@@ -0,0 +1,613 @@
+
+
+
+
+
+
+
+
+
+ Defines the configuration elements for Spring Integration's XML support.
+
+
+
+
+
+
+
+ Defines an XML marshalling transformer.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specify whether to extract the payload before passing to the Marshaller. By default, this
+ value is "true". To have the full Message passed instead, set this to "false".
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an XML unmarshalling transformer.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an XSLT transformer.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an XPath transformer.
+
+
+
+
+
+
+
+ The XPath expression string to be evaluated against the input Message's payload.
+ Either this or 'xpath-expression-ref' must be provided, but not both.
+
+
+
+
+
+
+ Reference to the XPathExpression instance to be evaluated against the input Message's payload.
+ Either this or 'xpath-expression' must be provided, but not both.
+
+
+
+
+
+
+
+
+
+
+
+ The result type expected from the XPath evaluation. This will be the payload type of the output Message.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to a NodeMapper. If this is provided, the 'evaluation-type' will be ignored. Instead, the
+ org.springframework.xml.xpath.XPathExpression's evaluateAsObject(Node node, NodeMapper nodeMapper)
+ method will be invoked.
+
+
+
+
+
+
+
+
+
+
+
+ Specify the XmlPayloadConverter to use when converting a Message payload prior to XPath evaluation.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines a Header Enricher Message Transformer that evaluates XPath expressions against the
+ message payload and inserts the result of the evaluation into a messsage header.
+
+
+
+
+
+
+
+
+
+
+
+ Specify the default boolean value for whether to overwrite existing header values. This will
+ only take effect for sub-elements that do not provide their own 'overwrite' attribute. If the
+ 'default-overwrite' attribute is not provided, then the specified header values will NOT
+ overwrite any existing ones with the same header names.
+
+
+
+
+
+
+
+
+
+ Specify whether null values, such as might be returned from an expression evaluation, should be
+ skipped. The default value is true. Set this to false if a null value should trigger removal of
+ the corresponding header instead.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an XPath expression to be configured within an <xpath-header-enricher/> element.
+
+
+
+
+
+ The name of the header to be enriched.
+
+
+
+
+
+
+ The XPath Expression as a String. Either this or 'xpath-expression-ref' must be provided, but not both.
+
+
+
+
+
+
+ The XPath Expression reference. Either this or 'xpath-expression' must be provided, but not both.
+
+
+
+
+
+
+
+
+
+
+
+ The result type expected from the XPath evaluation. This will be the type of the header value.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Boolean value to indicate whether this header value should overwrite an existing header value
+ for the same name if already present on the input Message.
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an XPath router.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Specify whether this router should always be required to return at least one channel or name.
+
+
+
+
+
+
+ Specify whether a failure to resolve a channel name returned by this router should be ignored.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an XPath selector.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an XPath expression.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an XPath splitter.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines an XML validating filter.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Allows you to plug-in custom 'org.springframework.xml.validation.XmlValidator' strategy
+
+
+
+
+
+
+
+
+
+
+
+
+ Allows you to point to a Message Channel where you want discarded messages to be sent.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-integration-xmpp/src/main/resources/META-INF/spring.schemas b/spring-integration-xmpp/src/main/resources/META-INF/spring.schemas
index 157fb68c23..4600cfcee2 100644
--- a/spring-integration-xmpp/src/main/resources/META-INF/spring.schemas
+++ b/spring-integration-xmpp/src/main/resources/META-INF/spring.schemas
@@ -1,2 +1,3 @@
http\://www.springframework.org/schema/integration/xmpp/spring-integration-xmpp-2.0.xsd=org/springframework/integration/xmpp/config/spring-integration-xmpp-2.0.xsd
-http\://www.springframework.org/schema/integration/xmpp/spring-integration-xmpp.xsd=org/springframework/integration/xmpp/config/spring-integration-xmpp-2.0.xsd
+http\://www.springframework.org/schema/integration/xmpp/spring-integration-xmpp-2.1.xsd=org/springframework/integration/xmpp/config/spring-integration-xmpp-2.1.xsd
+http\://www.springframework.org/schema/integration/xmpp/spring-integration-xmpp.xsd=org/springframework/integration/xmpp/config/spring-integration-xmpp-2.1.xsd
\ No newline at end of file
diff --git a/spring-integration-xmpp/src/main/resources/org/springframework/integration/xmpp/config/spring-integration-xmpp-2.1.xsd b/spring-integration-xmpp/src/main/resources/org/springframework/integration/xmpp/config/spring-integration-xmpp-2.1.xsd
new file mode 100644
index 0000000000..c316c620d1
--- /dev/null
+++ b/spring-integration-xmpp/src/main/resources/org/springframework/integration/xmpp/config/spring-integration-xmpp-2.1.xsd
@@ -0,0 +1,346 @@
+
+
+
+
+
+
+
+
+
+
+ Configures an XMPP connection that can in turn be referenced by other components
+
+
+
+
+
+
+
+ The user name (e.g., someuser@gmail.com) that will be used by this connection object
+
+
+
+
+
+
+ Lifecycle attribute signaling if this component should be started during Application Context startup.
+ Default is TRUE
+
+
+
+
+
+
+ The user's password
+
+
+
+
+
+
+ The host name to connect TO
+
+
+
+
+
+
+ The XMPP service name for this connection
+
+
+
+
+
+
+ The resource field specifies the XMPP resource you are using. The use of unique resources allows
+ you to connect to your XMPP server from multiple locations simultaneously. Resources might
+
+
+
+
+
+
+ The port on which the host is running
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Configures an endpoint that will receive chat messages sent to a given account and then forward those messages to a MessageChannel.
+
+
+
+
+
+
+
+
+ Specifies if generated Message payload should consist of only
+ the text of the XMPP message or the entire XMPP (Smack API specific) message. Default is true.
+
+
+
+
+
+
+
+
+
+
+
+ Outbound Channel Adapter that sends chat messages.
+
+
+
+
+
+
+
+
+
+
+
+
+ Configures an endpoint that will forward Presence state changes to a MessageChannel.
+
+
+
+
+
+
+
+
+
+
+
+
+ Configures an endpoint that will publish an updated {@link org.jivesoftware.smack.packet.Presence} state on your {@link XMPPConnection } object.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Lifecycle attribute signaling if this component should be started during Application Context startup.
+
+
+
+
+
+
+
+
+
+
+
+ Identifies channel attached to this adapter. Depending on the type of the adapter
+ this channel could be the receiving channel (e.g., outbound-channel-adapter) or channel where
+ messages will be sent to by this adapter (e.g., inbound-channel-adapter).
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reference to XMPP connection bean
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Identifies channel attached to this adapter. Depending on the type of the adapter
+ this channel could be the receiving channel (e.g., outbound-channel-adapter) or channel where
+ messages will be sent to by this adapter (e.g., inbound-channel-adapter).
+
+
+
+
+
+
+
+
+
+
+
+ Reference to XMPP connection bean
+
+
+
+
+
+
+ Specifies the order for invocation when this endpoint is connected as a
+ subscriber to a SubscribableChannel.
+
+
+
+
+
+
+
+
+
+ Defines a Transformer for adding XMPP headers.
+
+
+
+
+
+
+
+
+ The id of the user you sending a message to (e.g., user@gmail.com)
+
+
+
+
+
+
+ The conversation thread id used to corelate XMPP packets as
+ belonging to a particular conversation
+
+
+
+
+
+
+
+ Specify the default boolean value for whether to overwrite existing header values. This will only take effect for
+ sub-elements that do not provide their own 'overwrite' attribute. If the 'default-overwrite' attribute is not
+ provided, then the specified header values will NOT overwrite any existing ones with the same header names.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Value of this header inside of a Message
+
+
+
+
+
+
+ Reference to a bean that contains a method that will compute the header value
+
+
+
+
+
+
+ SpEL expression that will compute the header value
+
+
+
+
+
+
+ Boolean value to indicate whether this header value should overwrite an existing header value for the same name.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The receiving Message channel of this endpoint
+
+
+
+
+
+
+
+
+
+
+
+ Identifies the Message channel where Message will be sent after it's being processed by this endpoint
+
+
+
+
+
+