com.atlassian.jira.bulkedit
Interface BulkOperationManager

All Known Implementing Classes:
DefaultBulkOperationManager

public interface BulkOperationManager


Method Summary
 void addBulkOperation(String operationName, Class componentClass)
          Add a new operation using the JiraUtils.loadComponent(java.lang.String, java.lang.Class) to load the class
 Collection getBulkOperations()
          Returns all available BulkOperation objects
 BulkOperation getOperation(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
 

Method Detail

getBulkOperations

public Collection getBulkOperations()
Returns all available BulkOperation objects

Returns:
Collection of BulkOperation objects

isValidOperation

public boolean isValidOperation(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

public BulkOperation getOperation(String operationName)
Returns a BulkOperation object registered with corresponding name

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

addBulkOperation

public void addBulkOperation(String operationName,
                             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-2006 Atlassian. All Rights Reserved.