com.ibm.pim.common
Interface BatchStatistics


public interface BatchStatistics

Interface that provides statistics information about a batched operation.

Since:
6.0.0

Field Summary
static java.lang.String copyright
           
 
Method Summary
 int duplicateItemsFound()
          Returns the number of items that were duplicate
 int errorCount()
          Returns the error count
 int failedValidation()
          Returns the number of items that failed validation
 int itemDeleted()
          Returns the number of items that got deleted
 int itemsAdded()
          Returns the number of items that got added
 int itemsAlreadyCheckedOut()
          Returns the number of items that were already checked out
 int itemsCheckedOut()
          Returns the number of items that were checked out
 int itemsModified()
          Returns the number of items that got modified
 int itemsNotFound()
          Returns the number of items that were not found
 int itemsProcessed()
          Returns the number of items that got processed
 int warningsCount()
          Returns the count of warnings
 

Field Detail

copyright

static final java.lang.String copyright
See Also:
Constant Field Values
Method Detail

itemsAdded

int itemsAdded()
Returns the number of items that got added


itemsModified

int itemsModified()
Returns the number of items that got modified


itemDeleted

int itemDeleted()
Returns the number of items that got deleted


itemsProcessed

int itemsProcessed()
Returns the number of items that got processed


warningsCount

int warningsCount()
Returns the count of warnings


errorCount

int errorCount()
Returns the error count


failedValidation

int failedValidation()
Returns the number of items that failed validation


itemsNotFound

int itemsNotFound()
Returns the number of items that were not found


duplicateItemsFound

int duplicateItemsFound()
Returns the number of items that were duplicate


itemsCheckedOut

int itemsCheckedOut()
Returns the number of items that were checked out


itemsAlreadyCheckedOut

int itemsAlreadyCheckedOut()
Returns the number of items that were already checked out