Package internal.org.jvnet.staxex
Interface StAxSOAPBody.Payload
-
- Enclosing interface:
- StAxSOAPBody
public static interface StAxSOAPBody.PayloadThe StAxSOAPBody represents the StAX source of SOAPBody payload.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetPayloadAttributeValue(String localName)Retrieve payload attribute value without materializing its contentsStringgetPayloadAttributeValue(QName qName)Retrieve payload attribute value without materializing its contentsQNamegetPayloadQName()Retrieve payload qname without materializing its contentsvoidmaterialize()XMLStreamReaderreadPayload()voidwritePayloadTo(XMLStreamWriter writer)
-
-
-
Method Detail
-
getPayloadQName
QName getPayloadQName()
Retrieve payload qname without materializing its contents- Returns:
-
readPayload
XMLStreamReader readPayload() throws XMLStreamException
- Throws:
XMLStreamException
-
writePayloadTo
void writePayloadTo(XMLStreamWriter writer) throws XMLStreamException
- Throws:
XMLStreamException
-
getPayloadAttributeValue
String getPayloadAttributeValue(String localName) throws XMLStreamException
Retrieve payload attribute value without materializing its contents- Parameters:
localName-- Returns:
- Throws:
XMLStreamException
-
getPayloadAttributeValue
String getPayloadAttributeValue(QName qName) throws XMLStreamException
Retrieve payload attribute value without materializing its contents- Parameters:
qName-- Returns:
- Throws:
XMLStreamException
-
materialize
void materialize() throws XMLStreamException- Throws:
XMLStreamException
-
-