com.spun.util.io.FTPConfig Maven / Gradle / Ivy
package com.spun.util.io;
/**
* A static class of convenience functions for Files
**/
public class FTPConfig
{
public static final int DEFUALT_FTP_PORT = 21;
public String host, userName, password;
public int port = 0;
public FTPConfig(String host, int port, String userName, String password)
{
this.host = host;
this.port = port;
this.userName = userName;
this.password = password;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy