com.filenet.api.core
Interface BatchItemHandle
-
public interface BatchItemHandleReferences objects for batch operations. A batch contains a list ofBatchItemHandleinstances. Methods are provided to retrieve the object referenced by a batch item and identify an exception (if any) associated with the item.- See Also:
Batch,RetrievingBatch,UpdatingBatch
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description EngineRuntimeExceptiongetException()Returns the exception assigned to the batch item.IndependentObjectgetObject()Returns the object referenced by this batch item.booleanhasException()Indicates whether the batch item has an associated exception.
-
-
-
Method Detail
-
getObject
IndependentObject getObject()
Returns the object referenced by this batch item.- Returns:
- An
IndependentObjectinstance for the object referenced.
-
hasException
boolean hasException()
Indicates whether the batch item has an associated exception. This is only meaningful after the batch operation has been performed.- Returns:
- A
booleanvalue of true if there is an exception associated with the batch item; false otherwise.
-
getException
EngineRuntimeException getException()
Returns the exception assigned to the batch item. This is only meaningful after the batch operation has been performed.- Returns:
- An EngineRuntimeException object containing the exception assigned to this batch item.
-
-