Uses of Interface
org.eclipse.egit.github.core.IRepositoryIdProvider

Packages that use IRepositoryIdProvider
org.eclipse.egit.github.core   
org.eclipse.egit.github.core.service   
org.eclipse.egit.github.core.util   
 

Uses of IRepositoryIdProvider in org.eclipse.egit.github.core
 

Classes in org.eclipse.egit.github.core that implement IRepositoryIdProvider
 class Repository
          Repository model class
 class RepositoryId
          Repository id
 class SearchRepository
          GitHub v2 repository model class.
 

Uses of IRepositoryIdProvider in org.eclipse.egit.github.core.service
 

Methods in org.eclipse.egit.github.core.service with parameters of type IRepositoryIdProvider
 void CollaboratorService.addCollaborator(IRepositoryIdProvider repository, String user)
          Add given user as a collaborator on the given repository
 CommitComment CommitService.addComment(IRepositoryIdProvider repository, String sha, CommitComment comment)
          Add comment to given commit
 void TeamService.addRepository(int id, IRepositoryIdProvider repository)
          Add repository to team
 RepositoryCommitCompare CommitService.compare(IRepositoryIdProvider repository, String base, String head)
          Compare base and head commits
 String DataService.createBlob(IRepositoryIdProvider repository, Blob blob)
          Create blob with given content
 CommitComment PullRequestService.createComment(IRepositoryIdProvider repository, int id, CommitComment comment)
          Create comment on given pull request
 Comment IssueService.createComment(IRepositoryIdProvider repository, int issueNumber, String comment)
          Create comment on specified issue number
 Comment IssueService.createComment(IRepositoryIdProvider repository, String issueNumber, String comment)
          Create comment on specified issue number
 Commit DataService.createCommit(IRepositoryIdProvider repository, Commit commit)
          Create commit in given repository
 DownloadResource DownloadService.createDownload(IRepositoryIdProvider repository, Download download, File file)
          Create download from content of given file.
 DownloadResource DownloadService.createDownload(IRepositoryIdProvider repository, Download download, InputStream content, long size)
          Create download and set the content to be the content of given input stream.
protected  PagedRequest<Download> DownloadService.createDownloadsRequest(IRepositoryIdProvider repository, int start, int size)
          Create paged downloads request
 RepositoryHook RepositoryService.createHook(IRepositoryIdProvider repository, RepositoryHook hook)
          Create hook in repository
 Issue IssueService.createIssue(IRepositoryIdProvider repository, Issue issue)
          Create issue
 Key DeployKeyService.createKey(IRepositoryIdProvider repository, Key key)
          Create deploy key to be associated with given repository
 Label LabelService.createLabel(IRepositoryIdProvider repository, Label label)
          Create label
 Milestone MilestoneService.createMilestone(IRepositoryIdProvider repository, Milestone milestone)
          Create a milestone
protected  PagedRequest<Event> EventService.createNetworkRepoEventRequest(IRepositoryIdProvider repository, int start, int size)
          Create network repo event page request
protected  PagedRequest<Repository> RepositoryService.createPagedForkRequest(IRepositoryIdProvider repository, int start, int size)
          Create paged request for iterating over repositories forks
 PullRequest PullRequestService.createPullRequest(IRepositoryIdProvider repository, int issueId, String head, String base)
          Create pull request by attaching branch information to an existing issue
 PullRequest PullRequestService.createPullRequest(IRepositoryIdProvider repository, PullRequest request)
          Create pull request
protected  PagedRequest<PullRequest> PullRequestService.createPullsRequest(IRepositoryIdProvider provider, String state, int start, int size)
          Create paged request for fetching pull requests
 Reference DataService.createReference(IRepositoryIdProvider repository, Reference reference)
          Create reference
