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

Packages that use ServiceOutcome
com.atlassian.jira.bc   
com.atlassian.jira.bc.config   
com.atlassian.jira.bc.dataimport   
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
 

Classes in com.atlassian.jira.bc that implement ServiceOutcome
 class ServiceOutcomeImpl<T>
          Generic service outcome that can optionally hold a value.
 

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

Methods in com.atlassian.jira.bc.config that return ServiceOutcome
 ServiceOutcome<Collection<Status>> DefaultConstantsService.getAllStatuses(com.atlassian.crowd.embedded.api.User user)
           
 ServiceOutcome<Collection<Status>> ConstantsService.getAllStatuses(com.atlassian.crowd.embedded.api.User user)
          Returns a ServiceOutcome containing all Statuses.
 ServiceOutcome<IssueType> DefaultConstantsService.getIssueTypeById(com.atlassian.crowd.embedded.api.User user, String issueTypeId)
           
 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> DefaultConstantsService.getStatusById(com.atlassian.crowd.embedded.api.User user, String statusId)
           
 ServiceOutcome<Status> ConstantsService.getStatusById(com.atlassian.crowd.embedded.api.User user, String statusId)
          Returns a ServiceOutcome containing the Status that has the given id.
 ServiceOutcome<Status> DefaultConstantsService.getStatusByName(com.atlassian.crowd.embedded.api.User user, String statusName)
           
 ServiceOutcome<Status> ConstantsService.getStatusByName(com.atlassian.crowd.embedded.api.User user, String statusName)
          Returns a ServiceOutcome containing the Status that has the given Name.
 ServiceOutcome<Status> DefaultConstantsService.getStatusByTranslatedName(com.atlassian.crowd.embedded.api.User user, String statusName)
           
 ServiceOutcome<Status> ConstantsService.getStatusByTranslatedName(com.atlassian.crowd.embedded.api.User user, String statusName)
          Returns a ServiceOutcome containing the Status that has the given Name.
 

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

Fields in com.atlassian.jira.bc.dataimport declared as ServiceOutcome
 ServiceOutcome<Void> ExportCompletedEvent.outcome
          The outcome of the export.
 

Methods in com.atlassian.jira.bc.dataimport that return ServiceOutcome
 ServiceOutcome<Void> ExportService.export(com.atlassian.crowd.embedded.api.User loggedInUser, String filename, ExportService.Style style, TaskProgressSink taskProgressSink)
          Export JIRA to the given filename with the specified backup style.
 ServiceOutcome<Void> DefaultExportService.export(com.atlassian.crowd.embedded.api.User loggedInUser, String filename, ExportService.Style style, TaskProgressSink taskProgressSink)
           
 ServiceOutcome<Void> ExportService.export(com.atlassian.crowd.embedded.api.User loggedInUser, String filename, TaskProgressSink taskProgressSink)
          Export JIRA to the given filename.
 ServiceOutcome<Void> DefaultExportService.export(com.atlassian.crowd.embedded.api.User loggedInUser, String filename, TaskProgressSink taskProgressSink)
           
 ServiceOutcome<Void> ExportService.exportForDevelopment(com.atlassian.crowd.embedded.api.User loggedInUser, String xmlFilename, TaskProgressSink taskProgressSink)
          Export JIRA to the given filename.
 ServiceOutcome<Void> DefaultExportService.exportForDevelopment(com.atlassian.crowd.embedded.api.User loggedInUser, String xmlFilename, TaskProgressSink taskProgressSink)
           
 

Constructors in com.atlassian.jira.bc.dataimport with parameters of type ServiceOutcome
ExportCompletedEvent(com.atlassian.crowd.embedded.api.User user, String filename, ServiceOutcome<Void> outcome)
           
 

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

Methods in com.atlassian.jira.bc.issue.vote that return ServiceOutcome
 ServiceOutcome<List<VoteHistoryEntry>> DefaultVoteService.getVoterHistory(Issue issue, com.atlassian.crowd.embedded.api.User remoteUser)
           
 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<com.atlassian.crowd.embedded.api.User>> DefaultVoteService.viewVoters(Issue issue, com.atlassian.crowd.embedded.api.User remoteUser)
           
 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<com.atlassian.crowd.embedded.api.User>> DefaultWatcherService.addWatcher(Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, com.atlassian.crowd.embedded.api.User watcher)
           
 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<com.atlassian.crowd.embedded.api.User>>> DefaultWatcherService.getWatchers(Issue issue, com.atlassian.crowd.embedded.api.User remoteUser)
           
 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<com.atlassian.crowd.embedded.api.User>> DefaultWatcherService.removeWatcher(Issue issue, com.atlassian.crowd.embedded.api.User remoteUser, com.atlassian.crowd.embedded.api.User watcher)
           
 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>> DefaultProjectService.getAllProjects(com.atlassian.crowd.embedded.api.User user)
           
 ServiceOutcome<List<Project>> ProjectService.getAllProjects(com.atlassian.crowd.embedded.api.User user)
          Used to retrieve a list of Project objects.
 ServiceOutcome<List<Project>> DefaultProjectService.getAllProjectsForAction(com.atlassian.crowd.embedded.api.User user, ProjectAction action)
           
 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> DefaultVersionService.setReleaseDate(com.atlassian.crowd.embedded.api.User user, Version version, Date releaseDate)
           
 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> DefaultVersionService.setReleaseDate(com.atlassian.crowd.embedded.api.User user, Version version, String releaseDate)
           
 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> DefaultVersionService.setVersionDetails(com.atlassian.crowd.embedded.api.User user, Version version, String name, String description)
           
 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> DefaultVersionService.validateReleaseDate(com.atlassian.crowd.embedded.api.User user, Version version, String releaseDate)
           
 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.