java.lang.Object
com.sun.xml.ws.api.message.stream.XMLStreamReaderMessage
Low level representation of an XML or SOAP message as an
XMLStreamReader
.-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal AttachmentSet
The attachments of this message (attachments live outside a message.)final XMLStreamReader
The message represented as anXMLStreamReader
.final Packet
The properties of the message. -
Constructor Summary
ConstructorsConstructorDescriptionXMLStreamReaderMessage
(Packet properties, AttachmentSet attachments, XMLStreamReader msg) Create a new message.XMLStreamReaderMessage
(Packet properties, XMLStreamReader msg) Create a new message. -
Method Summary
-
Field Details
-
msg
The message represented as anXMLStreamReader
. -
properties
The properties of the message. -
attachments
The attachments of this message (attachments live outside a message.)
-
-
Constructor Details
-
XMLStreamReaderMessage
Create a new message.- Parameters:
properties
- the properties of the message.msg
- always a non-null unconsumedXMLStreamReader
that represents a request.
-
XMLStreamReaderMessage
Create a new message.- Parameters:
properties
- the properties of the message.attachments
- the attachments of the message.msg
- always a non-null unconsumedXMLStreamReader
that represents a request.
-