public class BulkArchiveOperation extends Object implements ProgressAwareBulkOperation
| Modifier and Type | Field and Description |
|---|---|
static String |
NAME |
static String |
NAME_KEY |
| Constructor and Description |
|---|
BulkArchiveOperation(com.atlassian.event.api.EventPublisher eventPublisher,
ArchivedIssueService archivedIssueService,
IssueManager issueManager,
I18nHelper.BeanFactory i18nHelper) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
canPerform(BulkEditBean bulkEditBean,
ApplicationUser remoteUser)
Determines whether the operation can be performed with the given set of issues
|
boolean |
equals(Object o) |
String |
getCannotPerformMessageKey()
An i18n key to be used to render the error message to be displayed when the user can not perform this bulk
operation.
|
String |
getDescriptionKey() |
String |
getNameKey()
An i18n key used to display a short description of this operation in the UI.
|
int |
getNumberOfTasks(BulkEditBean bulkEditBean)
Returns number of tasks/stages to be executed as part of this bulk operation.
|
String |
getOperationName()
Returns the "operation name".
|
void |
perform(BulkEditBean bulkEditBean,
ApplicationUser applicationUser,
Context taskContext)
Performs the operation on the given set of issues and updates the progress.
|
public static final String NAME
public static final String NAME_KEY
public BulkArchiveOperation(com.atlassian.event.api.EventPublisher eventPublisher,
ArchivedIssueService archivedIssueService,
IssueManager issueManager,
I18nHelper.BeanFactory i18nHelper)
public boolean canPerform(BulkEditBean bulkEditBean, ApplicationUser remoteUser)
ProgressAwareBulkOperationcanPerform in interface ProgressAwareBulkOperationBulkEditBean.getSelectedIssues()public void perform(BulkEditBean bulkEditBean, ApplicationUser applicationUser, Context taskContext) throws BulkOperationException
ProgressAwareBulkOperation
During execution, the implementation class will update the progress by typically calling
Context.start(object); on the context passed to get a task object, and subsequently call
Context.Task.complete(); on the the task object to indicate task has finished.
perform in interface ProgressAwareBulkOperationBulkOperationExceptionpublic int getNumberOfTasks(BulkEditBean bulkEditBean)
ProgressAwareBulkOperationProgressAwareBulkOperation.perform(com.atlassian.jira.web.bean.BulkEditBean, com.atlassian.jira.user.ApplicationUser,
com.atlassian.jira.task.context.Context).getNumberOfTasks in interface ProgressAwareBulkOperationpublic String getNameKey()
IssueOperationgetNameKey in interface IssueOperationpublic String getDescriptionKey()
getDescriptionKey in interface IssueOperationpublic String getOperationName()
ProgressAwareBulkOperation
This is used to build up the name of the action used to render the details screen
in the bulk change UI.
The action name that is generated as operationName + "Details.jspa". See BulkChooseOperation
for details
getOperationName in interface ProgressAwareBulkOperationpublic String getCannotPerformMessageKey()
ProgressAwareBulkOperationgetCannotPerformMessageKey in interface ProgressAwareBulkOperationCopyright © 2002-2024 Atlassian. All Rights Reserved.