View Javadoc

1   package org.sourceforge.jemm.comm.connection;
2   
3   /**
4    * A rpc connection factory for supplying a client connection.
5    *  
6    * <i><P>Released under the <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License V2.0 license</a> 
7    * by the <a href="http://jemm.sourceforge.net">JEMM Project</a></i>
8    *
9    * @author Rory Graves
10   */
11  public interface ClientConnectionFactory {
12  	Connection connect() throws ConnectionException;
13  
14  	String getConnectionAddress();
15  }