Java tutorial
/* * Copyright 2015 Adaptris Ltd. * * Licensed 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. */ package com.adaptris.ftp; import java.io.IOException; import org.apache.commons.net.ftp.FTPClient; /** * FTP Client implementation.# * * @author dsefton * */ public class CommonsNetFtpClient extends ApacheFtpClientImpl<FTPClient> { /** * Constructor. * * @param remoteHost the remote hostname * @param port the port for control stream * @param timeout the length of the timeout, in milliseconds * @throws IOException if a comms error occurs */ public CommonsNetFtpClient(String remoteHost, int port, int timeout) throws IOException { super(remoteHost, port, timeout); } /** * @see CommonsNetFtpClient#CommonsNetFtpClient(String, int, int) */ public CommonsNetFtpClient(String remoteHost) throws IOException { this(remoteHost, FTPClient.DEFAULT_PORT); } /** * @see CommonsNetFtpClient#CommonsNetFtpClient(String, int, int) */ public CommonsNetFtpClient(String remoteHost, int port) throws IOException { this(remoteHost, port, 0); } @Override protected FTPClient createFTPClient() { return new FTPClient(); } @Override protected void preConnectSettings(FTPClient client) throws IOException { ClientSettings.preConnectSettings(client, ClientSettings.FTP.values(), additionalSettings); } @Override protected void postConnectSettings(FTPClient client) throws IOException { } }