com.atlassian.jira.bulkedit
Interface BulkOperationManager

All Known Implementing Classes:
DefaultBulkOperationManager

public interface BulkOperationManager


Method Summary
 void addBulkOperation(java.lang.String operationName, java.lang.Class componentClass)
          Add a new operation using the JiraUtils.loadComponent(java.lang.String, java.lang.Class) to load the class
 java.util.Collection getBulkOperations()
          Returns all available BulkOperation objects
 BulkOperation getOperation(java.lang.String operationName)
          Returns a BulkOperation object registered with corresponding name
 boolean isValidOperation(java.lang.String operationName)
          Returns true if the operation name is of an existing registered BulkOperation
 

Method Detail

getBulkOperations

java.util.Collection getBulkOperations()
Returns all available BulkOperation objects

Returns:
Collection of BulkOperation objects

isValidOperation

boolean isValidOperation(java.lang.String operationName)
Returns true if the operation name is of an existing registered BulkOperation

Parameters:
operationName -
Returns:
true if the operation name is of an existing BulkOperation else false

getOperation

BulkOperation getOperation(java.lang.String operationName)
Returns a BulkOperation object registered with corresponding name

Parameters:
operationName -
Returns:
BulkOperation object. Null if doesn't exist

addBulkOperation

void addBulkOperation(java.lang.String operationName,
                      java.lang.Class componentClass)
Add a new operation using the JiraUtils.loadComponent(java.lang.String, java.lang.Class) to load the class

Parameters:
operationName - - name to register the loaded class under
componentClass - - class to load


Copyright © 2002-2010 Atlassian. All Rights Reserved.