Package com.sun.xml.ws.rx.message
Interface RxMessage
-
- All Known Subinterfaces:
ApplicationMessage
- All Known Implementing Classes:
ApplicationMessageBase
,JaxwsApplicationMessage
,JaxwsMessage
,RxMessageBase
public interface RxMessage
Protocol-independent abstraction over message/packet- Author:
- Marek Potociar (marek.potociar at sun.com)
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
RxMessage.State
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCorrelationId()
Returns correlation identifier by which this message can be referencedRxMessage.State
getState()
Returns serializable state of the messagebyte[]
toBytes()
Returnsbyte[]
representation of the message instance
-
-
-
Method Detail
-
getCorrelationId
String getCorrelationId()
Returns correlation identifier by which this message can be referenced- Returns:
- correlation identifier by which this message can be referenced
-
toBytes
byte[] toBytes()
Returnsbyte[]
representation of the message instance- Returns:
byte[]
representation of the message instance
-
getState
RxMessage.State getState()
Returns serializable state of the message- Returns:
- serializable state of the message
-
-