com.xebialabs.overthere.gcp.SshKeyPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of overthere Show documentation
Show all versions of overthere Show documentation
Remote file manipulation and process execution framework for Java
package com.xebialabs.overthere.gcp;
final class SshKeyPair {
private final String keyUsername;
private final String privateKey;
private final String publicKey;
private final String fingerPrint;
public SshKeyPair(final String keyUsername, final String privateKey, final String publicKey, final String fingerPrint) {
this.keyUsername = keyUsername;
this.privateKey = privateKey;
this.publicKey = publicKey;
this.fingerPrint = fingerPrint;
}
public String getKeyUsername() {
return keyUsername;
}
public String getPrivateKey() {
return privateKey;
}
public String getPublicKey() {
return publicKey;
}
public String getFingerPrint() {
return fingerPrint;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy