Interface ImportConfigurationSpec<T extends Table>
- All Superinterfaces:
 ConfigurationSpec<T>
- All Known Implementing Classes:
 CSVImportConfigurationSpec,FileImportConfigurationSpec,SpreadsheetImportConfigurationSpec,SQLImportConfigurationSpec,TransferConfigurationSpec,XMLImportConfigurationSpec
Specifies the configuration used for data import.
- Since:
 - 2.3.0
 
- 
Method Summary
Modifier and TypeMethodDescriptionReturns the specified import mode.booleanReturnstrueif all empty ornullprimary keys were checked before data import andfalseif this verification was not performed.booleanReturnstrueif all empty ornullvalues are ignored in the process of importing data.booleanReturnstrueif all triggers and constraints are disabled in the process of importing data.Methods inherited from interface com.orchestranetworks.addon.dex.configuration.ConfigurationSpec
getCurrentDataset, getCurrentTable, getServiceType, getSession, getSourceTableFilters, getSourceTables 
- 
Method Details
- 
isImportForced
boolean isImportForced()Returnstrueif all triggers and constraints are disabled in the process of importing data. - 
getImportMode
ImportMode getImportMode()Returns the specified import mode. - 
isEmptyOrNullValueIgnored
boolean isEmptyOrNullValueIgnored()Returnstrueif all empty ornullvalues are ignored in the process of importing data. - 
isEmptyOrNullPrimaryKeyChecked
boolean isEmptyOrNullPrimaryKeyChecked()Returnstrueif all empty ornullprimary keys were checked before data import andfalseif this verification was not performed. 
 -