Class DefaultHTTPConduitFactoryWrapper
- java.lang.Object
-
- org.jboss.wsf.stack.cxf.client.configuration.AbstractHTTPConduitFactoryWrapper
-
- org.jboss.wsf.stack.cxf.client.configuration.DefaultHTTPConduitFactoryWrapper
-
- All Implemented Interfaces:
org.apache.cxf.transport.http.HTTPConduitFactory
public final class DefaultHTTPConduitFactoryWrapper extends AbstractHTTPConduitFactoryWrapper
The default wrapper of HTTPConduitFactory, which gets default configuration values from a map. The configuration map can also be populated by system properties.- Since:
- 1-Apr-2015
- Author:
- alessio.soldano@jboss.com
-
-
Constructor Summary
Constructors Constructor Description DefaultHTTPConduitFactoryWrapper(Map<String,Object> configuration, boolean useSystemDefault, org.apache.cxf.transport.http.HTTPConduitFactory delegate)DefaultHTTPConduitFactoryWrapper(org.apache.cxf.transport.http.HTTPConduitFactory delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidconfigureConduit(org.apache.cxf.transport.http.HTTPConduit conduit)Configures the specified HTTPConduit instance with default valuesprotected org.apache.cxf.transport.http.HTTPConduitcreateNewConduit(org.apache.cxf.transport.http.HTTPTransportFactory f, Bus b, EndpointInfo localInfo, EndpointReferenceType target)Creates a new HTTPConduit instance; this is used internally when no delegate is available for getting a HTTPConduit instance to configurestatic voidinstall(Bus bus)-
Methods inherited from class org.jboss.wsf.stack.cxf.client.configuration.AbstractHTTPConduitFactoryWrapper
createConduit, getDelegate
-
-
-
-
Method Detail
-
createNewConduit
protected org.apache.cxf.transport.http.HTTPConduit createNewConduit(org.apache.cxf.transport.http.HTTPTransportFactory f, Bus b, EndpointInfo localInfo, EndpointReferenceType target) throws IOExceptionDescription copied from class:AbstractHTTPConduitFactoryWrapperCreates a new HTTPConduit instance; this is used internally when no delegate is available for getting a HTTPConduit instance to configure- Specified by:
createNewConduitin classAbstractHTTPConduitFactoryWrapper- Parameters:
f- The current HTTPTransportFactoryb- The current BuslocalInfo- The current EndpointInfotarget- The EndpointReferenceType- Returns:
- A new HTTPConduit instance
- Throws:
IOException
-
configureConduit
protected void configureConduit(org.apache.cxf.transport.http.HTTPConduit conduit)
Description copied from class:AbstractHTTPConduitFactoryWrapperConfigures the specified HTTPConduit instance with default values- Specified by:
configureConduitin classAbstractHTTPConduitFactoryWrapper- Parameters:
conduit- The HTTPConduit instance to be configured
-
install
public static void install(Bus bus)
-
-