|
1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.educoder.bridge.model;
-
- public class SSHInfo {
- private String host;
- private String port;
- private String username;
- private String password;
-
- public void setHost(String host) {
- this.host = host;
- }
-
- public void setPort(String port) {
- this.port = port;
- }
-
- public void setUsername(String username) {
- this.username = username;
- }
-
- public void setPassword(String password) {
- this.password = password;
- }
-
- public String getHost() {
- return host;
- }
-
- public int getPort() {
- return Integer.parseInt(port);
- }
-
- public String getUsername() {
- return username;
- }
-
- public String getPassword() {
- return password;
- }
-
- }
|