1 17 package org.apache.servicemix.jms.wsdl; 18 19 import java.io.Serializable ; 20 21 import javax.wsdl.extensions.ExtensibilityElement; 22 import javax.xml.namespace.QName ; 23 24 public class JmsBinding implements ExtensibilityElement, Serializable { 25 26 29 private static final long serialVersionUID = 8700457966223002286L; 30 31 protected Boolean required; 32 protected QName elementType; 33 34 37 public QName getElementType() { 38 return elementType; 39 } 40 43 public void setElementType(QName elementType) { 44 this.elementType = elementType; 45 } 46 49 public Boolean getRequired() { 50 return required; 51 } 52 55 public void setRequired(Boolean required) { 56 this.required = required; 57 } 58 59 } 60 | Popular Tags |