| org.apache.cxf.transport.Destination
Destination | public interface Destination extends Observable(Code) | | A Destination is a transport-level endpoint capable of receiving
unsolicited incoming messages from different peers.
|
getAddress | EndpointReferenceType getAddress()(Code) | | the reference associated with this Destination |
getBackChannel | Conduit getBackChannel(Message inMessage, Message partialResponse, EndpointReferenceType address) throws IOException(Code) | | Retreive a back-channel Conduit, which must be policy-compatible
with the current Message and associated Destination. For example
compatible Quality of Protection must be asserted on the back-channel.
This would generally only be an issue if the back-channel is decoupled.
Parameters: inMessage - the current message (null to indicate a disassociatedback-channel. Parameters: partialResponse - in the decoupled case, this is expected to be theoutbound Message to be sent over the in-built back-channel. Parameters: address - the backchannel address (null to indicate anonymous) a suitable Conduit |
shutdown | void shutdown()(Code) | | Shutdown the Destination, i.e. stop accepting incoming messages.
|
|
|