Package org.kohsuke.github
Class GHCommit.ShortInfo
- java.lang.Object
-
- org.kohsuke.github.GHCommit.ShortInfo
-
-
Constructor Summary
Constructors Constructor Description ShortInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GitUsergetAuthor()Gets author.DategetAuthoredDate()Gets authored date.intgetCommentCount()Gets comment count.DategetCommitDate()Gets commit date.GitUsergetCommitter()Gets committer.StringgetMessage()Gets message.
-
-
-
Method Detail
-
getAuthor
@WithBridgeMethods(value=GHAuthor.class, castRequired=true) public GitUser getAuthor()
Gets author.- Returns:
- the author
-
getAuthoredDate
public Date getAuthoredDate()
Gets authored date.- Returns:
- the authored date
-
getCommitter
@WithBridgeMethods(value=GHAuthor.class, castRequired=true) public GitUser getCommitter()
Gets committer.- Returns:
- the committer
-
getCommitDate
public Date getCommitDate()
Gets commit date.- Returns:
- the commit date
-
getMessage
public String getMessage()
Gets message.- Returns:
- Commit message.
-
getCommentCount
public int getCommentCount()
Gets comment count.- Returns:
- the comment count
-
-