|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ProgressMonitor | |
|---|---|
| com.atlassian.jira.rest.client | |
| Uses of ProgressMonitor in com.atlassian.jira.rest.client |
|---|
| Classes in com.atlassian.jira.rest.client that implement ProgressMonitor | |
|---|---|
class |
NullProgressMonitor
NOP implementation of the progress monitor |
| Methods in com.atlassian.jira.rest.client with parameters of type ProgressMonitor | |
|---|---|
void |
IssueRestClient.addAttachment(ProgressMonitor progressMonitor,
java.net.URI attachmentsUri,
java.io.InputStream in,
java.lang.String filename)
Uploads attachments to JIRA (adding it to selected issue) |
void |
IssueRestClient.addAttachments(ProgressMonitor progressMonitor,
java.net.URI attachmentsUri,
AttachmentInput... attachments)
Uploads attachments to JIRA (adding it to selected issue) |
void |
IssueRestClient.addAttachments(ProgressMonitor progressMonitor,
java.net.URI attachmentsUri,
java.io.File... files)
Uploads attachments to JIRA (adding it to selected issue) |
void |
IssueRestClient.addWatcher(java.net.URI watchersUri,
java.lang.String username,
ProgressMonitor progressMonitor)
Adds selected person as a watcher for selected issue. |
Component |
ComponentRestClient.createComponent(java.lang.String projectKey,
ComponentInput componentInput,
ProgressMonitor progressMonitor)
|
Version |
VersionRestClient.createVersion(VersionInput version,
ProgressMonitor progressMonitor)
Creates a new version (which logically belongs to a project) |
java.lang.Iterable<BasicProject> |
ProjectRestClient.getAllProjects(ProgressMonitor progressMonitor)
Returns all projects, which are visible for the currently logged in user. |
java.io.InputStream |
IssueRestClient.getAttachment(ProgressMonitor pm,
java.net.URI attachmentUri)
Retrieves the content of given attachment. |
Component |
ComponentRestClient.getComponent(java.net.URI componentUri,
ProgressMonitor progressMonitor)
|
int |
ComponentRestClient.getComponentRelatedIssuesCount(java.net.URI componentUri,
ProgressMonitor progressMonitor)
|
Session |
SessionRestClient.getCurrentSession(ProgressMonitor progressMonitor)
|
Issue |
IssueRestClient.getIssue(java.lang.String issueKey,
ProgressMonitor progressMonitor)
Retrieves issue with selected issue key. |
IssueType |
MetadataRestClient.getIssueType(java.net.URI uri,
ProgressMonitor progressMonitor)
Retrieves from the server complete information about selected issue type |
int |
VersionRestClient.getNumUnresolvedIssues(java.net.URI versionUri,
ProgressMonitor progressMonitor)
Retrieves number of unresolved issues which have their Fix Version(s) field pointing to given version. |
Priority |
MetadataRestClient.getPriority(java.net.URI uri,
ProgressMonitor progressMonitor)
Retrieves from the server complete information about selected priority |
Project |
ProjectRestClient.getProject(java.lang.String key,
ProgressMonitor progressMonitor)
Retrieves complete information about given project. |
Project |
ProjectRestClient.getProject(java.net.URI projectUri,
ProgressMonitor progressMonitor)
Retrieves complete information about given project. |
Resolution |
MetadataRestClient.getResolution(java.net.URI uri,
ProgressMonitor progressMonitor)
Retrieves from the server complete information about selected resolution |
ServerInfo |
MetadataRestClient.getServerInfo(ProgressMonitor progressMonitor)
Retrieves information about this JIRA instance |
Status |
MetadataRestClient.getStatus(java.net.URI uri,
ProgressMonitor progressMonitor)
Retrieves complete information about selected status |
java.lang.Iterable<Transition> |
IssueRestClient.getTransitions(Issue issue,
ProgressMonitor progressMonitor)
Retrieves complete information (if the caller has permission) about transitions available for the selected issue in its current state. |
java.lang.Iterable<Transition> |
IssueRestClient.getTransitions(java.net.URI transitionsUri,
ProgressMonitor progressMonitor)
Retrieves complete information (if the caller has permission) about transitions available for the selected issue in its current state. |
User |
UserRestClient.getUser(java.lang.String username,
ProgressMonitor progressMonitor)
Retrieves detailed information about selected user. |
User |
UserRestClient.getUser(java.net.URI userUri,
ProgressMonitor progressMonitor)
Retrieves detailed information about selected user. |
Version |
VersionRestClient.getVersion(java.net.URI versionUri,
ProgressMonitor progressMonitor)
Retrieves full information about selected project version |
VersionRelatedIssuesCount |
VersionRestClient.getVersionRelatedIssuesCount(java.net.URI versionUri,
ProgressMonitor progressMonitor)
Retrieves basic statistics about issues which have their Fix Version(s) or Affects Version(s) field pointing to given version. |
Votes |
IssueRestClient.getVotes(java.net.URI votesUri,
ProgressMonitor progressMonitor)
Retrieves complete information (if the caller has permission) about voters for selected issue. |
Watchers |
IssueRestClient.getWatchers(java.net.URI watchersUri,
ProgressMonitor progressMonitor)
Retrieves complete information (if the caller has permission) about watchers for selected issue. |
void |
IssueRestClient.linkIssue(LinkIssuesInput linkIssuesInput,
ProgressMonitor progressMonitor)
Creates link between two issues and adds a comment (optional) to the source issues. |
Version |
VersionRestClient.moveVersion(java.net.URI versionUri,
VersionPosition versionPosition,
ProgressMonitor progressMonitor)
Moves selected version to another position. |
Version |
VersionRestClient.moveVersionAfter(java.net.URI versionUri,
java.net.URI afterVersionUri,
ProgressMonitor progressMonitor)
Moves selected version after another version. |
void |
ComponentRestClient.removeComponent(java.net.URI componentUri,
java.net.URI moveIssueToComponentUri,
ProgressMonitor progressMonitor)
|
void |
VersionRestClient.removeVersion(java.net.URI versionUri,
java.net.URI moveFixIssuesToVersionUri,
java.net.URI moveAffectedIssuesToVersionUri,
ProgressMonitor progressMonitor)
Removes selected version optionally changing Fix Version(s) and/or Affects Version(s) fields of related issues. |
void |
IssueRestClient.removeWatcher(java.net.URI watchersUri,
java.lang.String username,
ProgressMonitor progressMonitor)
Removes selected person from the watchers list for selected issue. |
SearchResult |
SearchRestClient.searchJql(java.lang.String jql,
int maxResults,
int startAt,
ProgressMonitor progressMonitor)
Performs a JQL search and returns issues matching the query using default maxResults (as configured in JIRA - usually 50) and startAt=0 |
SearchResult |
SearchRestClient.searchJql(java.lang.String jql,
ProgressMonitor progressMonitor)
Performs a JQL search and returns issues matching the query |
void |
IssueRestClient.transition(Issue issue,
TransitionInput transitionInput,
ProgressMonitor progressMonitor)
Performs selected transition on selected issue. |
void |
IssueRestClient.transition(java.net.URI transitionsUri,
TransitionInput transitionInput,
ProgressMonitor progressMonitor)
Performs selected transition on selected issue. |
void |
IssueRestClient.unvote(java.net.URI votesUri,
ProgressMonitor progressMonitor)
Removes your vote from the selected issue. |
void |
IssueRestClient.unwatch(java.net.URI watchersUri,
ProgressMonitor progressMonitor)
Stops watching selected issue |
Component |
ComponentRestClient.updateComponent(java.net.URI componentUri,
ComponentInput componentInput,
ProgressMonitor progressMonitor)
|
Version |
VersionRestClient.updateVersion(java.net.URI versionUri,
VersionInput versionInput,
ProgressMonitor progressMonitor)
Updates selected version with a new details. |
void |
IssueRestClient.vote(java.net.URI votesUri,
ProgressMonitor progressMonitor)
Casts your vote on the selected issue. |
void |
IssueRestClient.watch(java.net.URI watchersUri,
ProgressMonitor progressMonitor)
Starts watching selected issue |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||