1 16 package org.apache.wsdl.impl; 17 18 import org.apache.wsdl.WSDLBindingFault; 19 20 import javax.xml.namespace.QName ; 21 22 25 public class WSDLBindingFaultImpl extends ExtensibleComponentImpl 26 implements WSDLBindingFault { 27 30 private QName ref; 31 32 37 public QName getRef() { 38 return ref; 39 } 40 41 46 public void setRef(QName ref) { 47 this.ref = ref; 48 } 49 } 50 | Popular Tags |