1 55 package org.jboss.axis.message; 56 57 import org.jboss.axis.AxisFault; 58 import org.jboss.axis.NotImplementedException; 59 import org.jboss.axis.encoding.DeserializationContext; 60 import org.w3c.dom.Element ; 61 import org.xml.sax.Attributes ; 62 63 import javax.xml.soap.Name ; 64 import javax.xml.soap.SOAPHeaderElement ; 65 66 74 public class SOAPHeaderElementImpl extends SOAPElementAxisImpl implements SOAPHeaderElement 75 { 76 77 public SOAPHeaderElementImpl(String namespace, String localPart) 78 { 79 super(namespace, localPart); 80 } 81 82 public SOAPHeaderElementImpl(Name name) 83 { 84 super(name); 85 } 86 87 public SOAPHeaderElementImpl(String namespace, String localPart, Object value) 88 { 89 super(namespace, localPart, value); 90 } 91 92 public SOAPHeaderElementImpl(Element elem) 93 { 94 super(elem); 95 } 96 97 public SOAPHeaderElementImpl(String namespace, String localPart, String prefix, Attributes attributes, DeserializationContext context) 98 throws AxisFault 99 { 100 101 super(namespace, localPart, prefix, attributes, context); 102 } 103 104 public String getActor() 105 { 106 throw new NotImplementedException(); 107 } 108 109 public boolean getMustUnderstand() 110 { 111 throw new NotImplementedException(); 112 } 113 114 public void setActor(String actorURI) 115 { 116 throw new NotImplementedException(); 117 } 118 119 public void setMustUnderstand(boolean mustUnderstand) 120 { 121 throw new NotImplementedException(); 122 } 123 } 124 | Popular Tags |