Package org.kohsuke.github
Class GHEventPayload.Fork
- java.lang.Object
-
- org.kohsuke.github.GHEventPayload
-
- org.kohsuke.github.GHEventPayload.Fork
-
- Enclosing class:
- GHEventPayload
public static class GHEventPayload.Fork extends GHEventPayload
A user forked a repository- See Also:
- fork event, Forks
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.kohsuke.github.GHEventPayload
GHEventPayload.CheckRun, GHEventPayload.CheckSuite, GHEventPayload.CommentChanges, GHEventPayload.CommitComment, GHEventPayload.Create, GHEventPayload.Delete, GHEventPayload.Deployment, GHEventPayload.DeploymentStatus, GHEventPayload.Discussion, GHEventPayload.Fork, GHEventPayload.Installation, GHEventPayload.InstallationRepositories, GHEventPayload.Issue, GHEventPayload.IssueComment, GHEventPayload.Label, GHEventPayload.Ping, GHEventPayload.Public, GHEventPayload.PullRequest, GHEventPayload.PullRequestReview, GHEventPayload.PullRequestReviewComment, GHEventPayload.Push, GHEventPayload.Release, GHEventPayload.Repository, GHEventPayload.Status, GHEventPayload.WorkflowDispatch, GHEventPayload.WorkflowRun
-
-
Constructor Summary
Constructors Constructor Description Fork()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description GHRepository
getForkee()
Gets forkee.GitHub
getRoot()
Deprecated.For access to theGitHub
instance, use a local copy instead of pulling it out of objects.void
setForkee(GHRepository forkee)
Deprecated.Do not use this method.-
Methods inherited from class org.kohsuke.github.GHEventPayload
getAction, getInstallation, getOrganization, getRepository, getSender, setOrganization, setRepository, setSender
-
-
-
-
Method Detail
-
getForkee
public GHRepository getForkee()
Gets forkee.- Returns:
- the forkee
-
setForkee
@Deprecated public void setForkee(GHRepository forkee)
Deprecated.Do not use this method. It was added due to incomplete understanding of Jackson binding.Sets forkee.- Parameters:
forkee
- the forkee
-
getRoot
@Deprecated public GitHub getRoot()
Deprecated.For access to theGitHub
instance, use a local copy instead of pulling it out of objects.Get the rootGitHub
instance for this object.- Returns:
- the root
GitHub
instance
-
-