Interface CxfRsConfigurer
- All Known Implementing Classes:
ChainedCxfRsConfigurer,ChainedCxfRsConfigurer.NullCxfRsConfigurer,HostnameVerifierCxfRsConfigurer,SslCxfRsConfigurer
public interface CxfRsConfigurer
A pluggable strategy for configuring the Camel CXF RS by using java code
-
Method Summary
Modifier and TypeMethodDescriptionvoidconfigure(org.apache.cxf.jaxrs.AbstractJAXRSFactoryBean factoryBean) Configure the CXF-RS Server/Client factory beanvoidconfigureClient(org.apache.cxf.jaxrs.client.Client client) Configure the CXF Client such as setting some parameters on the client conduitvoidconfigureServer(org.apache.cxf.endpoint.Server server) Configure the CXF Server such as setting some parameters on the server destination
-
Method Details
-
configure
void configure(org.apache.cxf.jaxrs.AbstractJAXRSFactoryBean factoryBean) Configure the CXF-RS Server/Client factory bean- Parameters:
factoryBean- the factory bean
-
configureClient
void configureClient(org.apache.cxf.jaxrs.client.Client client) Configure the CXF Client such as setting some parameters on the client conduit- Parameters:
client- the CXF client
-
configureServer
void configureServer(org.apache.cxf.endpoint.Server server) Configure the CXF Server such as setting some parameters on the server destination- Parameters:
server- the CXF server
-