Searched refs:PAYLOAD (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DServiceMode.java47 * Service mode. <code>PAYLOAD</code> indicates that the <code>Provider</code> implementation
52 public Service.Mode value() default Service.Mode.PAYLOAD;
H A DService.java71 * access to entire protocol message, <code>PAYLOAD</code> to protocol message
74 public enum Mode { MESSAGE, PAYLOAD } enum constant in enum:Service.Mode
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/dispatch/
H A DSOAPSourceDispatch.java73 case PAYLOAD:
91 case PAYLOAD:
H A DDataSourceDispatch.java63 case PAYLOAD:
64 throw new IllegalArgumentException("DataSource use is not allowed in Service.Mode.PAYLOAD\n");
H A DJAXBDispatch.java80 case PAYLOAD:
H A DDispatchImpl.java98 * @param mode Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
114 * @param mode Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
233 return mode == Service.Mode.PAYLOAD;
248 throw new WebServiceException(DispatchMessages.INVALID_NULLARG_SOAP_MSGMODE(mode.name(), Service.Mode.PAYLOAD.toString()));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/
H A DProviderEndpointModel.java98 if (mode == Service.Mode.PAYLOAD && datatype!=Source.class) {
99 // Illegal to have PAYLOAD && SOAPMessage
100 // Illegal to have PAYLOAD && DataSource
102 "Illeagal combination - Mode.PAYLOAD and Provider<"+otherClass.getName()+">");
107 * Is it PAYLOAD or MESSAGE ??
110 * @return Service.Mode.PAYLOAD or Service.Mode.MESSAGE
114 return (mode == null) ? Service.Mode.PAYLOAD : mode.value();
H A DXMLProviderArgumentBuilder.java61 if (model.mode == Service.Mode.PAYLOAD) {
H A DSOAPProviderArgumentBuilder.java62 if (model.mode == Service.Mode.PAYLOAD) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/binding/
H A DBindingImpl.java69 protected javax.xml.ws.Service.Mode serviceMode = javax.xml.ws.Service.Mode.PAYLOAD;

Completed in 89 milliseconds