blob: e007753b08dca6312766f05e28d11b05937b4085 [file] [log] [blame]
package org.apache.commons.jcs.auxiliary.remote.server;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import java.io.IOException;
import java.io.Serializable;
import java.net.InetSocketAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.rmi.server.RMISocketFactory;
/** For testing the custom socket factory configuration */
public class MockRMISocketFactory
extends RMISocketFactory
implements Serializable
{
/** Don't change */
private static final long serialVersionUID = 1056199478581218676L;
/** for testing automatic property configuration. */
private String testStringProperty;
/**
* @param host
* @param port
* @return Socket
* @throws IOException
*/
@Override
public Socket createSocket( String host, int port )
throws IOException
{
// System.out.println( "Creating socket" );
Socket socket = new Socket();
socket.setSoTimeout( 1000 );
socket.setSoLinger( false, 0 );
socket.connect( new InetSocketAddress( host, port ), 1000 );
return socket;
}
/**
* @param port
* @return ServerSocket
* @throws IOException
*/
@Override
public ServerSocket createServerSocket( int port )
throws IOException
{
// System.out.println( "Creating server socket" );
return new ServerSocket( port );
}
/**
* @param testStringProperty the testStringProperty to set
*/
public void setTestStringProperty( String testStringProperty )
{
this.testStringProperty = testStringProperty;
}
/**
* @return the testStringProperty
*/
public String getTestStringProperty()
{
return testStringProperty;
}
}