Interface CamelSpringWSEndpointMapping
-
- All Superinterfaces:
org.springframework.ws.server.EndpointMapping
- All Known Implementing Classes:
CamelEndpointMapping,WSACamelEndpointMapping
public interface CamelSpringWSEndpointMapping extends org.springframework.ws.server.EndpointMappingAllows to register different spring-ws endpoints for camel.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddConsumer(EndpointMappingKey key, org.springframework.ws.server.endpoint.MessageEndpoint endpoint)Used by Camel Spring Web Services endpoint to register consumersvoidremoveConsumer(Object key)Used by Camel Spring Web Services endpoint to unregister consumers
-
-
-
Method Detail
-
addConsumer
void addConsumer(EndpointMappingKey key, org.springframework.ws.server.endpoint.MessageEndpoint endpoint)
Used by Camel Spring Web Services endpoint to register consumers- Parameters:
key- unique consumer keyendpoint- consumer
-
removeConsumer
void removeConsumer(Object key)
Used by Camel Spring Web Services endpoint to unregister consumers- Parameters:
key- unique consumer key
-
-