1 22 package javax.xml.registry; 23 24 import java.util.Set ; 25 26 30 public interface Connection 31 { 32 public void close() throws JAXRException ; 33 public Set getCredentials() throws JAXRException ; 34 public RegistryService getRegistryService() throws JAXRException ; 35 public boolean isClosed() throws JAXRException ; 36 public boolean isSynchronous() throws JAXRException ; 37 public void setCredentials(Set credentials) throws JAXRException ; 38 public void setSynchronous(boolean synch) throws JAXRException ; 39 40 } 41 | Popular Tags |