Class DataExchangeTransferOption
java.lang.Object
com.orchestranetworks.addon.dataexchange.DataExchangeTransferOption
Deprecated.
No replacement. The system will check the compatibility automatically.
This class defines all options that are used for the transfer data service.
- Since:
- 2.0.0
-
Field Summary
Modifier and TypeFieldDescriptionstatic final DataExchangeTransferOption
Deprecated.An option defines that data will be transferred between datasets that do not share the same data model.static final DataExchangeTransferOption
Deprecated.An option defines that data will be transferred between datasets that share the same data model.static final DataExchangeTransferOption
Deprecated.An option corresponding to an unknown execution. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
Deprecated.Returns stringvalue
ofthis
.boolean
Deprecated.Returnstrue
if the transfer option isIN_OTHER_DATA_MODEL
.boolean
Deprecated.Returnstrue
if the transfer option isIN_SAME_DATA_MODEL
.boolean
Deprecated.Returnstrue
if transfer option isUNKNOWN
.static DataExchangeTransferOption
Deprecated.Returns a transfer mode by the given stringvalue
.
-
Field Details
-
IN_SAME_DATA_MODEL
Deprecated.An option defines that data will be transferred between datasets that share the same data model. -
IN_OTHER_DATA_MODEL
Deprecated.An option defines that data will be transferred between datasets that do not share the same data model. -
UNKNOWN
Deprecated.An option corresponding to an unknown execution.
-
-
Method Details
-
parse
Deprecated.Returns a transfer mode by the given stringvalue
. -
isInSameDataModel
public boolean isInSameDataModel()Deprecated.Returnstrue
if the transfer option isIN_SAME_DATA_MODEL
. -
isInOtherDataModel
public boolean isInOtherDataModel()Deprecated.Returnstrue
if the transfer option isIN_OTHER_DATA_MODEL
. -
isUnknown
public boolean isUnknown()Deprecated.Returnstrue
if transfer option isUNKNOWN
. -
getValue
Deprecated.Returns stringvalue
ofthis
.
-