package com.walker.file.ftp;
|
|
public class FtpConfig {
|
|
public String getIp() {
|
return ip;
|
}
|
|
public void setIp(String ip) {
|
this.ip = ip;
|
}
|
|
public String getPort() {
|
return port;
|
}
|
|
public void setPort(String port) {
|
this.port = port;
|
}
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public String getPassword() {
|
return password;
|
}
|
|
public void setPassword(String password) {
|
this.password = password;
|
}
|
|
public String getPrivateKey() {
|
return privateKey;
|
}
|
|
public void setPrivateKey(String privateKey) {
|
this.privateKey = privateKey;
|
}
|
|
private String privateKey;
|
private String ip;
|
private String port;
|
private String userName;
|
private String password;
|
}
|