Spring Integration

org.springframework.integration.router
Interface MappingMessageRouterManagement

All Known Implementing Classes:
AbstractMappingMessageRouter, ErrorMessageExceptionTypeRouter, ExpressionEvaluatingRouter, HeaderValueRouter, MethodInvokingRouter, PayloadTypeRouter, XPathRouter

public interface MappingMessageRouterManagement

Since:
2.1
Author:
Gary Russell

Method Summary
 void removeChannelMapping(java.lang.String key)
          Remove a channel mapping for the given key if present.
 void setChannelMapping(java.lang.String key, java.lang.String channelName)
          Add a channel mapping from the provided key to channel name.
 

Method Detail

setChannelMapping

@ManagedOperation
void setChannelMapping(java.lang.String key,
                                        java.lang.String channelName)
Add a channel mapping from the provided key to channel name.


removeChannelMapping

@ManagedOperation
void removeChannelMapping(java.lang.String key)
Remove a channel mapping for the given key if present.


Spring Integration