1 16 package org.jboss.axis.message; 17 18 20 import org.jboss.axis.NotImplementedException; 21 import org.jboss.logging.Logger; 22 23 import javax.xml.soap.Name ; 24 import javax.xml.soap.SOAPBody ; 25 import javax.xml.soap.SOAPElement ; 26 import javax.xml.soap.SOAPEnvelope ; 27 import javax.xml.soap.SOAPException ; 28 import javax.xml.soap.SOAPHeader ; 29 30 38 public class SOAPEnvelopeImpl extends SOAPElementAxisImpl implements SOAPEnvelope 39 { 40 private static Logger log = Logger.getLogger(SOAPEnvelopeImpl.class.getName()); 41 42 public SOAPEnvelopeImpl(String localPart, String prefix, String uri) 43 { 44 super(localPart, prefix, uri); 45 } 46 47 public SOAPBody addBody() throws SOAPException 48 { 49 throw new NotImplementedException(); 50 } 51 52 public SOAPHeader addHeader() throws SOAPException 53 { 54 throw new NotImplementedException(); 55 } 56 57 public Name createName(String localName) throws SOAPException 58 { 59 throw new NotImplementedException(); 60 } 61 62 public Name createName(String localName, String prefix, String uri) throws SOAPException 63 { 64 throw new NotImplementedException(); 65 } 66 67 public SOAPBody getBody() throws SOAPException 68 { 69 throw new NotImplementedException(); 70 } 71 72 public SOAPHeader getHeader() throws SOAPException 73 { 74 throw new NotImplementedException(); 75 } 76 77 80 public SOAPElement addTextNode(String s) throws SOAPException 81 { 82 throw new SOAPException ("Cannot add Text node to SOAPEnvelope"); 83 } 84 } 85 | Popular Tags |