|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of APIBase.Response in org.idlesoft.libraries.ghapi |
---|
Methods in org.idlesoft.libraries.ghapi that return APIBase.Response | |
---|---|
static APIBase.Response |
User.activity(java.lang.String username)
Fetches a user's public activity feed |
static APIBase.Response |
User.activity(java.lang.String username,
java.lang.String token)
Fetches a user's private activity feed |
static APIBase.Response |
Issues.add_comment(java.lang.String owner,
java.lang.String repositoryName,
int number,
java.lang.String body,
java.lang.String user,
java.lang.String token)
Adds a comment to an issue |
static APIBase.Response |
Issues.add_label(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String label,
int number,
java.lang.String user,
java.lang.String token)
Adds a label to an issue, creating it if it does not exist |
static APIBase.Response |
Object.blob(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String treeSha,
java.lang.String path)
Fetches data about a blob given it's tree SHA and path |
static APIBase.Response |
Object.blob(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String treeSha,
java.lang.String path,
java.lang.String user,
java.lang.String token)
Fetches data about a blob given it's tree SHA and path, includes private repos |
static APIBase.Response |
Repository.branches(java.lang.String owner,
java.lang.String repositoryName)
Fetches a list of branches for a repository |
static APIBase.Response |
Repository.branches(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String user,
java.lang.String token)
Fetches a list of branches for a repository, includes private repos |
static APIBase.Response |
Issues.close(java.lang.String owner,
java.lang.String repositoryName,
int number,
java.lang.String user,
java.lang.String token)
Closes an issue |
static APIBase.Response |
Repository.collaborators(java.lang.String owner,
java.lang.String repositoryName)
Fetches list of collaborators for a repository |
static APIBase.Response |
Repository.collaborators(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String user,
java.lang.String token)
Fetches a list of collaborators for a repository, includes private repos |
static APIBase.Response |
Commits.commit(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String sha)
Fetches details of a commit, given it's SHA hash |
static APIBase.Response |
Commits.commit(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String sha,
java.lang.String user,
java.lang.String token)
Fetches details of a commit, given it's SHA hash, includes private repositories |
static APIBase.Response |
Issues.edit(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String title,
java.lang.String body,
java.lang.String user,
java.lang.String token)
Edits an issue with given title and body text |
static APIBase.Response |
User.follow(java.lang.String username,
java.lang.String user,
java.lang.String token)
Follows a given user |
static APIBase.Response |
User.followers(java.lang.String username)
Fetch a list of a user's followers |
static APIBase.Response |
User.following(java.lang.String username)
Fetch a list of people a user is following |
static APIBase.Response |
Repository.fork(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String user,
java.lang.String token)
Forks a given repository |
static APIBase.Response |
APIBase.HTTPGet(java.lang.String url)
Sends a HTTP GET request |
static APIBase.Response |
APIBase.HTTPPost(java.lang.String url,
java.lang.String postData)
Sends a HTTP POST request |
static APIBase.Response |
User.info(java.lang.String username)
Fetches info for a given user |
static APIBase.Response |
Repository.info(java.lang.String owner,
java.lang.String repositoryName)
Fetches info for a given repository |
static APIBase.Response |
User.info(java.lang.String username,
java.lang.String token)
Fetches info for a given user, includes private information |
static APIBase.Response |
Repository.info(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String user,
java.lang.String token)
Fetches info for a given repository, includes private repositories |
static APIBase.Response |
Issues.issue(java.lang.String owner,
java.lang.String repositoryName,
int number)
View an individual issue |
static APIBase.Response |
Issues.issue(java.lang.String owner,
java.lang.String repositoryName,
int number,
java.lang.String user,
java.lang.String token)
|
static APIBase.Response |
Issues.labels(java.lang.String owner,
java.lang.String repositoryName)
Fetches a list of issue labels associated with a repository |
static APIBase.Response |
Issues.labels(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String user,
java.lang.String token)
|
static APIBase.Response |
Repository.languages(java.lang.String owner,
java.lang.String repositoryName)
Fetches a list of languages used in a repository |
static APIBase.Response |
Repository.languages(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String user,
java.lang.String token)
Fetches a list of languages used in a repository, includes private repos |
static APIBase.Response |
Object.list_blobs(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String treeSha)
Fetches a list of all blobs for a certain tree SHA |
static APIBase.Response |
Object.list_blobs(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String treeSha,
java.lang.String user,
java.lang.String token)
Fetches a list of all blobs for a certain tree SHA, includes private repos |
static APIBase.Response |
Issues.list_comments(java.lang.String owner,
java.lang.String repositoryName,
int number)
Fetches a list of comments for a specific issue |
static APIBase.Response |
Issues.list_comments(java.lang.String owner,
java.lang.String repositoryName,
int number,
java.lang.String user,
java.lang.String token)
|
static APIBase.Response |
Commits.list_for_file(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String branch,
java.lang.String path)
Fetches a list of commits that modified a given file |
static APIBase.Response |
Commits.list_for_file(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String branch,
java.lang.String path,
java.lang.String user,
java.lang.String token)
Fetches a list of commits that modified a given file, includes private repositories |
static APIBase.Response |
Repository.list(java.lang.String target)
Lists repositories of a given user |
static APIBase.Response |
Issues.list(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String state)
Fetches a list of open or closed issues for a repository |
static APIBase.Response |
Repository.list(java.lang.String target,
java.lang.String user,
java.lang.String token)
Lists repositories of a given user, includes private repositories |
static APIBase.Response |
Commits.list(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String branch)
Fetches a list of commits for a given branch of a repository |
static APIBase.Response |
Issues.list(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String state,
java.lang.String user,
java.lang.String token)
|
static APIBase.Response |
Commits.list(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String branch,
java.lang.String user,
java.lang.String token)
Fetches a list of commits for a given branch of a repository, includes private repositories |
static APIBase.Response |
Repository.network(java.lang.String owner,
java.lang.String repositoryName)
Fetches list of forks for a repository |
static APIBase.Response |
Repository.network(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String user,
java.lang.String token)
Fetches a list of forks for a repository, includes private repos |
static APIBase.Response |
Issues.open(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String title,
java.lang.String body,
java.lang.String user,
java.lang.String token)
Opens a new issue with given title and body text |
static APIBase.Response |
Object.raw(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String sha)
Get the raw data of a blob |
static APIBase.Response |
Object.raw(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String sha,
java.lang.String user,
java.lang.String token)
Get the raw data of a blob, includes private repos |
static APIBase.Response |
Issues.remove_label(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String label,
int number,
java.lang.String user,
java.lang.String token)
Removes a label from an issue |
static APIBase.Response |
Issues.reopen(java.lang.String owner,
java.lang.String repositoryName,
int number,
java.lang.String user,
java.lang.String token)
Reopens an issue |
static APIBase.Response |
Repository.search(java.lang.String query)
Searches GitHub for repositories matching supplied query |
static APIBase.Response |
User.search(java.lang.String query)
Searches GitHub for users matching supplied query |
static APIBase.Response |
Repository.search(java.lang.String query,
java.lang.String user,
java.lang.String token)
Searches GitHub for repositories matching supplied query, includes private repositories |
static APIBase.Response |
Issues.search(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String state,
java.lang.String query)
Searches for issues for a repository |
static APIBase.Response |
Issues.search(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String state,
java.lang.String query,
java.lang.String user,
java.lang.String token)
|
static APIBase.Response |
Repository.tags(java.lang.String owner,
java.lang.String repositoryName)
Fetches a list of tags on a repository |
static APIBase.Response |
Repository.tags(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String user,
java.lang.String token)
Fetches a list of tags on a repository, includes private repos |
static APIBase.Response |
Object.tree(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String sha)
Fetches the contents of the tree given the tree SHA |
static APIBase.Response |
Object.tree(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String sha,
java.lang.String user,
java.lang.String token)
Fetches the contents of the tree given the tree SHA, includes private repositories |
static APIBase.Response |
User.unfollow(java.lang.String username,
java.lang.String user,
java.lang.String token)
Unfollows a given user |
static APIBase.Response |
Repository.unwatch(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String user,
java.lang.String token)
Unwatches a given repository |
static APIBase.Response |
Repository.watch(java.lang.String owner,
java.lang.String repositoryName,
java.lang.String user,
java.lang.String token)
Watches a given repository |
static APIBase.Response |
User.watching(java.lang.String username)
Fetches a list of repositories a user is watching |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |