Java tutorial
/* * The Gemma project * * Copyright (c) 2006 University of British Columbia * * 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 ubic.gemma.util; import java.io.IOException; import java.net.SocketException; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.commons.net.ftp.FTPClient; import ubic.basecode.util.NetUtils; /** * Helper methods to get FTP connection. * * @author pavlidis * @version $Id: NetDatasourceUtil.java,v 1.1 2007/12/18 20:15:18 paul Exp $ */ public abstract class NetDatasourceUtil { public NetDatasourceUtil() { init(); } private Log log = LogFactory.getLog(getClass().getName()); private String host; private String login = "anonymous"; private String password = "gemma@ubic.ca"; public abstract void init(); /** * Convenient method to get a FTP connection. * * @param mode * @return * @throws SocketException * @throws IOException */ public FTPClient connect(int mode) throws SocketException, IOException { log.info("Connecting to " + host + " with " + login + " : " + password); return NetUtils.connect(mode, host, login, password); } /** * @param f * @throws IOException */ public void disconnect(FTPClient f) throws IOException { f.disconnect(); } public void setHost(String host) { this.host = host; } public void setLogin(String login) { this.login = login; } public void setPassword(String password) { this.password = password; } public String getHost() { return host; } }