Class GHEventPayload.Status

java.lang.Object
org.kohsuke.github.GHEventPayload
org.kohsuke.github.GHEventPayload.Status
Enclosing class:
GHEventPayload

public static class GHEventPayload.Status extends GHEventPayload
A git commit status was changed.
See Also:
  • Constructor Details

    • Status

      public Status()
  • Method Details

    • getContext

      public String getContext()
      Gets the status content.
      Returns:
      status content
    • getTargetUrl

      public String getTargetUrl()
      The optional link added to the status.
      Returns:
      a url
    • getDescription

      public String getDescription()
      Gets the status description.
      Returns:
      status description
    • getState

      public GHCommitState getState()
      Gets the status state.
      Returns:
      status state
    • setState

      @Deprecated public void setState(GHCommitState state)
      Deprecated.
      Do not use this method. It was added due to incomplete understanding of Jackson binding.
      Sets the status stage.
      Parameters:
      state - status state
    • getCommit

      public GHCommit getCommit()
      Gets the commit associated with the status event.
      Returns:
      commit
    • setCommit

      @Deprecated public void setCommit(GHCommit commit)
      Deprecated.
      Do not use this method. It was added due to incomplete understanding of Jackson binding.
      Sets the commit associated with the status event.
      Parameters:
      commit - commit
    • getRoot

      @Deprecated public GitHub getRoot()
      Deprecated.
      For access to the GitHub instance, use a local copy instead of pulling it out of objects.
      Get the root GitHub instance for this object.
      Returns:
      the root GitHub instance