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="binding", 41 namespace="http://schemas.xmlsoap.org/wsdl/soap/") 42 public class SOAPBinding extends WSDLExtensibilityElement { 43 @XmlAttribute(required=true, name="transport") 44 private String _transport; 45 46 @XmlAttribute(name="style") 47 private SOAPStyleChoice _style; 48 49 52 public void setTransport(String transport) 53 { 54 _transport = transport; 55 } 56 57 public String getTransport() 58 { 59 return _transport; 60 } 61 62 public void setStyle(SOAPStyleChoice style) 63 { 64 _style = style; 65 } 66 67 public SOAPStyleChoice getStyle() 68 { 69 return _style; 70 } 71 } 72 | Popular Tags |