Uses of Class
org.kohsuke.github.GHRepository

Packages that use GHRepository
org.kohsuke.github   
 

Uses of GHRepository in org.kohsuke.github
 

Methods in org.kohsuke.github that return GHRepository
 GHRepository GitHub.createRepository(String name, String description, String homepage, boolean isPublic)
          Creates a new repository.
 GHRepository GHOrganization.createRepository(String name, String description, String homepage, GHTeam team, boolean isPublic)
           
 GHRepository GHOrganization.createRepository(String name, String description, String homepage, String team, boolean isPublic)
          Creates a new repository.
 GHRepository GHRepository.fork()
          Forks this repository as your repository.
 GHRepository GHRepository.forkTo(GHOrganization org)
          Forks this repository into an organization.
 GHRepository GHBranch.getOwner()
          Repository that this branch is in.
 GHRepository GHTag.getOwner()
           
 GHRepository GHCommitComment.getOwner()
           
 GHRepository GHCommit.getOwner()
          The repository that contains the commit.
 GHRepository GHRelease.getOwner()
           
 GHRepository GHContent.getOwner()
           
 GHRepository GHAsset.getOwner()
           
 GHRepository GHMilestone.getOwner()
           
 GHRepository GHEventPayload.PullRequest.getRepository()
           
 GHRepository GHEventPayload.IssueComment.getRepository()
           
 GHRepository GHCommitPointer.getRepository()
          The repository that contains the commit.
 GHRepository GHEventInfo.getRepository()
          Repository where the change was made.
 GHRepository GHIssue.getRepository()
          Repository to which the issue belongs.
 GHRepository GHPerson.getRepository(String name)
           
 GHRepository GitHub.getRepository(String name)
          Gets the repository object from 'user/reponame' string that GitHub calls as "repository name"
 

Methods in org.kohsuke.github that return types with arguments of type GHRepository
 Map<String,GHRepository> GHMyself.getAllRepositories()
          Gets the all repositories this user owns (public and private).
 Map<String,GHRepository> GHTeam.getRepositories()
           
 Map<String,GHRepository> GHPerson.getRepositories()
          Gets the public repositories this user owns.
 List<GHRepository> GHOrganization.getRepositoriesWithOpenPullRequests()
          List up repositories that has some open pull requests.
 Iterable<List<GHRepository>> GHPerson.iterateRepositories(int pageSize)
          Deprecated. Use GHPerson.listRepositories()
 PagedIterable<GHRepository> GHMyself.listAllRepositories()
          Deprecated. Use GHMyself.listRepositories()
 PagedIterable<GHRepository> GHPerson.listRepositories()
          Lists up all the repositories using a 30 items page size.
 PagedIterable<GHRepository> GHMyself.listRepositories()
          Lists up all repositories this user owns (public and private).
 PagedIterable<GHRepository> GHOrganization.listRepositories(int pageSize)
          Lists up all the repositories using the specified page size.
 PagedIterable<GHRepository> GHPerson.listRepositories(int pageSize)
          Lists up all the repositories using the specified page size.
 

Methods in org.kohsuke.github with parameters of type GHRepository
 void GHTeam.add(GHRepository r)
           
 GHTeam GHOrganization.createTeam(String name, GHOrganization.Permission p, GHRepository... repositories)
           
 void GHTeam.remove(GHRepository r)
           
 void GHRelease.setOwner(GHRepository owner)
           
 void GHEventPayload.IssueComment.setRepository(GHRepository repository)
           
static GHContent[] GHContent.wrap(GHContent[] contents, GHRepository repository)
           
 GHCompare GHCompare.wrap(GHRepository owner)
           
 GHDeployKey GHDeployKey.wrap(GHRepository repo)
           
 GHMilestone GHMilestone.wrap(GHRepository repo)
           
 

Method parameters in org.kohsuke.github with type arguments of type GHRepository
 GHTeam GHOrganization.createTeam(String name, GHOrganization.Permission p, Collection<GHRepository> repositories)
          Creates a new team and assigns the repositories.
 

Constructors in org.kohsuke.github with parameters of type GHRepository
GHReleaseBuilder(GHRepository ghRepository, String tag)
           
 



Copyright © 2014. All rights reserved.