vagrant.api.domain.SshConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vagrant-java-bindings Show documentation
Show all versions of vagrant-java-bindings Show documentation
Wrapper over the CLI Vagrant tool presented in a Java API
package vagrant.api.domain;
public class SshConfig {
private String hostName;
private String user;
private int port;
private String identityFile;
public String getIdentityFile() {
return identityFile;
}
public String getUser() {
return user;
}
public int getPort() {
return port;
}
public String getHostName() {
return hostName;
}
public void setHostName(String hostName) {
this.hostName = hostName;
}
public void setUser(String user) {
this.user = user;
}
public void setPort(int port) {
this.port = port;
}
public void setIdentityFile(String identityFile) {
this.identityFile = identityFile;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy