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 import javax.xml.namespace.QName ; 36 37 40 @XmlAccessorType(XmlAccessType.FIELD) 41 @XmlRootElement(name="port", namespace="http://schemas.xmlsoap.org/wsdl/") 42 public class WSDLPort extends WSDLNamedExtensibleDocumented { 43 @XmlAttribute(name="binding") 44 private QName _binding; 45 46 49 public void setBinding(QName binding) 50 { 51 _binding = binding; 52 } 53 54 public QName getBinding() 55 { 56 return _binding; 57 } 58 } 59 | Popular Tags |