com.filenet.rm.bds

Interface BatchResultItem



  • public interface BatchResultItem
    This interface is used to represent the result of a single member operation that is executed using the BulkDeclarationService batching mechanism.
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      java.lang.String getOperationIdent()
      Returns the identifier of the operation that this BatchResultItem represents.
      ResultItemStatus getResultStatus()
      Returns the current status of the operation associated with this BatchResultItem instance.
      java.lang.Object getResultValue()
      Returns the result of an associated operation as an Object.
      boolean isValueAnException()
      Identifies whether or not the corresponding result value represents an exception.
    • Method Detail

      • getOperationIdent

        java.lang.String getOperationIdent()
        Returns the identifier of the operation that this BatchResultItem represents.
        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.

© Copyright IBM Corp. 2006, 2013. All Rights Reserved.