Searched refs:payload (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DLogicalMessage.java33 * provide access to the payload of the message.
39 /** Gets the message payload as an XML source, may be called
42 * message payload.
47 * payload in-place, there is no need to susequently call
49 * read access to the message payload.
51 * @return The contained message payload; returns <code>null</code> if no
52 * payload is present in this message.
56 /** Sets the message payload
58 * @param payload message payload
64 setPayload(Source payload) argument
91 setPayload(Object payload, JAXBContext context) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DDOMMessage.java52 * {@link Message} backed by a DOM {@link Element} that represents the payload.
58 private final Element payload; field in class:DOMMessage
60 public DOMMessage(SOAPVersion ver, Element payload) { argument
61 this(ver,null,payload);
64 public DOMMessage(SOAPVersion ver, HeaderList headers, Element payload) { argument
65 this(ver,headers,payload,null);
68 public DOMMessage(SOAPVersion ver, HeaderList headers, Element payload, AttachmentSet attachments) { argument
71 this.payload = payload;
73 assert payload!
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DMessages.java101 * The JAXB object that represents the payload. must not be null. This object
137 * Creates a {@link Message} using {@link Source} as payload.
139 * @param payload
140 * Source payload is {@link Message}'s payload
148 public static Message createUsingPayload(Source payload, SOAPVersion ver) { argument
149 if (payload instanceof DOMSource) {
150 if (((DOMSource)payload).getNode() == null) {
153 } else if (payload instanceof StreamSource) {
154 StreamSource ss = (StreamSource)payload;
179 createUsingPayload(XMLStreamReader payload, SOAPVersion ver) argument
194 createUsingPayload(Element payload, SOAPVersion ver) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DLogicalMessageImpl.java63 * is used to retrieve the payload of the request or response.
77 // don't create extract payload until Users wants it.
84 Source payload = packet.getMessage().copy().readPayloadAsSource();
85 if (payload instanceof DOMSource) {
86 lm = createLogicalMessageImpl(payload);
88 return payload;
94 public void setPayload(Source payload) { argument
95 lm = createLogicalMessageImpl(payload);
98 private ImmutableLM createLogicalMessageImpl(Source payload) { argument
99 if (payload
130 setPayload(Object payload, JAXBContext context) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/source/
H A DPayloadSourceMessage.java41 * {@link Message} backed by {@link Source} as payload
48 @NotNull Source payload, @NotNull AttachmentSet attSet,
51 super(headers, SourceReaderFactory.createSourceReader(payload, true),
47 PayloadSourceMessage(@ullable HeaderList headers, @NotNull Source payload, @NotNull AttachmentSet attSet, @NotNull SOAPVersion soapVersion) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/saaj/
H A DSAAJMessage.java92 private Element payload; field in class:SAAJMessage
153 //we treat payload as the first body part
154 payload = bodyParts.size() > 0 ? bodyParts.get(0) : null;
155 // hope this is correct. Caching the localname and namespace of the payload should be fine
156 // but what about if a Handler replaces the payload with something else? Weel, may be it
158 if (payload != null) {
159 payloadLocalName = payload.getLocalName();
160 payloadNamespace = payload.getNamespaceURI();
291 return (payload != null) ? new DOMSource(payload)
[all...]

Completed in 3194 milliseconds