package org.jboss.axis.message;
import org.jboss.axis.AxisFault;
import org.jboss.axis.NotImplementedException;
import org.jboss.axis.encoding.DeserializationContext;
import org.jboss.logging.Logger;
import org.w3c.dom.Document;
import org.xml.sax.Attributes;
import javax.xml.soap.Name;
import javax.xml.soap.SOAPBody;
import javax.xml.soap.SOAPBodyElement;
import javax.xml.soap.SOAPException;
import javax.xml.soap.SOAPFault;
import java.util.Locale;
public class SOAPBodyImpl extends SOAPElementAxisImpl implements SOAPBody
{
private static Logger log = Logger.getLogger(SOAPBodyImpl.class.getName());
public SOAPBodyImpl(String namespace, String localPart)
{
super(namespace, localPart);
}
public SOAPBodyImpl(String namespace, String localPart, String prefix, Attributes attributes, DeserializationContext context) throws AxisFault
{
super(namespace, localPart, prefix, attributes, context);
}
public SOAPBodyElement addBodyElement(Name name) throws SOAPException
{
throw new NotImplementedException();
}
public SOAPBodyElement addDocument(Document doc) throws SOAPException
{
throw new NotImplementedException();
}
public SOAPFault addFault() throws SOAPException
{
throw new NotImplementedException();
}
public SOAPFault addFault(Name faultCode, String faultString) throws SOAPException
{
throw new NotImplementedException();
}
public SOAPFault addFault(Name faultCode, String faultString, Locale locale) throws SOAPException
{
throw new NotImplementedException();
}
public SOAPFault getFault()
{
throw new NotImplementedException();
}
public boolean hasFault()
{
throw new NotImplementedException();
}
}