Searched refs:soapBinding (Results 1 - 7 of 7) sorted by relevance

/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DWebServiceVisitor.java224 SOAPBinding soapBinding = element.getAnnotation(SOAPBinding.class);
225 if (soapBinding != null) {
226 pushedSoapBinding = pushSoapBinding(soapBinding, element, element);
239 protected boolean pushSoapBinding(SOAPBinding soapBinding, Element bindingElement, TypeElement classElement) { argument
241 if (!sameStyle(soapBinding.style(), soapStyle)) {
247 if (soapBinding.style().equals(SOAPBinding.Style.RPC)) {
250 if (soapBinding.parameterStyle().equals(ParameterStyle.BARE)) {
256 if (wrapped != soapBinding.parameterStyle().equals(ParameterStyle.WRAPPED)) {
257 wrapped = soapBinding.parameterStyle().equals(ParameterStyle.WRAPPED);
261 if (soapBinding
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/wsdl/writer/document/
H A DBinding.java54 public SOAPBinding soapBinding(); method in interface:Binding
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DPseudoSchemaBuilder.java157 SOAPBinding soapBinding =
161 if (soapBinding == null) {
162 soapBinding =
165 if(soapBinding == null)
H A DWSDLModeler.java313 SOAPBinding soapBinding =
316 if (soapBinding == null) {
317 soapBinding =
319 if (soapBinding == null) {
338 if (soapBinding != null && (soapBinding.getTransport() == null
339 || (!soapBinding.getTransport().equals(
340 SOAPConstants.URI_SOAP_TRANSPORT_HTTP) && !soapBinding.getTransport().equals(
354 if (soapBinding != null && !validateWSDLBindingStyle(binding)) {
362 if(soapBinding !
[all...]
H A DWSDLModelerBase.java368 if ((info.soapBinding.isDocument()
370 || (info.soapBinding.isRPC()
761 SOAPBinding soapBinding,
769 this.soapBinding = soapBinding;
779 public SOAPBinding soapBinding; field in class:WSDLModelerBase.ProcessSOAPOperationInfo
756 ProcessSOAPOperationInfo( Port modelPort, com.sun.tools.internal.ws.wsdl.document.Port port, com.sun.tools.internal.ws.wsdl.document.Operation portTypeOperation, BindingOperation bindingOperation, SOAPBinding soapBinding, WSDLDocument document, boolean hasOverloadedOperations, Map headers) argument
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/wsdl/writer/
H A DWSDLGenerator.java775 com.sun.xml.internal.ws.wsdl.writer.document.soap12.SOAPBinding soapBinding = newBinding.soap12Binding();
776 soapBinding.transport(this.binding.getBindingId().getTransport());
778 soapBinding.style(DOCUMENT);
780 soapBinding.style(RPC);
782 com.sun.xml.internal.ws.wsdl.writer.document.soap.SOAPBinding soapBinding = newBinding.soapBinding();
783 soapBinding.transport(this.binding.getBindingId().getTransport());
785 soapBinding.style(DOCUMENT);
787 soapBinding.style(RPC);
806 SOAPBinding soapBinding
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/model/
H A DRuntimeModeler.java434 SOAPBinding soapBinding = getAnnotation(clazz, SOAPBinding.class);
435 if (soapBinding != null) {
436 if (soapBinding.style() == SOAPBinding.Style.RPC && soapBinding.parameterStyle() == SOAPBinding.ParameterStyle.BARE) {
438 soapBinding, clazz);
441 isWrapped = soapBinding.parameterStyle()== WRAPPED;
443 defaultBinding = createBinding(soapBinding);
537 * @param soapBinding the <code>javax.jws.soap.SOAPBinding</code> to model
538 * @return returns the runtime model SOAPBinding corresponding to <code>soapBinding</code>
540 protected SOAPBindingImpl createBinding(SOAPBinding soapBinding) { argument
[all...]

Completed in 166 milliseconds