| java.lang.Object com.sun.xml.ws.api.message.Message com.sun.xml.ws.message.AbstractMessageImpl
All known Subclasses: com.sun.xml.ws.message.stream.StreamMessage, com.sun.xml.ws.message.EmptyMessageImpl, com.sun.xml.ws.message.jaxb.JAXBMessage, com.sun.xml.ws.message.stream.PayloadStreamReaderMessage, com.sun.xml.ws.message.DOMMessage,
AbstractMessageImpl | abstract public class AbstractMessageImpl extends Message (Code) | | Partial
Message implementation.
This class implements some of the
Message methods.
The idea is that those implementations may be non-optimal but
it may save effort in implementing
Message and reduce
the code size.
Message classes that are used more commonly should
examine carefully which method can be implemented faster,
and override them accordingly.
author: Kohsuke Kawaguchi |
soapVersion | final protected SOAPVersion soapVersion(Code) | | SOAP version of this message.
Used to implement some of the methods, but nothing more than that.
So if you aren't using those methods that use this field,
this can be null.
|
readEnvelopeAsSource | public Source readEnvelopeAsSource()(Code) | | |
writePayloadTo | abstract protected void writePayloadTo(ContentHandler contentHandler, ErrorHandler errorHandler, boolean fragment) throws SAXException(Code) | | Writes the payload to SAX events.
Parameters: fragment - if true, this method will fire SAX events without start/endDocument events,suitable for embedding this into a bigger SAX event sequence.if false, this method generaets a completely SAX event sequence on its own. |
|
|