1 16 package org.apache.wsdl.impl; 17 18 import org.apache.wsdl.WSDLFaultReference; 19 20 import javax.xml.namespace.QName ; 21 22 25 public class WSDLFaultReferenceImpl extends ComponentImpl 26 implements WSDLFaultReference { 27 28 29 30 33 private QName ref; 34 35 36 39 private String messageLabel; 40 41 44 private String direction; 45 46 47 public WSDLFaultReferenceImpl(){ 48 49 } 50 55 public String getDirection() { 56 return direction; 57 } 58 59 64 public void setDirection(String direction) { 65 this.direction = direction; 66 } 67 68 73 public String getMessageLabel() { 74 return messageLabel; 75 } 76 77 82 public void setMessageLabel(String messageLabel) { 83 this.messageLabel = messageLabel; 84 } 85 86 91 public QName getRef() { 92 return ref; 93 } 94 95 100 public void setRef(QName ref) { 101 this.ref = ref; 102 } 103 } 104 | Popular Tags |