1 6 7 28 package javax.xml.soap; 29 30 31 99 public interface SOAPEnvelope extends SOAPElement { 100 101 115 public abstract Name createName(String localName, String prefix, 116 String uri) 117 throws SOAPException ; 118 119 131 public abstract Name createName(String localName) 132 throws SOAPException ; 133 134 150 public SOAPHeader getHeader() throws SOAPException ; 151 152 169 public SOAPBody getBody() throws SOAPException ; 170 185 public SOAPHeader addHeader() throws SOAPException ; 186 201 public SOAPBody addBody() throws SOAPException ; 202 } 203 | Popular Tags |