1 16 17 package org.apache.wsdl.extensions.impl; 18 19 import org.apache.wsdl.extensions.ExtensionConstants; 20 import org.apache.wsdl.extensions.SOAPAddress; 21 import org.apache.wsdl.impl.WSDLExtensibilityElementImpl; 22 23 29 public class SOAPAddressImpl extends WSDLExtensibilityElementImpl implements ExtensionConstants, SOAPAddress{ 30 33 private String locationURI; 34 35 36 public SOAPAddressImpl(){ 37 type = SOAP_ADDRESS; 38 } 39 40 41 44 public String getLocationURI() { 45 return locationURI; 46 } 47 48 51 public void setLocationURI(String locationURI) { 52 this.locationURI = locationURI; 53 } 54 } 55 | Popular Tags |