1 28 29 package com.caucho.soap.wsdl; 30 31 import javax.xml.bind.annotation.XmlAccessType; 32 import javax.xml.bind.annotation.XmlAccessorType; 33 import javax.xml.bind.annotation.XmlAttribute; 34 import javax.xml.bind.annotation.XmlRootElement; 35 36 39 @XmlAccessorType(XmlAccessType.FIELD) 40 @XmlRootElement(name="import", namespace="http://schemas.xmlsoap.org/wsdl/") 41 public class WSDLImport extends WSDLExtensibleAttributeDocumented 42 implements WSDLDefinition { 43 @XmlAttribute(required = true, name="location") 44 private String _location; 45 46 @XmlAttribute(required = true, name="namespace") 47 private String _namespace; 48 49 52 public void setNamespace(String namespace) 53 { 54 _namespace = namespace; 55 } 56 57 60 public String getNamespace() 61 { 62 return _namespace; 63 } 64 65 68 public void setLocation(String location) 69 { 70 _location = location; 71 } 72 73 76 public String getLocation() 77 { 78 return _location; 79 } 80 } 81 | Popular Tags |