All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spun.util.io.FTPConfig Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
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