Package org.kohsuke.github
Class GHTagObject
- java.lang.Object
-
- org.kohsuke.github.GHTagObject
-
public class GHTagObject extends Object
Represents an annotated tag in aGHRepository.- See Also:
GHRepository#getTagObject(String)
-
-
Constructor Summary
Constructors Constructor Description GHTagObject()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetMessage()Gets message.GHRef.GHObjectgetObject()Gets object.GHRepositorygetOwner()Gets owner.GitHubgetRoot()Deprecated.For access to theGitHubinstance, use a local copy instead of pulling it out of objects.StringgetSha()Gets sha.StringgetTag()Gets tag.GitUsergetTagger()Gets tagger.StringgetUrl()Gets url.GHVerificationgetVerification()Gets Verification Status.
-
-
-
Method Detail
-
getOwner
public GHRepository getOwner()
Gets owner.- Returns:
- the owner
-
getTag
public String getTag()
Gets tag.- Returns:
- the tag
-
getSha
public String getSha()
Gets sha.- Returns:
- the sha
-
getUrl
public String getUrl()
Gets url.- Returns:
- the url
-
getMessage
public String getMessage()
Gets message.- Returns:
- the message
-
getTagger
public GitUser getTagger()
Gets tagger.- Returns:
- the tagger
-
getObject
public GHRef.GHObject getObject()
Gets object.- Returns:
- the object
-
getVerification
public GHVerification getVerification()
Gets Verification Status.- Returns:
- the Verification status
-
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
-
-