com.filenet.api.core
Class Batch
- java.lang.Object
-
- com.filenet.api.core.Batch
-
- Direct Known Subclasses:
- RetrievingBatch, UpdatingBatch
public abstract class Batch extends java.lang.ObjectAbstract superclass for the accumulation of batch items for a pending batch operation. The batch is ajava.util.ListofBatchItemHandleinstances.- See Also:
BatchItemHandle
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.util.ListgetBatchItemHandles(IndependentObject object)Returns a list of theBatchItemHandleinstances in this batch that reference the specified object, or, if theobjectparameter isnull, the list of allBatchItemHandleinstances in this batch.
-
-
-
Method Detail
-
getBatchItemHandles
public java.util.List getBatchItemHandles(IndependentObject object)
Returns a list of theBatchItemHandleinstances in this batch that reference the specified object, or, if theobjectparameter isnull, the list of allBatchItemHandleinstances in this batch.- Parameters:
object- AnIndependentObjectinstance for the object that is expected to be referenced in this batch, ornullto return the list of allBatchItemHandleinstances.- Returns:
- A
Listof anyBatchItemHandleinstances referencing the specified object. If the specifiedobjectis not in the batch, an empty list is returned. If theobjectparameter isnull, the list of allBatchItemHandleinstances is returned.
-
-