Package com.bea.wli.sb.transports
Interface TransportReplySender
public interface TransportReplySender
This interface will be implemented by OSB transport/pipeline runtime to
give the inbound transport endpoint access to inbound response parameters.
This happens when the inbound endpoint is notified by the transport subsystem
that a response is ready to be sent back. OSB transport/pipeline runtime will call
InboundTransportMessageContextExtension.setReplySender(TransportReplySender)
and pass an instance of TransportReplySender object, which the inbound transport
endpoint can use to get the response meta data, payload, etc.-
Method Summary
Modifier and TypeMethodDescriptionReturns the meta data, such as transport headers, for inbound responseReturns the source for the payload of the inbound response messageReturns a transformer that is message flow (pipeline) state aware and can be used for such stateful transformations.
-
Method Details
-
getMetaData
Returns the meta data, such as transport headers, for inbound response- Returns:
- inbound response meta data
- Throws:
TransportException
- when an error occurs
-
getPayload
Returns the source for the payload of the inbound response message- Returns:
- the response payload
- Throws:
TransportException
- when an error occurs
-
getTransformer
Returns a transformer that is message flow (pipeline) state aware and can be used for such stateful transformations. One such example is transromation fromXmlObjectSource
toJavaXmlSource
- Returns:
- stateful transformer
- Throws:
TransportException
- when an error occurs
-