-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServer.java
More file actions
112 lines (87 loc) · 2.07 KB
/
Copy pathServer.java
File metadata and controls
112 lines (87 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package uploadServerTool;
public class Server {
protected String name;
protected String domain;
protected String host;
protected int port;
protected String username;
protected String password;
protected String keyFile;
protected String uploadPath;
protected String localPath;
protected String restartCommand;
protected String startCommand;
protected String stopCommand;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getDomain() {
return this.domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
}
public int getPort() {
return this.port;
}
public void setPort(int port) {
this.port = port;
}
public String getUsername() {
return this.username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public String getUploadPath() {
return this.uploadPath;
}
public void setUploadPath(String uploadPath) {
this.uploadPath = uploadPath;
}
public String getLocalPath() {
return this.localPath;
}
public void setLocalPath(String localPath) {
this.localPath = localPath;
}
public String getKeyFile() {
return this.keyFile;
}
public void setKeyFile(String keyFile) {
this.keyFile = keyFile;
}
public String getRestartCommand() {
return this.restartCommand;
}
public void setRestartCommand(String restartCommand) {
this.restartCommand = restartCommand;
}
public String getStartCommand() {
return this.startCommand;
}
public void setStartCommand(String startCommand) {
this.startCommand = startCommand;
}
public String getStopCommand() {
return this.stopCommand;
}
public void setStopCommand(String stopCommand) {
this.stopCommand = stopCommand;
}
}