protected  PagedRequest<Event> EventService.createRepoEventRequest(IRepositoryIdProvider repository, int start, int size)
          Create repo event page request
 DownloadResource DownloadService.createResource(IRepositoryIdProvider repository, Download download)
          Create a new resource for download associated with the given repository
 Tag DataService.createTag(IRepositoryIdProvider repository, Tag tag)
          Create tag object in given repository
 Tree DataService.createTree(IRepositoryIdProvider repository, Collection<TreeEntry> entries)
          Create tree
 Tree DataService.createTree(IRepositoryIdProvider repository, Collection<TreeEntry> entries, String baseTree)
          Create tree
protected  String CollaboratorService.createUpdateUri(IRepositoryIdProvider repository, String user)
          Create URI for updating collaborators
protected  PagedRequest<User> WatcherService.createWatcherRequest(IRepositoryIdProvider repository, int start, int size)
          Create page watcher request
 void CommitService.deleteComment(IRepositoryIdProvider repository, long commentId)
          Delete commit comment with given id from given repository
 void PullRequestService.deleteComment(IRepositoryIdProvider repository, long commentId)
          Delete commit comment with given id
 void IssueService.deleteComment(IRepositoryIdProvider repository, long commentId)
          Delete the issue comment with the given id
 void IssueService.deleteComment(IRepositoryIdProvider repository, String commentId)
          Delete the issue comment with the given id
 void DownloadService.deleteDownload(IRepositoryIdProvider repository, int id)
          Delete download with given id from given repository
 void RepositoryService.deleteHook(IRepositoryIdProvider repository, int hookId)
          Delete hook from repository
 void DeployKeyService.deleteKey(IRepositoryIdProvider repository, int id)
          Deploy deploy key with given id from given repository
 void LabelService.deleteLabel(IRepositoryIdProvider repository, String label)
          Delete a label with the given id from the given repository
 void MilestoneService.deleteMilestone(IRepositoryIdProvider repository, int milestone)
          Delete a milestone with the given id from the given repository
 void MilestoneService.deleteMilestone(IRepositoryIdProvider repository, String milestone)
          Delete a milestone with the given id from the given repository
 Comment IssueService.editComment(IRepositoryIdProvider repository, Comment comment)
          Edit issue comment
 CommitComment CommitService.editComment(IRepositoryIdProvider repository, CommitComment comment)
          Edit given comment
 CommitComment PullRequestService.editComment(IRepositoryIdProvider repository, CommitComment comment)
          Edit pull request comment
 RepositoryHook RepositoryService.editHook(IRepositoryIdProvider repository, RepositoryHook hook)
          Edit hook in repository
 Issue IssueService.editIssue(IRepositoryIdProvider repository, Issue issue)
          Edit issue
 Key DeployKeyService.editKey(IRepositoryIdProvider repository, Key key)
          Edit given deploy key
 Label LabelService.editLabel(IRepositoryIdProvider repository, Label label)
          Edit the given label in the given repository
 Milestone MilestoneService.editMilestone(IRepositoryIdProvider repository, Milestone milestone)
          Edit the given milestone in the given repository
 PullRequest PullRequestService.editPullRequest(IRepositoryIdProvider repository, PullRequest request)
          Edit pull request
 Reference DataService.editReference(IRepositoryIdProvider repository, Reference reference)
          Edit reference
 Reference DataService.editReference(IRepositoryIdProvider repository, Reference reference, boolean force)
          Edit reference
 Repository RepositoryService.editRepository(IRepositoryIdProvider provider, Map<String,Object> fields)
          Edit given fields in repository
 Repository RepositoryService.forkRepository(IRepositoryIdProvider repository)
          Fork given repository into new repository under the currently authenticated user.
 Repository RepositoryService.forkRepository(IRepositoryIdProvider repository, String organization)
          Fork given repository into new repository.
 Blob DataService.getBlob(IRepositoryIdProvider repository, String sha)
          Get blob for given SHA-1
 List<RepositoryBranch> RepositoryService.getBranches(IRepositoryIdProvider repository)
          Get branches in given repository
 List<User> CollaboratorService.getCollaborators(IRepositoryIdProvider repository)
          Get collaborators for given repository
 CommitComment CommitService.getComment(IRepositoryIdProvider repository, long commentId)
          Get commit comment with given id
 CommitComment PullRequestService.getComment(IRepositoryIdProvider repository, long commentId)
          Get commit comment with given id
 List<CommitComment> PullRequestService.getComments(IRepositoryIdProvider repository, int id)
          Get all comments on commits in given pull request
 List<Comment> IssueService.getComments(IRepositoryIdProvider repository, int issueNumber)
          Get an issue's comments
 List<CommitComment> CommitService.getComments(IRepositoryIdProvider repository, String sha)
          Get all comments on commit with given SHA-1
 List<Comment> IssueService.getComments(IRepositoryIdProvider repository, String issueNumber)
          Get an issue's comments
 RepositoryCommit CommitService.getCommit(IRepositoryIdProvider repository, String sha)
          Get commit with given SHA-1 from given repository
 Commit DataService.getCommit(IRepositoryIdProvider repository, String sha)
          Get commit for given SHA-1
 List<RepositoryCommit> CommitService.getCommits(IRepositoryIdProvider repository)
          Get all commits in given repository
 List<RepositoryCommit> PullRequestService.getCommits(IRepositoryIdProvider repository, int id)
          Get all commits associated with given pull request id
 List<RepositoryCommit> CommitService.getCommits(IRepositoryIdProvider repository, String sha, String path)
          Get all commits in given repository beginning at an optional commit SHA-1 and affecting an optional path.
 List<Contributor> RepositoryService.getContributors(IRepositoryIdProvider repository, boolean includeAnonymous)
          Get contributors to repository
 Download DownloadService.getDownload(IRepositoryIdProvider repository, int id)
          Get download metadata for given repository and id
 List<Download> DownloadService.getDownloads(IRepositoryIdProvider repository)
          Get metadata for all downloads for given repository
 List<CommitFile> PullRequestService.getFiles(IRepositoryIdProvider repository, int id)
          Get all changed files associated with given pull request id
 List<Repository> RepositoryService.getForks(IRepositoryIdProvider repository)
          Get all the forks of the given repository
 RepositoryHook RepositoryService.getHook(IRepositoryIdProvider repository, int hookId)
          Get hook from repository with given id
 List<RepositoryHook> RepositoryService.getHooks(IRepositoryIdProvider repository)
          Get hooks for given repository
