Class DataExchangeImportType
- java.lang.Object
-
- com.orchestranetworks.addon.dataexchange.DataExchangeImportType
-
public final class DataExchangeImportType extends java.lang.ObjectDeprecated.Since 2.3.0, replaced byServiceType.Defines all import types used for EBX Data Exchange Add-on Import services.- Since:
- 2.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static DataExchangeImportTypeIMPORT_DEFAULT_SQLDeprecated.An import type corresponding to the SQL import process.static DataExchangeImportTypeIMPORT_XMLDeprecated.An import type corresponding to the XML import process.static DataExchangeImportTypeUNKNOWNDeprecated.An undefined type.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetValue()Deprecated.Returns the stringvalueof this.booleanisDefaultSQLImport()Deprecated.Returnstrueif the import type isIMPORT_DEFAULT_SQL.booleanisImportXML()Deprecated.Returnstrueif import type isIMPORT_XML.booleanisUnknown()Deprecated.Returnstrueif the type isUNKNOWN.static DataExchangeImportTypeparse(java.lang.String value)Deprecated.Returns aDataExchangeImportTypeby the given string value.
-
-
-
Field Detail
-
IMPORT_XML
public static final DataExchangeImportType IMPORT_XML
Deprecated.An import type corresponding to the XML import process.
-
IMPORT_DEFAULT_SQL
public static final DataExchangeImportType IMPORT_DEFAULT_SQL
Deprecated.An import type corresponding to the SQL import process.- Since:
- 2.2.0
-
UNKNOWN
public static final DataExchangeImportType UNKNOWN
Deprecated.An undefined type.
-
-
Method Detail
-
parse
public static DataExchangeImportType parse(java.lang.String value)
Deprecated.Returns aDataExchangeImportTypeby the given string value.
-
isImportXML
public boolean isImportXML()
Deprecated.Returnstrueif import type isIMPORT_XML.
-
isDefaultSQLImport
public boolean isDefaultSQLImport()
Deprecated.Returnstrueif the import type isIMPORT_DEFAULT_SQL.- Since:
- 2.2.0
-
isUnknown
public boolean isUnknown()
Deprecated.Returnstrueif the type isUNKNOWN.
-
getValue
public java.lang.String getValue()
Deprecated.Returns the stringvalueof this.
-
-