java.lang.Object | |
↳ | com.atlassian.jira.bc.config.DefaultConstantsService |
This class implements constant-related business cases.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new DefaultConstantsService.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns a ServiceOutcome containing all IssueTypes.
| |||||||||||
Returns a ServiceOutcome containing all StatusCategories.
| |||||||||||
Returns a ServiceOutcome containing all Statuses.
| |||||||||||
Returns a ServiceOutcome containing default StatusCategory.
| |||||||||||
Returns a ServiceOutcome containing the IssueType that has the given id.
| |||||||||||
Returns a ServiceOutcome containing the Status that has the given id.
| |||||||||||
Returns a ServiceOutcome containing the Status that has the given Name.
| |||||||||||
Returns a ServiceOutcome containing the Status that has the given Name.
| |||||||||||
Returns a ServiceOutcome containing StatusCategory that has the gived id.
| |||||||||||
Returns a ServiceOutcome containing StatusCategory that has the gived key.
| |||||||||||
Returns a ServiceOutcome containing StatusCategories visible to any user.
| |||||||||||
Returns a boolean value indicating whether statuses should appear as lozenges or not.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Creates a new DefaultConstantsService.
i18n | a I18nHelper |
---|---|
constantsManager | a ConstantsManager |
permissionManager | a PermissionManager |
workflowSchemeMgr | a WorkflowSchemeManager |
workflowMgr | a WorkflowManager |
issueTypeSchemeMgr | an IssueTypeSchemeManager |
statusCategoryManager | a StatusCategoryManager |
Returns a ServiceOutcome containing all IssueTypes. Only issue types that the calling user has permission to see will be returned in the ServiceOutcome
user | the calling user |
---|
Returns a ServiceOutcome containing all StatusCategories.
user | the calling user. Will be used for formatting error messages |
---|
Returns a ServiceOutcome containing all Statuses. Only statuses that the calling user has permission to see will be returned in the ServiceOutcome
user | the calling user |
---|
Returns a ServiceOutcome containing default StatusCategory. The method returns status category independently on dark feature state.
user | the calling User. Will be used for formatting error messages |
---|
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 getReturnedValue()
on the returned ServiceOutcome.
user | the calling user |
---|---|
issueTypeId | a String containing an IssueType id |
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 getReturnedValue()
on the returned ServiceOutcome.
user | the calling user |
---|---|
statusId | a String containing a Status id |
Returns a ServiceOutcome containing the Status that has the given Name. If the Status with the provided Name 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 getReturnedValue()
on the returned ServiceOutcome.
user | the calling user |
---|---|
statusName | a String containing a Status name |
Returns a ServiceOutcome containing the Status that has the given Name.
The preference is to find the status by its translated name. If no matching translated name is found the true (untranslated) name
will be tried.
If the Status with the provided Name 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 getReturnedValue()
on the returned ServiceOutcome.
user | the calling user |
---|---|
statusName | a String containing a Status name |
Returns a ServiceOutcome containing StatusCategory that has the gived id. If the Status with the provided id is not found,
the ServiceOutcome will contain the appropriate error.
Otherwise, the status can be obtained by calling getReturnedValue()
on the returned ServiceOutcome.
user | the calling user. Will be used for formatting error messages |
---|---|
id | a String containing a StatusCategory id |
Returns a ServiceOutcome containing StatusCategory that has the gived key.
If the Status with the provided key is not found, the ServiceOutcome will contain the appropriate error.
Otherwise, the status can be obtained by calling getReturnedValue()
on the returned ServiceOutcome.
user | the calling user. Will be used for formatting error messages |
---|---|
key | a String containing a StatusCategory id |
Returns a ServiceOutcome containing StatusCategories visible to any user.
user | the calling user. Will be used for formatting error messages |
---|
Returns a boolean value indicating whether statuses should appear as lozenges or not.