Searched defs:encodingStyle (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/document/soap/
H A DBodyType.java41 public com.sun.xml.internal.ws.wsdl.writer.document.soap.BodyType encodingStyle(String value); method in interface:BodyType
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/document/soap12/
H A DBodyType.java41 public com.sun.xml.internal.ws.wsdl.writer.document.soap12.BodyType encodingStyle(String value); method in interface:BodyType
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_2/
H A DDetail1_2Impl.java70 * Override setEncodingStyle of ElementImpl to restrict adding encodingStyle
73 public void setEncodingStyle(String encodingStyle) throws SOAPException { argument
74 log.severe("SAAJ0403.ver1_2.no.encodingStyle.in.detail");
80 if (name.getLocalName().equals("encodingStyle")
89 if (name.getLocalPart().equals("encodingStyle")
H A DFaultElement1_2Impl.java77 public void setEncodingStyle(String encodingStyle) throws SOAPException { argument
78 log.severe("SAAJ0408.ver1_2.no.encodingStyle.in.fault.child");
79 throw new SOAPExceptionImpl("encodingStyle attribute cannot appear on a Fault child element");
84 if (name.getLocalName().equals("encodingStyle")
93 if (name.getLocalPart().equals("encodingStyle")
H A DBody1_2Impl.java85 * Override setEncodingStyle of ElementImpl to restrict adding encodingStyle
88 public void setEncodingStyle(String encodingStyle) throws SOAPException { argument
90 throw new SOAPExceptionImpl("encodingStyle attribute cannot appear on Body");
94 * Override addAttribute of ElementImpl to restrict adding encodingStyle
99 if (name.getLocalName().equals("encodingStyle")
109 if (name.getLocalPart().equals("encodingStyle")
H A DEnvelope1_2Impl.java75 * Override setEncodingStyle of ElementImpl to restrict adding encodingStyle
78 public void setEncodingStyle(String encodingStyle) throws SOAPException { argument
79 log.severe("SAAJ0404.ver1_2.no.encodingStyle.in.envelope");
80 throw new SOAPExceptionImpl("encodingStyle attribute cannot appear on Envelope");
84 * Override addAttribute of ElementImpl to restrict adding encodingStyle
89 if (name.getLocalName().equals("encodingStyle")
98 if (name.getLocalPart().equals("encodingStyle")
H A DHeader1_2Impl.java135 public void setEncodingStyle(String encodingStyle) throws SOAPException { argument
137 throw new SOAPExceptionImpl("encodingStyle attribute cannot appear on Header");
142 if (name.getLocalName().equals("encodingStyle")
152 if (name.getLocalPart().equals("encodingStyle")
H A DFault1_2Impl.java475 * Override setEncodingStyle of ElementImpl to restrict adding encodingStyle
478 public void setEncodingStyle(String encodingStyle) throws SOAPException { argument
479 log.severe("SAAJ0407.ver1_2.no.encodingStyle.in.fault");
480 throw new SOAPExceptionImpl("encodingStyle attribute cannot appear on Fault");
485 if (name.getLocalName().equals("encodingStyle")
494 if (name.getLocalPart().equals("encodingStyle")
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSOAPElement.java507 * @param encodingStyle a <code>String</code> giving the encoding style
511 * @exception SOAPException if setting the encodingStyle is invalid for this SOAPElement.
514 public void setEncodingStyle(String encodingStyle) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DElementImpl.java349 // preserve the encodingStyle attr as it may get lost in the import
350 String encodingStyle = element.getEncodingStyle();
355 if (encodingStyle != null)
356 importedElement.setEncodingStyle(encodingStyle);
799 public void setEncodingStyle(String encodingStyle) throws SOAPException { argument
800 if (!"".equals(encodingStyle)) {
802 JaxmURI uri = new JaxmURI(encodingStyle);
807 new String[] { encodingStyle });
809 "Encoding style (" + encodingStyle + ") should be a valid URI");
812 encodingStyleAttribute.setValue(encodingStyle);
[all...]

Completed in 41 milliseconds