Package com.orchestranetworks.service
Interface ImportResult
public interface ImportResult
Describes the result of an import.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.this method returns an internal object.Returns an iterator over XPath predicate strings.intReturns the number of created records.Returns an iterator over XPath predicate strings.intReturns the number of deleted records.For the root result, returns the import results organized by the impacted tables.intReturns the number of unchanged records.intReturns the number of updated records.
-
Method Details
-
getImportResults
Map<Path,ImportResult> getImportResults()For the root result, returns the import results organized by the impacted tables. When theImportResultis obtained usingProcedureContext.doImport(ImportSpec), each table that has been modified has an entry in the returned map that describes all associated modifications.Returns
The map containsnullif theImportResultis an entry of the returned map.table pathkeys withImportResultvalues. -
getCreatedRecords
Deprecated.this method returns an internal object.Returns an iterator over XPath predicate strings. Returnsnullif a non-detailed result is expected.- See Also:
-
getCreatedRecordsPredicatesStrings
Returns an iterator over XPath predicate strings. Returnsnullif a non-detailed result is expected.- See Also:
-
getDeletedRecordsPredicatesStrings
Returns an iterator over XPath predicate strings. Returnsnullif a non-detailed result is expected.- See Also:
-
getCreationQty
int getCreationQty()Returns the number of created records. -
getUpdateQty
int getUpdateQty()Returns the number of updated records. -
getUnchangeQty
int getUnchangeQty()Returns the number of unchanged records. -
getDeletionQty
int getDeletionQty()Returns the number of deleted records.
-