Searched defs:unmarshaller (Results 51 - 61 of 61) sorted by relevance

123

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DHeader.java241 * Reads the header as a JAXB object by using the given unmarshaller.
243 public <T> T readAsJAXB(Unmarshaller unmarshaller) throws JAXBException; argument
246 * Reads the header as a JAXB object by using the given unmarshaller.
H A DMessage.java512 * Reads the payload as a JAXB object by using the given unmarshaller.
519 public abstract <T> T readPayloadAsJAXB(Unmarshaller unmarshaller) throws JAXBException; argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/jaxb/
H A DJAXBMessage.java249 public <T> T readPayloadAsJAXB(Unmarshaller unmarshaller) throws JAXBException { argument
250 JAXBResult out = new JAXBResult(unmarshaller);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/source/
H A DProtocolSourceMessage.java119 public <T> T readPayloadAsJAXB(Unmarshaller unmarshaller) throws JAXBException { argument
120 return (T)sm.readPayloadAsJAXB(unmarshaller);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/stream/
H A DPayloadStreamReaderMessage.java101 public <T> T readPayloadAsJAXB(Unmarshaller unmarshaller) throws JAXBException { argument
102 return (T) message.readPayloadAsJAXB(unmarshaller);
H A DStreamMessage.java230 public Object readPayloadAsJAXB(Unmarshaller unmarshaller) throws JAXBException { argument
234 // TODO: How can the unmarshaller process this as a fragment?
236 unmarshaller.setAttachmentUnmarshaller(new AttachmentUnmarshallerImpl(getAttachments()));
238 return unmarshaller.unmarshal(reader);
240 unmarshaller.setAttachmentUnmarshaller(null);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DSAXConnector.java26 package com.sun.xml.internal.bind.v2.runtime.unmarshaller;
H A DUnmarshallerImpl.java26 package com.sun.xml.internal.bind.v2.runtime.unmarshaller;
56 import com.sun.xml.internal.bind.unmarshaller.DOMScanner;
57 import com.sun.xml.internal.bind.unmarshaller.InfosetScanner;
58 import com.sun.xml.internal.bind.unmarshaller.Messages;
99 * The attachment unmarshaller used to support MTOM and swaRef.
142 XmlVisitor unmarshaller = coordinator;
146 unmarshaller = new ValidatingUnmarshaller(schema,unmarshaller);
149 unmarshaller = new MTOMDecorator(this,unmarshaller,attachmentUnmarshalle
[all...]
H A DUnmarshallingContext.java26 package com.sun.xml.internal.bind.v2.runtime.unmarshaller;
56 import com.sun.xml.internal.bind.unmarshaller.InfosetScanner;
106 * If non-null, this unmarshaller will unmarshal {@code JAXBElement<EXPECTEDTYPE>}
135 * If the unmarshaller is doing associative unmarshalling,
315 * Creates a new unmarshaller.
318 * Must be both non-null when the unmarshaller does the
495 // send the default value into the unmarshaller instead
586 * In the unmarshaller, we need to check the user-specified factory class.
599 * In the unmarshaller, we need to check the user-specified factory class.
635 * The thrown exception will be catched by the unmarshaller
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/xml/
H A DXMLMessage.java300 public <T> T readPayloadAsJAXB(Unmarshaller unmarshaller) throws JAXBException { argument
301 return (T)getMessage().readPayloadAsJAXB(unmarshaller);
422 public <T> T readPayloadAsJAXB(Unmarshaller unmarshaller) throws JAXBException { argument
423 return (T)getMessage().readPayloadAsJAXB(unmarshaller);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/saaj/
H A DSAAJMessage.java33 import com.sun.xml.internal.bind.unmarshaller.DOMScanner;
294 public <T> T readPayloadAsJAXB(Unmarshaller unmarshaller) throws JAXBException { argument
298 unmarshaller.setAttachmentUnmarshaller(new AttachmentUnmarshallerImpl(getAttachments()));
299 return (T) unmarshaller.unmarshal(payload);

Completed in 56 milliseconds

123