Package com.orchestranetworks.addon.adix
Class AdixImportResultBean
- java.lang.Object
-
- com.orchestranetworks.addon.adix.AdixImportResultBean
-
public final class AdixImportResultBean extends java.lang.ObjectDeprecated.Since 2.3.0, replaced byImportResult.Stores information after importing data into a table.
-
-
Constructor Summary
Constructors Constructor Description AdixImportResultBean()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description intgetRowsDeleted()Deprecated.Returns the number of records that have been deleted in the table when the import mode is 'Replace all content'.intgetRowsInserted()Deprecated.Returns the number of records that have been inserted into the table.intgetRowsUnchanged()Deprecated.Returns the number of records that are unchanged in the table.intgetRowsUpdated()Deprecated.Returns the number of records that are updated in the table.com.orchestranetworks.schema.SchemaNodegetTableNode()Deprecated.Returns the schema node of the table into which data will imported.intgetTotalErrorRow()Deprecated.Returns the number of invalid records in the imported file.intgetTotalRow()Deprecated.Returns the total number of records in the imported file.
-
-
-
Method Detail
-
getRowsInserted
public int getRowsInserted()
Deprecated.Returns the number of records that have been inserted into the table.
-
getRowsUpdated
public int getRowsUpdated()
Deprecated.Returns the number of records that are updated in the table.
-
getRowsDeleted
public int getRowsDeleted()
Deprecated.Returns the number of records that have been deleted in the table when the import mode is 'Replace all content'.
-
getRowsUnchanged
public int getRowsUnchanged()
Deprecated.Returns the number of records that are unchanged in the table.
-
getTotalRow
public int getTotalRow()
Deprecated.Returns the total number of records in the imported file.
-
getTotalErrorRow
public int getTotalErrorRow()
Deprecated.Returns the number of invalid records in the imported file.
-
getTableNode
public com.orchestranetworks.schema.SchemaNode getTableNode()
Deprecated.Returns the schema node of the table into which data will imported.
-
-