| CompressionClientSocketFactory.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.invokers.ejb;
import java.io.IOException;
import java.io.Serializable;
import java.net.Socket;
import java.rmi.server.RMIClientSocketFactory;
/** The CompressionClientSocketFactory from the RMI custom socket
factory tutorial.
@author Scott.Stark@jboss.org
@version $Revision: 1.1.16.2 $
*/
public class CompressionClientSocketFactory implements RMIClientSocketFactory, Serializable
{
static final long serialVersionUID = -3227944650261728955L;
/** Create a client socket connected to the specified host and port.
* @param host - the host name
* @param port - the port number
* @return a socket connected to the specified host and port.
* @exception IOException if an I/O error occurs during socket creation.
*/
public Socket createSocket(String host, int port) throws IOException
{
Socket s = new CompressionSocket(host, port);
return s;
}
public boolean equals(Object obj)
{
return obj instanceof CompressionClientSocketFactory;
}
public int hashCode()
{
return getClass().getName().hashCode();
}
}
| CompressionClientSocketFactory.java |