Package org.apache.cxf.transport
Interface Destination
- All Superinterfaces:
- Observable
- All Known Subinterfaces:
- MultiplexDestination
- All Known Implementing Classes:
- AbstractDestination,- AbstractMultiplexDestination
A Destination is a transport-level endpoint capable of receiving
 unsolicited incoming messages from different peers.
- 
Method SummaryModifier and TypeMethodDescriptionorg.apache.cxf.ws.addressing.EndpointReferenceTypegetBackChannel(Message inMessage) Retreive a back-channel Conduit, which must be policy-compatible with the current Message and associated Destination.Retrieves the message observer for incoming messagesvoidshutdown()Shutdown the Destination, i.e. stop accepting incoming messages.Methods inherited from interface org.apache.cxf.transport.ObservablesetMessageObserver
- 
Method Details- 
getAddressorg.apache.cxf.ws.addressing.EndpointReferenceType getAddress()- Returns:
- the reference associated with this Destination
 
- 
getBackChannelRetreive 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.- Parameters:
- inMessage- the current message
- Returns:
- a suitable Conduit
- Throws:
- IOException
 
- 
shutdownvoid shutdown()Shutdown the Destination, i.e. stop accepting incoming messages.
- 
getMessageObserverMessageObserver getMessageObserver()Description copied from interface:ObservableRetrieves the message observer for incoming messages- Specified by:
- getMessageObserverin interface- Observable
- Returns:
- the MessageObserver for incoming messages
 
 
-