com.filenet.rm.bds
Interface BatchResultItem
- public interface BatchResultItem
BulkDeclarationService
batching
mechanism.
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getOperationIdent()
Returns the identifier of the operation that this
BatchResultItem represents.
|
getResultStatus()
Returns the current status of the operation associated with this
BatchResultItem instance.
|
|
|
getResultValue()
Returns the result of an associated operation as an
Object .
|
|
isValueAnException()
Identifies whether or not the corresponding result value represents an exception.
|
Method Detail
getOperationIdent
- java.lang.String getOperationIdent( )
Returns:
String
operation identifier. getResultStatus
- ResultItemStatus getResultStatus( )
Returns the current status of the operation associated with this
BatchResultItem
instance.
Returns:
an
ResultItemStatus
enumerated constant. getResultValue
- java.lang.Object getResultValue( )
Returns the result of an associated operation as an
Object
.
Although returned as an Object
, this value's type is actually
dependent upon the particular operation or is an exception instance.
Returns:
an
Object
operation result. Can be null
. isValueAnException
- boolean isValueAnException()
Identifies whether or not the corresponding result value represents an exception.
Returns:
true
if the result value represents an exception.
BatchResultItem
represents.