Interface CxfConfigurer
-
- All Known Implementing Classes:
ChainedCxfConfigurer,ChainedCxfConfigurer.NullCxfConfigurer,HostnameVerifierCxfConfigurer,SslCxfConfigurer
public interface CxfConfigurerA pluggable strategy for configuring the CXF by using java code
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconfigure(org.apache.cxf.frontend.AbstractWSDLBasedEndpointFactory factoryBean)Configure the CXF Server/Client factory beanvoidconfigureClient(org.apache.cxf.endpoint.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 Detail
-
configure
void configure(org.apache.cxf.frontend.AbstractWSDLBasedEndpointFactory factoryBean)
Configure the CXF Server/Client factory bean- Parameters:
factoryBean- the factory bean
-
configureClient
void configureClient(org.apache.cxf.endpoint.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
-
-