com.atlassian.jira.bc.config
Interface ConstantsService

All Known Implementing Classes:
DefaultConstantsService

public interface ConstantsService

This class contains methods for managing JIRA constants such as issue types, statuses, priorities and resolutions.

Since:
v4.2

Method Summary
 ServiceOutcome<IssueType> getIssueTypeById(com.atlassian.crowd.embedded.api.User user, String issueTypeId)
          Returns a ServiceOutcome containing the IssueType that has the given id.
 ServiceOutcome<Status> getStatusById(com.atlassian.crowd.embedded.api.User user, String statusId)
          Returns a ServiceOutcome containing the Status that has the given id.
 

Method Detail

getStatusById

ServiceOutcome<Status> getStatusById(com.atlassian.crowd.embedded.api.User user,
                                     String statusId)
Returns a ServiceOutcome containing the Status that has the given id. If the Status with the provided id is not found, or if the calling user does not have permission to see the Status, the ServiceOutcome will contain the appropriate error. Otherwise, the status can be obtained by calling ServiceOutcome.getReturnedValue() on the returned ServiceOutcome.

Parameters:
user - the calling user
statusId - a String containing a Status id
Returns:
a ServiceOutcome

getIssueTypeById

ServiceOutcome<IssueType> getIssueTypeById(com.atlassian.crowd.embedded.api.User user,
                                           String issueTypeId)
Returns a ServiceOutcome containing the IssueType that has the given id. If there is no IssueType with the given id, or if the calling user does not have permission to see the IssueType, the ServiceOutcome will contain an error message to that effect. Otherwise, the IssueType can be obtained by calling ServiceOutcome.getReturnedValue() on the returned ServiceOutcome.

Parameters:
user - the calling user
issueTypeId - a String containing an IssueType id
Returns:
a ServiceOutcome


Copyright © 2002-2011 Atlassian. All Rights Reserved.