Class DataExchangeServiceType
- java.lang.Object
-
- com.orchestranetworks.addon.dataexchange.DataExchangeServiceType
-
public final class DataExchangeServiceType extends java.lang.ObjectDeprecated.Since 2.3.0, replaced byServiceType.This class defines all service types that are used for services of {addon.label} service.- Since:
- 2.1.0
-
-
Field Summary
Fields Modifier and Type Field Description static DataExchangeServiceTypeEXPORTDeprecated.A service type corresponding to the process of exporting data.static DataExchangeServiceTypeIMPORTDeprecated.A service type corresponding to the process of importing data.static DataExchangeServiceTypeTRANSFERDeprecated.A service type corresponding to the process of transferring data.static DataExchangeServiceTypeUNKNOWNDeprecated.An unknown service type.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetValue()Deprecated.Returns the stringvalueofthis.booleanisExport()Deprecated.Returnstrueif service type isEXPORT.booleanisImport()Deprecated.Returnstrueif service type isIMPORT.booleanisTransfer()Deprecated.Returnstrueif service type isTRANSFER.booleanisUnknown()Deprecated.Returnstrueif service type isUNKNOWN.static DataExchangeServiceTypeparse(java.lang.String value)Deprecated.Returns a service type by given stringvalue.
-
-
-
Field Detail
-
TRANSFER
public static final DataExchangeServiceType TRANSFER
Deprecated.A service type corresponding to the process of transferring data.
-
IMPORT
public static final DataExchangeServiceType IMPORT
Deprecated.A service type corresponding to the process of importing data.
-
EXPORT
public static final DataExchangeServiceType EXPORT
Deprecated.A service type corresponding to the process of exporting data.
-
UNKNOWN
public static final DataExchangeServiceType UNKNOWN
Deprecated.An unknown service type.
-
-
Method Detail
-
parse
public static DataExchangeServiceType parse(java.lang.String value)
Deprecated.Returns a service type by given stringvalue.
-
isTransfer
public boolean isTransfer()
Deprecated.Returnstrueif service type isTRANSFER.
-
isImport
public boolean isImport()
Deprecated.Returnstrueif service type isIMPORT.
-
isExport
public boolean isExport()
Deprecated.Returnstrueif service type isEXPORT.
-
isUnknown
public boolean isUnknown()
Deprecated.Returnstrueif service type isUNKNOWN.
-
getValue
public java.lang.String getValue()
Deprecated.Returns the stringvalueofthis.
-
-