Class DataHubTransferConfiguration
- java.lang.Object
-
- de.hybris.platform.sap.core.configuration.datahub.DataHubTransferConfiguration
-
public class DataHubTransferConfiguration extends java.lang.ObjectThis class represents a single Data Hub configuration.
-
-
Constructor Summary
Constructors Constructor Description DataHubTransferConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddToDataHubConfigurations()Adds this Data Hub configuration to the map of Data Hub configurations.AbstractPopulatingConvertergetConverter()Returns the converter of the Data Hub configuration.java.lang.StringgetItemCode()Returns the item code (String) of the Data Hub configuration.java.lang.StringgetRawType()Returns the raw type of the Data Hub configuration.voidsetConverter(AbstractPopulatingConverter converter)Sets the converter of the Data Hub configuration.voidsetDataHubManager(DataHubTransferConfigurationManager dataHubManager)Sets the Data Hub manager.voidsetItemCode(java.lang.String code)Sets the item code (String) of the Data Hub configuration.voidsetRawType(java.lang.String rawType)Sets the raw type of the Data Hub configuration.
-
-
-
Method Detail
-
setDataHubManager
public void setDataHubManager(DataHubTransferConfigurationManager dataHubManager)
Sets the Data Hub manager.- Parameters:
dataHubManager- the Data Hub manager
-
addToDataHubConfigurations
public void addToDataHubConfigurations()
Adds this Data Hub configuration to the map of Data Hub configurations.
-
getItemCode
public java.lang.String getItemCode()
Returns the item code (String) of the Data Hub configuration.- Returns:
- the item code
-
setItemCode
public void setItemCode(java.lang.String code)
Sets the item code (String) of the Data Hub configuration.- Parameters:
code- the given item code
-
getRawType
public java.lang.String getRawType()
Returns the raw type of the Data Hub configuration.- Returns:
- the given raw type
-
setRawType
public void setRawType(java.lang.String rawType)
Sets the raw type of the Data Hub configuration.- Parameters:
rawType- the given raw type
-
getConverter
public AbstractPopulatingConverter getConverter()
Returns the converter of the Data Hub configuration.- Returns:
- the converter
-
setConverter
public void setConverter(AbstractPopulatingConverter converter)
Sets the converter of the Data Hub configuration.- Parameters:
converter- the given converter
-
-