package org.jboss.axis.message;
import org.jboss.axis.NotImplementedException;
import org.jboss.logging.Logger;
import javax.xml.soap.Name;
import javax.xml.soap.SOAPBody;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
import javax.xml.soap.SOAPHeader;
public class SOAPEnvelopeImpl extends SOAPElementAxisImpl implements SOAPEnvelope
{
private static Logger log = Logger.getLogger(SOAPEnvelopeImpl.class.getName());
public SOAPEnvelopeImpl(String localPart, String prefix, String uri)
{
super(localPart, prefix, uri);
}
public SOAPBody addBody() throws SOAPException
{
throw new NotImplementedException();
}
public SOAPHeader addHeader() throws SOAPException
{
throw new NotImplementedException();
}
public Name createName(String localName) throws SOAPException
{
throw new NotImplementedException();
}
public Name createName(String localName, String prefix, String uri) throws SOAPException
{
throw new NotImplementedException();
}
public SOAPBody getBody() throws SOAPException
{
throw new NotImplementedException();
}
public SOAPHeader getHeader() throws SOAPException
{
throw new NotImplementedException();
}
public SOAPElement addTextNode(String s) throws SOAPException
{
throw new SOAPException("Cannot add Text node to SOAPEnvelope");
}
}