| org.apache.cxf.endpoint.ConduitSelector
All known Subclasses: org.apache.cxf.endpoint.NullConduitSelector, org.apache.cxf.endpoint.PreexistingConduitSelector, org.apache.cxf.endpoint.AbstractConduitSelector,
ConduitSelector | public interface ConduitSelector (Code) | | Strategy for retreival of a Conduit to mediate an outbound message.
A specific instance implementing a particular strategy may be injected
into the Client via config.
|
complete | void complete(Exchange exchange)(Code) | | Called on completion of the MEP for which the Conduit was required.
This is the point at which a one-shot strategy would dispose of
the Conduit.
Parameters: exchange - represents the completed MEP |
prepare | void prepare(Message message)(Code) | | Called prior to the interceptor chain being traversed.
This is the point at which an eager strategy would retrieve
a Conduit.
Parameters: message - the current Message |
selectConduit | Conduit selectConduit(Message message)(Code) | | Called when a Conduit is actually required.
This is the point at which a lazy strategy would retrieve
a Conduit.
Parameters: message - the Conduit to use for mediation of the message |
setEndpoint | void setEndpoint(Endpoint endpoint)(Code) | | Parameters: endpoint - the endpoint to encapsulate |
|
|