Skip to content

Commit 541cfd3

Browse files
authored
Merge pull request #123 from Dokyeongyun/rf-220116-ConnectionInfoCustomView
Rf 220116 connection info custom view
2 parents 8cbce4a + 2112d97 commit 541cfd3

File tree

11 files changed

+826
-1160
lines changed

11 files changed

+826
-1160
lines changed

src/main/java/root/core/domain/JschConnectionInfo.java

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class JschConnectionInfo {
1212
private String userName;
1313
private String password;
1414
private AlertLogCommand alc;
15-
15+
1616
public JschConnectionInfo(String serverName, String host, int port, String userName, String password) {
1717
this.serverName = serverName;
1818
this.host = host;
@@ -21,4 +21,14 @@ public JschConnectionInfo(String serverName, String host, int port, String userN
2121
this.password = password;
2222
this.alc = new AlertLogCommand();
2323
}
24+
25+
public JschConnectionInfo(String serverName, String host, int port, String userName, String password,
26+
AlertLogCommand alc) {
27+
this.serverName = serverName;
28+
this.host = host;
29+
this.port = port;
30+
this.userName = userName;
31+
this.password = password;
32+
this.alc = alc;
33+
}
2434
}

0 commit comments

Comments
 (0)