Class CamelEndpointMapping
- java.lang.Object
-
- org.springframework.context.support.ApplicationObjectSupport
-
- org.springframework.ws.server.endpoint.mapping.AbstractEndpointMapping
-
- org.apache.camel.component.spring.ws.bean.CamelEndpointMapping
-
- All Implemented Interfaces:
org.apache.camel.CamelContextAware,CamelSpringWSEndpointMapping,org.springframework.beans.factory.Aware,org.springframework.beans.factory.InitializingBean,org.springframework.context.ApplicationContextAware,org.springframework.core.Ordered,org.springframework.ws.server.EndpointMapping,org.springframework.ws.soap.server.SoapEndpointMapping
public class CamelEndpointMapping extends org.springframework.ws.server.endpoint.mapping.AbstractEndpointMapping implements org.springframework.beans.factory.InitializingBean, CamelSpringWSEndpointMapping, org.springframework.ws.soap.server.SoapEndpointMapping, org.apache.camel.CamelContextAware
SpringEndpointMappingfor mapping messages to corresponding Camel endpoints. This class needs to be registered in the Spring ApplicationContext when consuming messages using any of the following URI schemes:- spring-ws:rootqname:
Equivalent to endpoint mappings specified throughPayloadRootQNameEndpointMapping - spring-ws:soapaction:
Equivalent to endpoint mappings specified throughSoapActionEndpointMapping - spring-ws:uri:
Equivalent to endpoint mappings specified throughUriEndpointMapping - spring-ws:xpathresult:
Equivalent to endpoint mappings specified throughXPathPayloadEndpointMapping
- See Also:
AbstractEndpointMapping,PayloadRootQNameEndpointMapping,UriEndpointMapping,XPathPayloadEndpointMapping,SoapActionEndpointMapping
-
-
Constructor Summary
Constructors Constructor Description CamelEndpointMapping()
-
Method Summary
All Methods Instance Methods Concrete 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 consumersvoidafterPropertiesSet()protected org.springframework.ws.server.EndpointInvocationChaincreateEndpointInvocationChain(org.springframework.ws.context.MessageContext messageContext, Object endpoint, org.springframework.ws.server.EndpointInterceptor[] interceptors)org.apache.camel.CamelContextgetCamelContext()protected ObjectgetEndpointInternal(org.springframework.ws.context.MessageContext messageContext)TransformerFactorygetTransformerFactory()Gets the configured TransformerFactoryvoidremoveConsumer(Object key)Used by Camel Spring Web Services endpoint to unregister consumersvoidsetActorOrRole(String actorOrRole)voidsetActorsOrRoles(String[] actorsOrRoles)voidsetCamelContext(org.apache.camel.CamelContext camelContext)voidsetTransformerFactory(TransformerFactory transformerFactory)Optional setter to override default TransformerFactoryvoidsetUltimateReceiver(boolean ultimateReceiver)-
Methods inherited from class org.springframework.ws.server.endpoint.mapping.AbstractEndpointMapping
getDefaultEndpoint, getEndpoint, getInterceptors, getOrder, initApplicationContext, initInterceptors, resolveStringEndpoint, setDefaultEndpoint, setInterceptors, setOrder
-
Methods inherited from class org.springframework.context.support.ApplicationObjectSupport
getApplicationContext, getMessageSourceAccessor, initApplicationContext, isContextRequired, obtainApplicationContext, requiredContextClass, setApplicationContext
-
-
-
-
Method Detail
-
getCamelContext
public org.apache.camel.CamelContext getCamelContext()
- Specified by:
getCamelContextin interfaceorg.apache.camel.CamelContextAware
-
setCamelContext
public void setCamelContext(org.apache.camel.CamelContext camelContext)
- Specified by:
setCamelContextin interfaceorg.apache.camel.CamelContextAware
-
getEndpointInternal
protected Object getEndpointInternal(org.springframework.ws.context.MessageContext messageContext) throws Exception
- Specified by:
getEndpointInternalin classorg.springframework.ws.server.endpoint.mapping.AbstractEndpointMapping- Throws:
Exception
-
createEndpointInvocationChain
protected final org.springframework.ws.server.EndpointInvocationChain createEndpointInvocationChain(org.springframework.ws.context.MessageContext messageContext, Object endpoint, org.springframework.ws.server.EndpointInterceptor[] interceptors)- Overrides:
createEndpointInvocationChainin classorg.springframework.ws.server.endpoint.mapping.AbstractEndpointMapping
-
addConsumer
public void addConsumer(EndpointMappingKey key, org.springframework.ws.server.endpoint.MessageEndpoint endpoint)
Used by Camel Spring Web Services endpoint to register consumers- Specified by:
addConsumerin interfaceCamelSpringWSEndpointMapping- Parameters:
key- unique consumer keyendpoint- consumer
-
removeConsumer
public void removeConsumer(Object key)
Used by Camel Spring Web Services endpoint to unregister consumers- Specified by:
removeConsumerin interfaceCamelSpringWSEndpointMapping- Parameters:
key- unique consumer key
-
getTransformerFactory
public TransformerFactory getTransformerFactory()
Gets the configured TransformerFactory
-
setTransformerFactory
public void setTransformerFactory(TransformerFactory transformerFactory)
Optional setter to override default TransformerFactory
-
afterPropertiesSet
public void afterPropertiesSet() throws Exception- Specified by:
afterPropertiesSetin interfaceorg.springframework.beans.factory.InitializingBean- Throws:
Exception
-
setActorOrRole
public final void setActorOrRole(String actorOrRole)
- Specified by:
setActorOrRolein interfaceorg.springframework.ws.soap.server.SoapEndpointMapping
-
setActorsOrRoles
public final void setActorsOrRoles(String[] actorsOrRoles)
- Specified by:
setActorsOrRolesin interfaceorg.springframework.ws.soap.server.SoapEndpointMapping
-
setUltimateReceiver
public final void setUltimateReceiver(boolean ultimateReceiver)
- Specified by:
setUltimateReceiverin interfaceorg.springframework.ws.soap.server.SoapEndpointMapping
-
-