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 Modifier and Type Method Description StringgetMessage()Gets message.GHRef.GHObjectgetObject()Gets object.GHRepositorygetOwner()Gets owner.GitHubgetRoot()Gets root.StringgetSha()Gets sha.StringgetTag()Gets tag.GitUsergetTagger()Gets tagger.StringgetUrl()Gets url.
-
-
-
Method Detail
-
getOwner
public GHRepository getOwner()
Gets owner.- Returns:
- the owner
-
getRoot
public GitHub getRoot()
Gets root.- Returns:
- the root
-
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
-
-