@PublicApi
public interface BulkOperationManager
Modifier and Type | Method and Description |
---|---|
void |
addBulkOperation(String operationName,
Class<? extends BulkOperation> componentClass)
Deprecated.
Since 6.3.6 use
addProgressAwareBulkOperation(String, Class) |
void |
addProgressAwareBulkOperation(String operationName,
Class<? extends ProgressAwareBulkOperation> componentClass)
Add a new operation using the given class
|
Collection<BulkOperation> |
getBulkOperations()
Deprecated.
Since 6.3.6 use
getProgressAwareBulkOperations() |
BulkOperation |
getOperation(String operationName)
Deprecated.
Since 6.3.6 use
getProgressAwareOperation(String) |
Collection<ProgressAwareBulkOperation> |
getProgressAwareBulkOperations()
Returns all available
BulkOperation objects |
ProgressAwareBulkOperation |
getProgressAwareOperation(String operationName)
Returns a
BulkOperation object registered with corresponding name |
boolean |
isValidOperation(String operationName)
Returns true if the operation name is of an existing registered
BulkOperation |
@Deprecated Collection<BulkOperation> getBulkOperations()
getProgressAwareBulkOperations()
BulkOperation
objectsBulkOperation
objectsCollection<ProgressAwareBulkOperation> getProgressAwareBulkOperations()
BulkOperation
objectsBulkOperation
objectsboolean isValidOperation(String operationName)
BulkOperation
operationName
- the operation nameBulkOperation
else false@Deprecated BulkOperation getOperation(String operationName)
getProgressAwareOperation(String)
BulkOperation
object registered with corresponding nameoperationName
- the operation nameBulkOperation
object. Null if doesn't existProgressAwareBulkOperation getProgressAwareOperation(String operationName)
BulkOperation
object registered with corresponding nameoperationName
- the operation nameBulkOperation
object. Null if doesn't exist@Deprecated void addBulkOperation(String operationName, Class<? extends BulkOperation> componentClass)
addProgressAwareBulkOperation(String, Class)
operationName
- - name to register the loaded class undercomponentClass
- - class to loadvoid addProgressAwareBulkOperation(String operationName, Class<? extends ProgressAwareBulkOperation> componentClass)
operationName
- - name to register the loaded class undercomponentClass
- - class to loadCopyright © 2002-2015 Atlassian. All Rights Reserved.