1 6 7 28 package javax.xml.soap; 29 30 import java.util.Locale ; 31 32 import org.w3c.dom.Document ; 33 34 import javax.xml.namespace.QName ; 35 36 48 public interface SOAPBody extends SOAPElement { 49 50 64 public SOAPFault addFault() throws SOAPException ; 65 66 67 97 public SOAPFault addFault(Name faultCode, String faultString, Locale locale) throws SOAPException ; 98 99 134 public SOAPFault addFault(QName faultCode, String faultString, Locale locale) 135 throws SOAPException ; 136 137 171 public SOAPFault addFault(Name faultCode, String faultString) 172 throws SOAPException ; 173 174 209 public SOAPFault addFault(QName faultCode, String faultString) 210 throws SOAPException ; 211 212 220 public boolean hasFault(); 221 222 229 public SOAPFault getFault(); 230 231 243 public SOAPBodyElement addBodyElement(Name name) throws SOAPException ; 244 245 246 259 public SOAPBodyElement addBodyElement(QName qname) throws SOAPException ; 260 261 279 public SOAPBodyElement addDocument(org.w3c.dom.Document document) 280 throws SOAPException ; 281 282 297 public org.w3c.dom.Document extractContentAsDocument() 298 throws SOAPException ; 299 } 300 | Popular Tags |