Package jetbrains.buildServer.ssh
Class TeamCitySshKey
- java.lang.Object
-
- jetbrains.buildServer.ssh.TeamCitySshKey
-
- All Implemented Interfaces:
Serializable
,Comparable<TeamCitySshKey>
public final class TeamCitySshKey extends Object implements Serializable, Comparable<TeamCitySshKey>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TeamCitySshKey(String name, byte[] privateKey, boolean encrypted)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(TeamCitySshKey other)
String
getName()
byte[]
getPrivateKey()
boolean
isEncrypted()
-
-
-
Constructor Detail
-
TeamCitySshKey
public TeamCitySshKey(@NotNull String name, @NotNull byte[] privateKey, boolean encrypted)
-
-
Method Detail
-
getPrivateKey
@NotNull public byte[] getPrivateKey()
-
getName
@NotNull public String getName()
-
isEncrypted
public boolean isEncrypted()
-
compareTo
public int compareTo(TeamCitySshKey other)
- Specified by:
compareTo
in interfaceComparable<TeamCitySshKey>
-
-