Uses of Interface
com.atlassian.jira.bc.ServiceOutcome

Packages that use ServiceOutcome
com.atlassian.jira.bc.config   
com.atlassian.jira.bc.issue.vote   
com.atlassian.jira.bc.issue.watcher   
com.atlassian.jira.bc.project   
com.atlassian.jira.bc.project.version   
 

Uses of ServiceOutcome in com.atlassian.jira.bc.config
 

Methods in com.atlassian.jira.bc.config that return ServiceOutcome
 ServiceOutcome<IssueType> ConstantsService.getIssueTypeById(User user, String issueTypeId)
          Returns a ServiceOutcome containing the IssueType that has the given id.
 ServiceOutcome<IssueType> ConstantsService.getIssueTypeById(com.atlassian.crowd.embedded.api.User user, String issueTypeId)
          Returns a ServiceOutcome containing the IssueType that has the given id.
 ServiceOutcome<Status> ConstantsService.getStatusById(User user, String statusId)
          Returns a ServiceOutcome containing the Status that has the given id.
 ServiceOutcome<Status> ConstantsService.getStatusById(com.atlassian.crowd.embedded.api.User user, String statusId)
          Returns a ServiceOutcome containing the Status that has the given id.
 

Uses of ServiceOutcome in com.atlassian.jira.bc.issue.vote
 

Methods in com.atlassian.jira.bc.issue.vote that return ServiceOutcome
 ServiceOutcome<List<VoteHistoryEntry>> VoteService.getVoterHistory(Issue issue, com.atlassian.crowd.embedded.api.User remoteUser)
          Get the list of vote history for an issue.
 ServiceOutcome<Collection<User>> VoteService.viewVoters(Issue issue, User remoteUser)
          Get the list of all users who have voted on an issue.
 ServiceOutcome<Collection<com.atlassian.crowd.embedded.api.User>> VoteService.viewVoters(Issue issue, com.atlassian.crowd.embedded.api.User remoteUser)
          Get the list of all users who have voted on an issue.
 

Uses of ServiceOutcome in com.atlassian.jira.bc.issue.watcher
 

Methods in com.atlassian.jira.bc.issue.watcher that return ServiceOutcome
 ServiceOutcome<List<User>> WatcherService.addWatcher(Issue issue, User remoteUser, User watcher)
          Deprecated. since v4.3. Use WatcherService.addWatcher(com.atlassian.jira.issue.Issue, com.atlassian.crowd.embedded.api.User, com.atlassian.crowd.embedded.api.User) instead.
 ServiceOutcome<List<com.atlassian.crowd.embedded.api.User>> WatcherService.addWatcher(Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, com.atlassian.crowd.embedded.api.User watcher)
          Adds a watcher to an issue's list of watchers, returning the updated list of watchers.
 ServiceOutcome<Pair<Integer,List<User>>> WatcherService.getWatchers(Issue issue, User remoteUser)
          Deprecated. since v4.3. Use WatcherService.getWatchers(com.atlassian.jira.issue.Issue, com.atlassian.crowd.embedded.api.User) instead.
 ServiceOutcome<Pair<Integer,List<com.atlassian.crowd.embedded.api.User>>> WatcherService.getWatchers(Issue issue, com.atlassian.crowd.embedded.api.User remoteUser)
          Returns a the total number of watchers for a given issue in the first element of the returned Pair, and the list of visible watchers in the second element of the Pair.
 ServiceOutcome<List<User>> WatcherService.removeWatcher(Issue issue, User remoteUser, User watcher)
          Deprecated. since v4.3. Use WatcherService.removeWatcher(com.atlassian.jira.issue.Issue, com.atlassian.crowd.embedded.api.User, com.atlassian.crowd.embedded.api.User) instead.
 ServiceOutcome<List<com.atlassian.crowd.embedded.api.User>> WatcherService.removeWatcher(Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, com.atlassian.crowd.embedded.api.User watcher)
          Removes a watcher from an issue's list of watchers, returning the updated list of watchers.
 

Uses of ServiceOutcome in com.atlassian.jira.bc.project
 

Methods in com.atlassian.jira.bc.project that return ServiceOutcome
 ServiceOutcome<List<Project>> ProjectService.getAllProjects(com.atlassian.crowd.embedded.api.User user)
          Used to retrieve a list of Project objects.
 ServiceOutcome<List<Project>> ProjectService.getAllProjectsForAction(com.atlassian.crowd.embedded.api.User user, ProjectAction action)
          Used to retrieve a list of Project objects.
 

Uses of ServiceOutcome in com.atlassian.jira.bc.project.version
 

Methods in com.atlassian.jira.bc.project.version that return ServiceOutcome
 ServiceOutcome<Version> VersionService.setReleaseDate(com.atlassian.crowd.embedded.api.User user, Version version, Date releaseDate)
          Modify the release date of a version without performing a release/unrelease.
 ServiceOutcome<Version> VersionService.setReleaseDate(com.atlassian.crowd.embedded.api.User user, Version version, String releaseDate)
          Modify the release date of a version without performing a release/unrelease.
 ServiceOutcome<Version> VersionService.setVersionDetails(com.atlassian.crowd.embedded.api.User user, Version version, String name, String description)
          Set the name and description of a version, if you have edit permission.
 ServiceOutcome<Version> VersionService.validateReleaseDate(com.atlassian.crowd.embedded.api.User user, Version version, String releaseDate)
          Validate the release date of a version without performing a release/unrelease.
 



Copyright © 2002-2011 Atlassian. All Rights Reserved.