1 6 7 28 package javax.xml.soap; 29 30 31 51 public abstract class SOAPConnection { 52 53 69 public abstract SOAPMessage call(SOAPMessage request, 70 Object to) throws SOAPException ; 71 72 85 public SOAPMessage get(Object to) 86 throws SOAPException { 87 throw new UnsupportedOperationException ("All subclasses of SOAPConnection must override get()"); 88 } 89 90 95 public abstract void close() 96 throws SOAPException ; 97 } 98 | Popular Tags |