Package org.jclouds.cloudstack.domain
Class EncryptedPasswordAndPrivateKey
- java.lang.Object
-
- org.jclouds.cloudstack.domain.EncryptedPasswordAndPrivateKey
-
public final class EncryptedPasswordAndPrivateKey extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
EncryptedPasswordAndPrivateKey.Builder
-
Constructor Summary
Constructors Constructor Description EncryptedPasswordAndPrivateKey(String encryptedPassword, String privateKey)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EncryptedPasswordAndPrivateKey.Builder
builder()
boolean
equals(Object obj)
String
getEncryptedPassword()
String
getPrivateKey()
int
hashCode()
EncryptedPasswordAndPrivateKey.Builder
toBuilder()
String
toString()
-
-
-
Constructor Detail
-
EncryptedPasswordAndPrivateKey
@ConstructorProperties({"encryptedPassword","privateKey"}) public EncryptedPasswordAndPrivateKey(@Nullable String encryptedPassword, @Nullable String privateKey)
-
-
Method Detail
-
builder
public static EncryptedPasswordAndPrivateKey.Builder builder()
-
toBuilder
public EncryptedPasswordAndPrivateKey.Builder toBuilder()
-
getEncryptedPassword
@Nullable public String getEncryptedPassword()
- Returns:
- the encrypted password String representation
-
getPrivateKey
@Nullable public String getPrivateKey()
- Returns:
- get the string representation of the private key
-
-