Package com.bea.wli.sb.transports
Interface TransportSender
- All Known Subinterfaces:
NoServiceTransportSender
,ServiceTransportSender
public interface TransportSender
This interface needs to be implemented by those clients of TransportManager
that wish to make outbound requests
-
Method Summary
Modifier and TypeMethodDescriptionImportant note: the transport provider is free to access the outbound payload source only within the scope ofTransportProvider.sendMessageAsync(TransportSender, TransportSendListener, TransportOptions)
call.
-
Method Details
-
getMetaData
- Returns:
- meta data for outbound request
- Throws:
TransportException
-
getPayload
Important note: the transport provider is free to access the outbound payload source only within the scope ofTransportProvider.sendMessageAsync(TransportSender, TransportSendListener, TransportOptions)
call. Any access of payload source after sendMessageAsync() returns can lead to unpredictable results and is generally unsafe.- Returns:
- the source for the payload of the outbound message
- Throws:
TransportException
-
getCredentialCallback
CredentialCallback getCredentialCallback()- Returns:
- a callback object which the runtime can call to retrieve the username/password or private-key/certificate credential required for outbound authentication
-
getTransformer
- Returns:
- the transformer that the outbound transport can use for
transformations of payload sources to desired type. This transformer
may perform all transformations done by
TransportManager.getTransformer()
as well as those transformations that are aware of pipeline state (e.g. XmlObjectSource -> JavaObjectSource) - Throws:
TransportException
-