1 55 package org.jboss.axis.message; 56 57 import org.jboss.axis.AxisFault; 58 import org.jboss.axis.encoding.DeserializationContext; 59 import org.jboss.logging.Logger; 60 import org.w3c.dom.Element ; 61 import org.xml.sax.Attributes ; 62 63 import javax.xml.soap.Name ; 64 import javax.xml.soap.SOAPBodyElement ; 65 66 74 public class SOAPBodyElementImpl extends SOAPElementAxisImpl implements SOAPBodyElement 75 { 76 private static Logger log = Logger.getLogger(SOAPBodyElementImpl.class.getName()); 77 78 public SOAPBodyElementImpl(String namespace, String localPart, String prefix, Attributes attributes, DeserializationContext context) throws AxisFault 79 { 80 super(namespace, localPart, prefix, attributes, context); 81 } 82 83 public SOAPBodyElementImpl(String localPart) 84 { 85 super(localPart); 86 } 87 88 public SOAPBodyElementImpl(String namespace, String localPart) 89 { 90 super(namespace, localPart); 91 } 92 93 public SOAPBodyElementImpl(Name name) 94 { 95 super(name); 96 } 97 98 public SOAPBodyElementImpl(Element elem) 99 { 100 super(elem); 101 } 102 103 public SOAPBodyElementImpl() 104 { 105 } 106 } 107 | Popular Tags |