1 16 package org.jboss.axis.message; 17 18 20 import org.jboss.axis.AxisFault; 21 import org.jboss.axis.NotImplementedException; 22 import org.jboss.axis.encoding.DeserializationContext; 23 import org.jboss.logging.Logger; 24 import org.w3c.dom.Document ; 25 import org.xml.sax.Attributes ; 26 27 import javax.xml.soap.Name ; 28 import javax.xml.soap.SOAPBody ; 29 import javax.xml.soap.SOAPBodyElement ; 30 import javax.xml.soap.SOAPException ; 31 import javax.xml.soap.SOAPFault ; 32 import java.util.Locale ; 33 34 42 public class SOAPBodyImpl extends SOAPElementAxisImpl implements SOAPBody 43 { 44 45 private static Logger log = Logger.getLogger(SOAPBodyImpl.class.getName()); 46 47 public SOAPBodyImpl(String namespace, String localPart) 48 { 49 super(namespace, localPart); 50 } 51 52 public SOAPBodyImpl(String namespace, String localPart, String prefix, Attributes attributes, DeserializationContext context) throws AxisFault 53 { 54 super(namespace, localPart, prefix, attributes, context); 55 } 56 57 public SOAPBodyElement addBodyElement(Name name) throws SOAPException 58 { 59 throw new NotImplementedException(); 60 } 61 62 public SOAPBodyElement addDocument(Document doc) throws SOAPException 63 { 64 throw new NotImplementedException(); 65 } 66 67 public SOAPFault addFault() throws SOAPException 68 { 69 throw new NotImplementedException(); 70 } 71 72 public SOAPFault addFault(Name faultCode, String faultString) throws SOAPException 73 { 74 throw new NotImplementedException(); 75 } 76 77 public SOAPFault addFault(Name faultCode, String faultString, Locale locale) throws SOAPException 78 { 79 throw new NotImplementedException(); 80 } 81 82 public SOAPFault getFault() 83 { 84 throw new NotImplementedException(); 85 } 86 87 public boolean hasFault() 88 { 89 throw new NotImplementedException(); 90 } 91 92 } 93 | Popular Tags |