Package org.kohsuke.github
Class GHKey
- java.lang.Object
-
- org.kohsuke.github.GHKey
-
- Direct Known Subclasses:
GHVerifiedKey
public class GHKey extends Object
SSH public key.- Author:
- Kohsuke Kawaguchi
-
-
Constructor Summary
Constructors Constructor Description GHKey()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetId()Gets id.StringgetKey()Gets key.GitHubgetRoot()Gets root.StringgetTitle()Gets title.StringgetUrl()Something like "https://api.github.com/user/keys/73593"booleanisVerified()Is verified boolean.StringtoString()
-
-
-
Method Detail
-
getId
public int getId()
Gets id.- Returns:
- the id
-
getKey
public String getKey()
Gets key.- Returns:
- the key
-
getTitle
public String getTitle()
Gets title.- Returns:
- the title
-
getUrl
public String getUrl()
Something like "https://api.github.com/user/keys/73593"- Returns:
- the url
-
getRoot
public GitHub getRoot()
Gets root.- Returns:
- the root
-
isVerified
public boolean isVerified()
Is verified boolean.- Returns:
- the boolean
-
-