Class DataExchangeImportSpec
- java.lang.Object
-
- com.orchestranetworks.addon.dataexchange.DataExchangeSpec
-
- com.orchestranetworks.addon.dataexchange.DataExchangeImportSpec
-
- Direct Known Subclasses:
DataExchangeImportSQLSpec
public class DataExchangeImportSpec extends DataExchangeSpec
Deprecated.Since 2.3.0, replaced byDataExchangeSpec.Stores specifications for import services, including import type and import mode.- Since:
- 2.0.0
- See Also:
ImportConfigurationSpec
-
-
Constructor Summary
Constructors Constructor Description DataExchangeImportSpec()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.io.FilegetImportedFile()Deprecated.Returns the specified imported file.DataExchangeImportModegetImportMode()Deprecated.Returns the specified import mode.DataExchangeImportTypegetImportType()Deprecated.Returns the specified import type.booleanisCheckEmptyORNullPrimaryKeys()Deprecated.Returnstrueif all empty ornullprimary keys were checked before data import andfalseif this verification was not performed.booleanisForcedImport()Deprecated.Returnstrueif all triggers and constraints are disabled in the process of importing data.booleanisIgnoreEmptyORNullValue()Deprecated.Returnstrueif all empty ornullvalues are ignored in the process of importing data.booleanisUseHeader()Deprecated.Returnstrueif an XML file contains the {addon.label} header.voidsetCheckEmptyORNullPrimaryKeys(boolean isCheckEmptyORNullPrimaryKeys)Deprecated.Sets whether all empty ornullprimary keys are ignored or checked in the process of importing data.voidsetForcedImport(boolean forcedImport)Deprecated.Sets whether all triggers and constraints are disabled or enabled in the process of importing data.voidsetIgnoreEmptyORNullValue(boolean ignoreEmptyORNullValue)Deprecated.Sets whether all empty ornullvalues are ignored or accepted in the process of importing data.voidsetImportedFile(java.io.File importedFile)Deprecated.Sets an imported file to the specified value.voidsetImportMode(DataExchangeImportMode importMode)Deprecated.Sets an import mode to the specified value.voidsetImportType(DataExchangeImportType importType)Deprecated.Sets an import type to the specified value.voidsetUseHeader(boolean usedHeader)Deprecated.Sets an XML file to use the {addon.label} header.-
Methods inherited from class com.orchestranetworks.addon.dataexchange.DataExchangeSpec
getDataAccessSpec, getTablePaths, setDataAccessSpec, setTablePaths
-
-
-
-
Method Detail
-
getImportedFile
public final java.io.File getImportedFile()
Deprecated.Returns the specified imported file.
-
setImportedFile
public final void setImportedFile(java.io.File importedFile)
Deprecated.Sets an imported file to the specified value.
-
getImportType
public final DataExchangeImportType getImportType()
Deprecated.Returns the specified import type.
-
setImportType
public final void setImportType(DataExchangeImportType importType)
Deprecated.Sets an import type to the specified value.
-
getImportMode
public final DataExchangeImportMode getImportMode()
Deprecated.Returns the specified import mode.
-
setImportMode
public final void setImportMode(DataExchangeImportMode importMode)
Deprecated.Sets an import mode to the specified value.
-
isUseHeader
public final boolean isUseHeader()
Deprecated.Returnstrueif an XML file contains the {addon.label} header.- Since:
- 2.1.0
-
setUseHeader
public final void setUseHeader(boolean usedHeader)
Deprecated.Sets an XML file to use the {addon.label} header.- Since:
- 2.1.0
-
isForcedImport
public final boolean isForcedImport()
Deprecated.Returnstrueif all triggers and constraints are disabled in the process of importing data.- Since:
- 2.1.0
-
setForcedImport
public final void setForcedImport(boolean forcedImport)
Deprecated.Sets whether all triggers and constraints are disabled or enabled in the process of importing data.- Since:
- 2.1.0
-
isIgnoreEmptyORNullValue
public final boolean isIgnoreEmptyORNullValue()
Deprecated.Returnstrueif all empty ornullvalues are ignored in the process of importing data.- Since:
- 2.1.5
-
setIgnoreEmptyORNullValue
public final void setIgnoreEmptyORNullValue(boolean ignoreEmptyORNullValue)
Deprecated.Sets whether all empty ornullvalues are ignored or accepted in the process of importing data.- Since:
- 2.1.5
-
isCheckEmptyORNullPrimaryKeys
public final boolean isCheckEmptyORNullPrimaryKeys()
Deprecated.Returnstrueif all empty ornullprimary keys were checked before data import andfalseif this verification was not performed.- Since:
- 2.1.6
-
setCheckEmptyORNullPrimaryKeys
public final void setCheckEmptyORNullPrimaryKeys(boolean isCheckEmptyORNullPrimaryKeys)
Deprecated.Sets whether all empty ornullprimary keys are ignored or checked in the process of importing data.- Since:
- 2.1.6
-
-