Package org.kohsuke.github
Class GHCheckSuite.HeadCommit
- java.lang.Object
-
- org.kohsuke.github.GHCheckSuite.HeadCommit
-
- Enclosing class:
- GHCheckSuite
public static class GHCheckSuite.HeadCommit extends Object
The Class HeadCommit.
-
-
Constructor Summary
Constructors Constructor Description HeadCommit()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GitUser
getAuthor()
Gets author.GitUser
getCommitter()
Gets committer.String
getId()
Gets id of the commit, used byGHCheckSuite
when aGHEvent.CHECK_SUITE
comes.String
getMessage()
Gets message.Date
getTimestamp()
Gets timestamp of the commit.String
getTreeId()
Gets id of the tree.
-
-
-
Method Detail
-
getId
public String getId()
Gets id of the commit, used byGHCheckSuite
when aGHEvent.CHECK_SUITE
comes.- Returns:
- id of the commit
-
getTreeId
public String getTreeId()
Gets id of the tree.- Returns:
- id of the tree
-
getMessage
public String getMessage()
Gets message.- Returns:
- commit message.
-
getTimestamp
public Date getTimestamp()
Gets timestamp of the commit.- Returns:
- timestamp of the commit
-
getAuthor
public GitUser getAuthor()
Gets author.- Returns:
- the author
-
getCommitter
public GitUser getCommitter()
Gets committer.- Returns:
- the committer
-
-