java.lang.Object | ||
↳ | com.atlassian.jira.config.AbstractIssueConstantsManager<T extends com.atlassian.jira.issue.IssueConstant> | |
↳ | com.atlassian.jira.config.DefaultResolutionManager |
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Adds a new resolution.
| |||||||||||
Edits an existing resolution.
| |||||||||||
Returns the default resolution.
| |||||||||||
Returns a resolution with the specified id.
| |||||||||||
Returns the resolution with the specified name.
| |||||||||||
Return all resolutions.
| |||||||||||
Move the resolution down in the order.
| |||||||||||
Move the resolution up in the order.
| |||||||||||
Removes a resolution with the specified id.
| |||||||||||
Sets the default resolution.
| |||||||||||
This method will be called after the plugin system is fully initialised and all components added to the
dependency injection framework.
|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
Adds a new resolution. The new resolution must have a unique name.
name | resolution name. Cannot be null or blank. |
---|---|
description | the resolution description. Can be null or blank. |
Resolution
.
Edits an existing resolution.
resolution | resolution to edit. |
---|---|
name | the new name. |
description | the new description |
Returns the default resolution.
Will return null if no default is set.
Returns a resolution with the specified id.
id | resolution id. |
---|
Resolution
with the specified id or null if no resolution whith this id exists.
Returns the resolution with the specified name. It is case insensitive.
name | the name of the resolution. |
---|
Resolution
with the specified name.
Return all resolutions. The list is ordered by the sequence.
The order can be modified by calling moveResolutionDown(String)
or moveResolutionUp(String)
.
Resolution
s
Move the resolution down in the order.
id | id of the resolution. |
---|
Move the resolution up in the order.
id | id of the resolution. |
---|
Removes a resolution with the specified id. When removing a resolution all issues which have this resolution will have to be migrated to use a different resultion specified by the second argument.
resolutionId | resolution to remove. |
---|---|
newResolutionId | new resolution for issues which have the resolution which has been removed. Cannot be null. |
Sets the default resolution.
You can pass null to clear the default.
id | resolution id or null. |
---|
This method will be called after the plugin system is fully initialised and all components added to the dependency injection framework.