1 8 9 package mx4j.tools.remote; 10 11 import java.io.IOException ; 12 13 23 public interface ConnectionManager 24 { 25 33 public Connection connect(Object credentials) throws IOException , SecurityException ; 34 35 38 public String getProtocol(); 39 40 45 public void close() throws IOException ; 46 47 55 public void closeConnection(Connection connection) throws IOException ; 56 } 57 | Popular Tags |