Apache CXF API

Uses of Interface
org.apache.cxf.transport.Conduit

Packages that use Conduit
org.apache.cxf.clustering   
org.apache.cxf.endpoint Client and Server related classes. 
org.apache.cxf.interceptor Core interceptor interfaces which form the basis for message processing chains in CXF. 
org.apache.cxf.message   
org.apache.cxf.transport Transport related classes. 
org.apache.cxf.transport.http   
org.apache.cxf.transport.http.policy   
org.apache.cxf.ws.addressing   
org.apache.cxf.ws.policy   
 

Uses of Conduit in org.apache.cxf.clustering
 

Methods in org.apache.cxf.clustering that return Conduit
 Conduit FailoverTargetSelector.selectConduit(Message message)
          Called when a Conduit is actually required.
 

Constructors in org.apache.cxf.clustering with parameters of type Conduit
FailoverTargetSelector(Conduit c)
          Constructor, allowing a specific conduit to override normal selection.
 

Uses of Conduit in org.apache.cxf.endpoint
 

Fields in org.apache.cxf.endpoint declared as Conduit
protected  Conduit AbstractConduitSelector.selectedConduit
           
 

Methods in org.apache.cxf.endpoint that return Conduit
 Conduit ClientImpl.getConduit()
           
 Conduit Client.getConduit()
          Get the Conduit that messages for this client will be sent on.
protected  Conduit AbstractConduitSelector.getSelectedConduit(Message message)
          Mechanics to actually get the Conduit from the ConduitInitiator if necessary.
 Conduit NullConduitSelector.selectConduit(Message message)
          Called when a Conduit is actually required.
 Conduit DeferredConduitSelector.selectConduit(Message message)
          Called when a Conduit is actually required.
 Conduit ConduitSelector.selectConduit(Message message)
          Called when a Conduit is actually required.
 Conduit UpfrontConduitSelector.selectConduit(Message message)
          Called when a Conduit is actually required.
 Conduit PreexistingConduitSelector.selectConduit(Message message)
          Called when a Conduit is actually required.
 

Constructors in org.apache.cxf.endpoint with parameters of type Conduit
AbstractConduitSelector(Conduit c)
          Constructor, allowing a specific conduit to override normal selection.
ClientImpl(Bus b, Endpoint e, Conduit c)
           
DeferredConduitSelector(Conduit c)
          Constructor, allowing a specific conduit to override normal selection.
PreexistingConduitSelector(Conduit c)
          Constructor.
PreexistingConduitSelector(Conduit c, Endpoint e)
          Constructor.
UpfrontConduitSelector(Conduit c)
          Constructor, allowing a specific conduit to override normal selection.
 

Uses of Conduit in org.apache.cxf.interceptor
 

Methods in org.apache.cxf.interceptor that return Conduit
protected static Conduit OutgoingChainInterceptor.getBackChannelConduit(Message message)
           
 

Uses of Conduit in org.apache.cxf.message
 

Methods in org.apache.cxf.message that return Conduit
 Conduit Exchange.getConduit(Message message)
           
 Conduit ExchangeImpl.getConduit(Message message)
           
 

Methods in org.apache.cxf.message with parameters of type Conduit
 void Exchange.setConduit(Conduit conduit)
           
 void ExchangeImpl.setConduit(Conduit c)
           
 

Uses of Conduit in org.apache.cxf.transport
 

Classes in org.apache.cxf.transport that implement Conduit
 class AbstractConduit
          Abstract base class factoring out common Conduit logic, allowing non-decoupled transports to be written without any regard for the decoupled back-channel or partial response logic.
protected  class AbstractDestination.AbstractBackChannelConduit
          Backchannel conduit.
 

Methods in org.apache.cxf.transport that return Conduit
 Conduit AbstractDestination.getBackChannel(Message inMessage, Message partialResponse, EndpointReferenceType address)
          Retreive a back-channel Conduit, which must be policy-compatible with the current Message and associated Destination.
 Conduit Destination.getBackChannel(Message inMessage, Message partialResponse, EndpointReferenceType address)
          Retreive a back-channel Conduit, which must be policy-compatible with the current Message and associated Destination.
 Conduit ConduitInitiator.getConduit(EndpointInfo targetInfo)
          Initiate an outbound Conduit.
 Conduit ConduitInitiator.getConduit(EndpointInfo localInfo, EndpointReferenceType target)
          Initiate an outbound Conduit.
protected abstract  Conduit AbstractDestination.getInbuiltBackChannel(Message inMessage)
           
 

Uses of Conduit in org.apache.cxf.transport.http
 

Classes in org.apache.cxf.transport.http that implement Conduit
 class AbstractHTTPDestination.BackChannelConduit
          Backchannel conduit.
 class HTTPConduit
          This Conduit handles the "http" and "https" transport protocols.
 

Methods in org.apache.cxf.transport.http that return Conduit
 Conduit AbstractHTTPTransportFactory.getConduit(EndpointInfo endpointInfo)
          This call creates a new HTTPConduit for the endpoint.
 Conduit AbstractHTTPTransportFactory.getConduit(EndpointInfo endpointInfo, EndpointReferenceType target)
          This call creates a new HTTP Conduit based on the EndpointInfo and EndpointReferenceType.
protected  Conduit AbstractHTTPDestination.getInbuiltBackChannel(Message inMessage)
           
 

Uses of Conduit in org.apache.cxf.transport.http.policy
 

Methods in org.apache.cxf.transport.http.policy with parameters of type Conduit
static HTTPClientPolicy PolicyUtils.getClient(PolicyEngine pe, EndpointInfo ei, Conduit c)
          Returns a HTTPClientPolicy that is compatible with the assertions included in the service and endpoint policy subjects, or null if there are no such assertions.
 

Uses of Conduit in org.apache.cxf.ws.addressing
 

Methods in org.apache.cxf.ws.addressing with parameters of type Conduit
static EndpointReferenceType WSAContextUtils.retrieveReplyTo(Conduit conduit, Message message)
          Retrieve ReplyTo EPR from the context.
static EndpointReferenceType WSAContextUtils.retrieveTo(Conduit conduit, Message message)
          Retrieve To EPR from the context.
 

Uses of Conduit in org.apache.cxf.ws.policy
 

Methods in org.apache.cxf.ws.policy with parameters of type Conduit
 EndpointPolicy PolicyEngine.getClientEndpointPolicy(EndpointInfo ei, Conduit conduit)
           
 EffectivePolicy PolicyEngine.getEffectiveClientRequestPolicy(EndpointInfo ei, BindingOperationInfo boi, Conduit c)
           
 


Apache CXF API

Apache CXF