1 package org.apache.axis2.soap.impl.llom; 2 3 import org.apache.axis2.om.OMXMLParserWrapper; 4 import org.apache.axis2.soap.SOAPFault; 5 import org.apache.axis2.soap.SOAPFaultNode; 6 import org.apache.axis2.soap.impl.llom.soap12.SOAP12Constants; 7 8 25 26 public abstract class SOAPFaultNodeImpl extends SOAPElement implements SOAPFaultNode{ 27 28 public SOAPFaultNodeImpl(SOAPFault parent) throws SOAPProcessingException { 29 super(parent, SOAP12Constants.SOAP_FAULT_NODE_LOCAL_NAME, true); 30 } 31 32 public SOAPFaultNodeImpl(SOAPFault parent, OMXMLParserWrapper builder) { 33 super(parent, SOAP12Constants.SOAP_FAULT_NODE_LOCAL_NAME, builder); 34 } 35 36 public void setNodeValue(String uri) { 37 this.setText(uri); 38 } 39 40 public String getNodeValue() { 41 return this.getText(); 42 } 43 } 44 | Popular Tags |