}
this.initMapHolder = imh;
// Initialize our FtpClient with a SocketFactory instance that sets
// connect and read timeouts on the socket.
this.ftpClient.setSocketFactory(new DefaultSocketFactory() {
public Socket createSocket(String host, int port) throws IOException {
Socket socket = new Socket();
InetSocketAddress addr = new InetSocketAddress(host, port);
socket.connect(addr, getSocketConnectTimeoutMs());
socket.setSoTimeout(getSocketReadTimeoutMs());