Class AccountSshKey
- java.lang.Object
-
- com.google.gerrit.reviewdb.client.AccountSshKey
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AccountSshKey.Id
-
Field Summary
Fields Modifier and Type Field Description protected AccountSshKey.Id
id
protected String
sshPublicKey
protected boolean
valid
-
Constructor Summary
Constructors Modifier Constructor Description protected
AccountSshKey()
AccountSshKey(AccountSshKey.Id i, String pub)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Account.Id
getAccount()
String
getAlgorithm()
String
getComment()
String
getEncodedKey()
AccountSshKey.Id
getKey()
String
getSshPublicKey()
int
hashCode()
boolean
isValid()
void
setInvalid()
-
-
-
Field Detail
-
id
protected AccountSshKey.Id id
-
sshPublicKey
protected String sshPublicKey
-
valid
protected boolean valid
-
-
Constructor Detail
-
AccountSshKey
protected AccountSshKey()
-
AccountSshKey
public AccountSshKey(AccountSshKey.Id i, String pub)
-
-
Method Detail
-
getAccount
public Account.Id getAccount()
-
getKey
public AccountSshKey.Id getKey()
-
getSshPublicKey
public String getSshPublicKey()
-
getAlgorithm
public String getAlgorithm()
-
getEncodedKey
public String getEncodedKey()
-
getComment
public String getComment()
-
isValid
public boolean isValid()
-
setInvalid
public void setInvalid()
-
-