Uses of Class
org.kohsuke.github.GHRepository
-
Packages that use GHRepository Package Description org.kohsuke.github -
-
Uses of GHRepository in org.kohsuke.github
Methods in org.kohsuke.github that return GHRepository Modifier and Type Method Description GHRepositoryGHCreateRepositoryBuilder. create()Creates a repository with all the parameters.GHRepositoryGHOrganization. createRepository(String name, String description, String homepage, String team, boolean isPublic)Deprecated.UseGHOrganization.createRepository(String)that uses a builder pattern to let you control every aspect.GHRepositoryGHOrganization. createRepository(String name, String description, String homepage, GHTeam team, boolean isPublic)Deprecated.UseGHOrganization.createRepository(String)that uses a builder pattern to let you control every aspect.GHRepositoryGitHub. createRepository(String name, String description, String homepage, boolean isPublic)Deprecated.UseGitHub.createRepository(String)that uses a builder pattern to let you control every aspect.GHRepositoryGHRepository. fork()Forks this repository as your repository.GHRepositoryGHRepository. forkTo(GHOrganization org)Forks this repository into an organization.GHRepositoryGHEventPayload.Fork. getForkee()Gets forkee.GHRepositoryGHAsset. getOwner()Gets owner.GHRepositoryGHBranch. getOwner()Gets owner.GHRepositoryGHCommit. getOwner()Gets owner.GHRepositoryGHCommitComment. getOwner()Gets owner.GHRepositoryGHContent. getOwner()Gets owner.GHRepositoryGHMilestone. getOwner()Gets owner.GHRepositoryGHRelease. getOwner()Gets owner.GHRepositoryGHTag. getOwner()Gets owner.GHRepositoryGHTagObject. getOwner()Gets owner.GHRepositoryGHRepository. getParent()Forked repositories have a 'parent' attribute that specifies the repository this repository is directly forked from.GHRepositoryGHCommitPointer. getRepository()The repository that contains the commit.GHRepositoryGHEventInfo. getRepository()Gets repository.GHRepositoryGHEventPayload.CommitComment. getRepository()Gets repository.GHRepositoryGHEventPayload.Create. getRepository()Gets repository.GHRepositoryGHEventPayload.Delete. getRepository()Gets repository.GHRepositoryGHEventPayload.Deployment. getRepository()Gets repository.GHRepositoryGHEventPayload.DeploymentStatus. getRepository()Gets repository.GHRepositoryGHEventPayload.Fork. getRepository()Gets repository.GHRepositoryGHEventPayload.Issue. getRepository()Gets repository.GHRepositoryGHEventPayload.IssueComment. getRepository()Gets repository.GHRepositoryGHEventPayload.Ping. getRepository()Gets repository.GHRepositoryGHEventPayload.Public. getRepository()Gets repository.GHRepositoryGHEventPayload.PullRequest. getRepository()Gets repository.GHRepositoryGHEventPayload.PullRequestReview. getRepository()Gets repository.GHRepositoryGHEventPayload.PullRequestReviewComment. getRepository()Gets repository.GHRepositoryGHEventPayload.Push. getRepository()Gets repository.GHRepositoryGHEventPayload.Release. getRepository()Gets repository.GHRepositoryGHEventPayload.Repository. getRepository()Gets repository.GHRepositoryGHIssue. getRepository()Repository to which the issue belongs.GHRepositoryGHPerson. getRepository(String name)Gets repository.GHRepositoryGHStargazer. getRepository()Gets the repository that is stargazedGHRepositoryGHSubscription. getRepository()Gets repository.GHRepositoryGHThread. getRepository()Gets repository.GHRepositoryGitHub. getRepository(String name)Gets the repository object from 'user/reponame' string that GitHub calls as "repository name"GHRepositoryGitHub. getRepositoryById(String id)Gets the repository object from its IDGHRepositoryGHRepository. getSource()Forked repositories have a 'source' attribute that specifies the ultimate source of the forking chain.Methods in org.kohsuke.github that return types with arguments of type GHRepository Modifier and Type Method Description Map<String,GHRepository>GHMyself. getAllRepositories()Gets the all repositories this user owns (public and private).List<GHRepository>GHAppInstallationToken. getRepositories()Gets repositories.Map<String,GHRepository>GHPerson. getRepositories()Gets the public repositories this user owns.Map<String,GHRepository>GHTeam. getRepositories()Gets repositories.List<GHRepository>GHOrganization. getRepositoriesWithOpenPullRequests()List up repositories that has some open pull requests.Iterable<List<GHRepository>>GHPerson. iterateRepositories(int pageSize)Deprecated.PagedIterable<GHRepository>GitHub. listAllPublicRepositories()This provides a dump of every public repository, in the order that they were created.PagedIterable<GHRepository>GitHub. listAllPublicRepositories(String since)This provides a dump of every public repository, in the order that they were created.PagedIterable<GHRepository>GHMyself. listAllRepositories()Deprecated.PagedIterable<GHRepository>GHRepository. listForks()Lists all the direct forks of this repository, sorted by github api default, currentlyForkSort.NEWEST*.PagedIterable<GHRepository>GHRepository. listForks(GHRepository.ForkSort sort)Lists all the direct forks of this repository, sorted by the given sort order.PagedIterable<GHRepository>GHMyself. listRepositories()Lists up all repositories this user owns (public and private).PagedIterable<GHRepository>GHMyself. listRepositories(int pageSize)List repositories that are accessible to the authenticated user (public and private) using the specified page size.PagedIterable<GHRepository>GHMyself. listRepositories(int pageSize, GHMyself.RepositoryListFilter repoType)List repositories of a certain type that are accessible by current authenticated user using the specified page size.PagedIterable<GHRepository>GHOrganization. listRepositories(int pageSize)Lists up all the repositories using the specified page size.PagedIterable<GHRepository>GHPerson. listRepositories()Lists up all the repositories using a 30 items page size.PagedIterable<GHRepository>GHPerson. listRepositories(int pageSize)Lists up all the repositories using the specified page size.PagedIterable<GHRepository>GHTeam. listRepositories()List repositories paged iterable.PagedIterable<GHRepository>GHUser. listStarredRepositories()Lists all the repositories that this user has starred.PagedIterable<GHRepository>GHUser. listSubscriptions()Lists all the subscribed (aka watched) repositories.Methods in org.kohsuke.github with parameters of type GHRepository Modifier and Type Method Description voidGHTeam. add(GHRepository r)Add.voidGHTeam. add(GHRepository r, GHOrganization.Permission permission)Add.GHTeamGHOrganization. createTeam(String name, GHOrganization.Permission p, GHRepository... repositories)Deprecated.https://developer.github.com/v3/teams/#create-team deprecates permission field useGHOrganization.createTeam(String, GHRepository...)GHTeamGHOrganization. createTeam(String name, GHRepository... repositories)Create team gh team.voidGHTeam. remove(GHRepository r)Remove.voidGHEventPayload.Fork. setForkee(GHRepository forkee)Sets forkee.voidGHRelease. setOwner(GHRepository owner)Sets owner.voidGHEventPayload.CommitComment. setRepository(GHRepository repository)Sets repository.voidGHEventPayload.Create. setRepository(GHRepository repository)Sets repository.voidGHEventPayload.Delete. setRepository(GHRepository repository)Sets repository.voidGHEventPayload.Deployment. setRepository(GHRepository repository)Sets repository.voidGHEventPayload.DeploymentStatus. setRepository(GHRepository repository)Sets repository.voidGHEventPayload.Fork. setRepository(GHRepository repository)Sets repository.voidGHEventPayload.Issue. setRepository(GHRepository repository)Sets repository.voidGHEventPayload.IssueComment. setRepository(GHRepository repository)Sets repository.voidGHEventPayload.Ping. setRepository(GHRepository repository)Sets repository.voidGHEventPayload.Public. setRepository(GHRepository repository)Sets repository.voidGHEventPayload.Release. setRepository(GHRepository repository)Sets repository.voidGHEventPayload.Repository. setRepository(GHRepository repository)Sets repository.GHCompareGHCompare. wrap(GHRepository owner)Wrap gh compare.static GHContent[]GHContent. wrap(GHContent[] contents, GHRepository repository)Wrap gh content [ ].GHDeployKeyGHDeployKey. wrap(GHRepository repo)Wrap gh deploy key.GHDeploymentStatusGHDeploymentStatus. wrap(GHRepository owner)Wrap gh deployment status.GHMilestoneGHMilestone. wrap(GHRepository repo)Wrap gh milestone.GHProjectGHProject. wrap(GHRepository repo)Wrap gh project.Method parameters in org.kohsuke.github with type arguments of type GHRepository Modifier and Type Method Description GHTeamGHOrganization. createTeam(String name, Collection<GHRepository> repositories)Creates a new team and assigns the repositories.GHTeamGHOrganization. createTeam(String name, GHOrganization.Permission p, Collection<GHRepository> repositories)Deprecated.https://developer.github.com/v3/teams/#create-team deprecates permission field useGHOrganization.createTeam(String, Collection)voidGHAppInstallationToken. setRepositories(List<GHRepository> repositories)Sets repositories.Constructors in org.kohsuke.github with parameters of type GHRepository Constructor Description GHDeploymentBuilder(GHRepository repo)Instantiates a new Gh deployment builder.GHDeploymentBuilder(GHRepository repo, String ref)Instantiates a new Gh deployment builder.GHDeploymentStatusBuilder(GHRepository repo, int deploymentId, GHDeploymentState state)Deprecated.GHReleaseBuilder(GHRepository ghRepository, String tag)Instantiates a new Gh release builder.GHRepositoryStatistics(GHRepository repo)Instantiates a new Gh repository statistics.
-