1 16 17 package org.apache.wsdl.extensions.impl; 18 19 import org.apache.wsdl.extensions.ExtensionConstants; 20 import org.apache.wsdl.extensions.SOAPBinding; 21 import org.apache.wsdl.impl.WSDLExtensibilityElementImpl; 22 23 27 public class SOAPBindingImpl extends WSDLExtensibilityElementImpl implements ExtensionConstants, SOAPBinding { 28 29 protected String style; 30 protected String transportURI; 31 32 public SOAPBindingImpl(){ 33 this.type = SOAP_BINDING; 34 } 35 36 37 public String getStyle() { 38 return style; 39 } 40 public void setStyle(String style) { 41 this.style = style; 42 } 43 public String getTransportURI() { 44 return transportURI; 45 } 46 public void setTransportURI(String transportURI) { 47 this.transportURI = transportURI; 48 } 49 } 50 | Popular Tags |