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 Deprecated Methods Modifier and Type Method Description voiddelete()Delete the GHKeyintgetId()Gets id.StringgetKey()Gets key.GitHubgetRoot()Deprecated.For access to theGitHubinstance, use a local copy instead of pulling it out of objects.StringgetTitle()Gets title.StringgetUrl()Something like "https://api.github.com/user/keys/73593"booleanisVerified()Is verified boolean.StringtoString()To string.
-
-
-
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
-
isVerified
public boolean isVerified()
Is verified boolean.- Returns:
- the boolean
-
toString
public String toString()
To string.
-
delete
public void delete() throws IOExceptionDelete the GHKey- Throws:
IOException- the io exception
-
getRoot
@Deprecated public GitHub getRoot()
Deprecated.For access to theGitHubinstance, use a local copy instead of pulling it out of objects.Get the rootGitHubinstance for this object.- Returns:
- the root
GitHubinstance
-
-