protected  String GitHubService.getId(IRepositoryIdProvider provider)
          Get id for repository
 Issue IssueService.getIssue(IRepositoryIdProvider repository, int issueNumber)
          Get issue
 Issue IssueService.getIssue(IRepositoryIdProvider repository, String issueNumber)
          Get issue
 List<Issue> IssueService.getIssues(IRepositoryIdProvider repository, Map<String,String> filterData)
          Get a list of Issue objects that match the specified filter data
 Key DeployKeyService.getKey(IRepositoryIdProvider repository, int id)
          Get deploy key with given id from given repository
 List<Key> DeployKeyService.getKeys(IRepositoryIdProvider repository)
          Get all deploys keys associated with the given repository
 Label LabelService.getLabel(IRepositoryIdProvider repository, String label)
          Get label with given name
 List<Label> LabelService.getLabels(IRepositoryIdProvider repository)
          Get labels
 Map<String,Long> RepositoryService.getLanguages(IRepositoryIdProvider repository)
          Get languages used in given repository
 Milestone MilestoneService.getMilestone(IRepositoryIdProvider repository, int number)
          Get a milestone
 Milestone MilestoneService.getMilestone(IRepositoryIdProvider repository, String number)
          Get a milestone
 List<Milestone> MilestoneService.getMilestones(IRepositoryIdProvider repository, String state)
          Get milestones
 PullRequest PullRequestService.getPullRequest(IRepositoryIdProvider repository, int id)
          Create request for single pull request
 List<PullRequest> PullRequestService.getPullRequests(IRepositoryIdProvider repository, String state)
          Get pull requests from repository matching state
 Reference DataService.getReference(IRepositoryIdProvider repository, String name)
          Get reference with given name
 List<Reference> DataService.getReferences(IRepositoryIdProvider repository)
          Get references for given repository
 Repository RepositoryService.getRepository(IRepositoryIdProvider provider)
          Get repository
 Tag DataService.getTag(IRepositoryIdProvider repository, String sha)
          Get tag for given SHA-1
 List<RepositoryTag> RepositoryService.getTags(IRepositoryIdProvider repository)
          Get tags in given repository
 List<Team> TeamService.getTeams(IRepositoryIdProvider repository)
          Get teams associated with given repository
 Tree DataService.getTree(IRepositoryIdProvider repository, String sha)
          Get tree with given SHA-1
 Tree DataService.getTree(IRepositoryIdProvider repository, String sha, boolean recursive)
          Get tree with given SHA-1
 List<User> WatcherService.getWatchers(IRepositoryIdProvider repository)
          Get user watching given repository
 boolean CollaboratorService.isCollaborator(IRepositoryIdProvider repository, String user)
          Is given user a collaborator on the given repository?
 boolean PullRequestService.isMerged(IRepositoryIdProvider repository, int id)
          Is the given pull request id merged?
 boolean TeamService.isTeamRepository(int id, IRepositoryIdProvider repository)
          Is given repository managed by given team
 boolean WatcherService.isWatching(IRepositoryIdProvider repository)
          Is currently authenticated user watching given repository?
 MergeStatus PullRequestService.merge(IRepositoryIdProvider repository, int id, String commitMessage)
          Merge given pull request
 PageIterator<CommitComment> PullRequestService.pageComments(IRepositoryIdProvider repository, int id)
          Page pull request commit comments
 PageIterator<CommitComment> PullRequestService.pageComments(IRepositoryIdProvider repository, int id, int size)
          Page pull request commit comments
 PageIterator<CommitComment> PullRequestService.pageComments(IRepositoryIdProvider repository, int id, int start, int size)
          Page pull request commit comments
 PageIterator<CommitComment> CommitService.pageComments(IRepositoryIdProvider repository, String sha)
          Page comments on commit with given SHA-1
 PageIterator<CommitComment> CommitService.pageComments(IRepositoryIdProvider repository, String sha, int size)
          Page comments on commit with given SHA-1
 PageIterator<CommitComment> CommitService.pageComments(IRepositoryIdProvider repository, String sha, int start, int size)
          Page comments on commit with given SHA-1
 PageIterator<RepositoryCommit> CommitService.pageCommits(IRepositoryIdProvider repository)
          Page commits in given repository
 PageIterator<RepositoryCommit> CommitService.pageCommits(IRepositoryIdProvider repository, int size)
          Page commits in given repository
 PageIterator<RepositoryCommit> CommitService.pageCommits(IRepositoryIdProvider repository, String sha, String path)
          Page commits in given repository
 PageIterator<RepositoryCommit> CommitService.pageCommits(IRepositoryIdProvider repository, String sha, String path, int size)
          Page commits in given repository
 PageIterator<Download> DownloadService.pageDownloads(IRepositoryIdProvider repository)
          Page metadata for downloads for given repository
 PageIterator<Download> DownloadService.pageDownloads(IRepositoryIdProvider repository, int size)
          Page downloads for given repository
 PageIterator<Download> DownloadService.pageDownloads(IRepositoryIdProvider repository, int start, int size)
          Page downloads for given repository
 PageIterator<Event> EventService.pageEvents(IRepositoryIdProvider repository)
          Create page iterator for a given repo's events
 PageIterator<Event> EventService.pageEvents(IRepositoryIdProvider repository, int size)
          Create page iterator for a given repo's events
 PageIterator<Event> EventService.pageEvents(IRepositoryIdProvider repository, int start, int size)
          Create page iterator for a given repo's events
 PageIterator<Repository> RepositoryService.pageForks(IRepositoryIdProvider repository)
          Page forks of given repository
 PageIterator<Repository> RepositoryService.pageForks(IRepositoryIdProvider repository, int size)
          Page forks of given repository
 PageIterator<Repository> RepositoryService.pageForks(IRepositoryIdProvider repository, int start, int size)
          Page forks of given repository
 PageIterator<Issue> IssueService.pageIssues(IRepositoryIdProvider repository)
          Get page iterator over issues query
 PageIterator<Issue> IssueService.pageIssues(IRepositoryIdProvider repository, Map<String,String> filterData)
          Get page iterator over issues query
 PageIterator<Issue> IssueService.pageIssues(IRepositoryIdProvider repository, Map<String,String> filterData, int size)
          Get page iterator over issues query
 PageIterator<Issue> IssueService.pageIssues(IRepositoryIdProvider repository, Map<String,String> filterData, int start, int size)
          Get page iterator over issues query
 PageIterator<Event> EventService.pageNetworkEvents(IRepositoryIdProvider repository)
          Create page iterator for a given repo network's events
 PageIterator<Event> EventService.pageNetworkEvents(IRepositoryIdProvider repository, int size)
          Create page iterator for a given repo network's events
 PageIterator<Event> EventService.pageNetworkEvents(IRepositoryIdProvider repository, int start, int size)
          Create page iterator for a given repo network's events
 PageIterator<PullRequest> PullRequestService.pagePullRequests(IRepositoryIdProvider repository, String state)
          Page pull requests with given state
 PageIterator<PullRequest> PullRequestService.pagePullRequests(IRepositoryIdProvider repository, String state, int size)
          Page pull requests with given state
 PageIterator<PullRequest> PullRequestService.pagePullRequests(IRepositoryIdProvider repository, String state, int start, int size)
          Page pull requests with given state
 PageIterator<User> WatcherService.pageWatchers(IRepositoryIdProvider repository)
          Page watches of given repository
 PageIterator<User> WatcherService.pageWatchers(IRepositoryIdProvider repository, int size)
          Page watches of given repository
 PageIterator<User> WatcherService.pageWatchers(IRepositoryIdProvider repository, int start, int size)
          Page watches of given repository
 void CollaboratorService.removeCollaborator(IRepositoryIdProvider repository, String user)
          Remove given user as a collaborator on the given repository
 void TeamService.removeRepository(int id, IRepositoryIdProvider repository)
          Remove repository from team
 CommitComment PullRequestService.replyToComment(IRepositoryIdProvider repository, int pullRequestId, int commentId, String body)
          Reply to given comment
 List<SearchIssue> IssueService.searchIssues(IRepositoryIdProvider repository, String state, String query)
          Search issues in the given repository using the given query
 List<Label> LabelService.setLabels(IRepositoryIdProvider repository, String issueId, List<Label> labels)
          Set the labels for an issue
 void RepositoryService.testHook(IRepositoryIdProvider repository, int hookId)
          Test hook in repository.
 void WatcherService.unwatch(IRepositoryIdProvider repository)
          Remove currently authenticated user as a watcher of the given repository
 void WatcherService.watch(IRepositoryIdProvider repository)
          Add currently authenticated user as a watcher of the given repository
 

Uses of IRepositoryIdProvider in org.eclipse.egit.github.core.util
 

Methods in org.eclipse.egit.github.core.util with parameters of type IRepositoryIdProvider
static String UrlUtils.createRemoteHttpsUrl(IRepositoryIdProvider repository, String user)
          Create HTTPS URL used for repository remote configs
static String UrlUtils.createRemoteHttpsUrl(IRepositoryIdProvider repository, String host, String user)
          Create HTTPS URL used for repository remote configs
static String UrlUtils.createRemoteReadOnlyUrl(IRepositoryIdProvider repository)
          Create read-only URL used for repository remote configs
static String UrlUtils.createRemoteReadOnlyUrl(IRepositoryIdProvider repository, String host)
          Create read-only URL used for repository remote configs
static String UrlUtils.createRemoteSshUrl(IRepositoryIdProvider repository)
          Create SSH URL used for repository remote configs
static String UrlUtils.createRemoteSshUrl(IRepositoryIdProvider repository, String host)
          Create SSH URL used for repository remote configs
 



Copyright © 2012. All Rights Reserved.