Class AbstractSpecialValueTranslator
- java.lang.Object
-
- de.hybris.platform.impex.jalo.translators.AbstractSpecialValueTranslator
-
- All Implemented Interfaces:
SpecialValueTranslator
- Direct Known Subclasses:
B2BUnitAddressDeletionNotificationTranslator,ClassificationAttributeTranslator,CustomerReplicationNotificationTranslator,DataHubTranslator,DataHubTranslator,DefaultSpecialValueTranslator,MarketplaceProductApprovalTranslator,MarketplaceProductCarouselsSynchronizationTranslator,MediaDataTranslator,MyTranslator,SapClassificationAttributeTranslator,SapRevenueCloudCreateUpdatePayNowChargeTranslator,SapRevenueCloudSubscriptionPricePlanEndDateTranslator,StockTranslator,UserPasswordTranslator,VelocityTranslator
public class AbstractSpecialValueTranslator extends java.lang.Object implements SpecialValueTranslator
Abstract implementation ofSpecialValueTranslatorwith default method implementations. This allows extensions to not specifying some methods if they are not needed.
-
-
Constructor Summary
Constructors Constructor Description AbstractSpecialValueTranslator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidinit(SpecialColumnDescriptor columnDescriptor)Called once upon header creation to do some initial setup logic.booleanisEmpty(java.lang.String cellValue)Treatsnulland '' as empty cells.java.lang.StringperformExport(Item item)Called each time an item is exported using the enclosing header.voidperformImport(java.lang.String cellValue, Item processedItem)Called each time a non-empty cell value has to be imported.voidvalidate(java.lang.String expr)Validates the special column definition.
-
-
-
Method Detail
-
init
public void init(SpecialColumnDescriptor columnDescriptor) throws HeaderValidationException
Description copied from interface:SpecialValueTranslatorCalled once upon header creation to do some initial setup logic.- Specified by:
initin interfaceSpecialValueTranslator- Parameters:
columnDescriptor- the newly created column descriptor- Throws:
HeaderValidationException- indicates that the column descriptor is not configured properly
-
validate
public void validate(java.lang.String expr) throws HeaderValidationExceptionDescription copied from interface:SpecialValueTranslatorValidates the special column definition.- Specified by:
validatein interfaceSpecialValueTranslator- Parameters:
expr- the definition expression- Throws:
HeaderValidationException- if the expression is not valid
-
performExport
public java.lang.String performExport(Item item) throws ImpExException
Description copied from interface:SpecialValueTranslatorCalled each time an item is exported using the enclosing header.- Specified by:
performExportin interfaceSpecialValueTranslator- Parameters:
item- the item to export- Returns:
- the string representation of the value to export
- Throws:
ImpExException- indicates an export error
-
performImport
public void performImport(java.lang.String cellValue, Item processedItem) throws ImpExExceptionDescription copied from interface:SpecialValueTranslatorCalled each time a non-empty cell value has to be imported.- Specified by:
performImportin interfaceSpecialValueTranslator- Parameters:
cellValue- the cell value stringprocessedItem- the item to import the value for- Throws:
ImpExException- indicates an import error
-
isEmpty
public boolean isEmpty(java.lang.String cellValue)
Treatsnulland '' as empty cells.- Specified by:
isEmptyin interfaceSpecialValueTranslator- Parameters:
cellValue- the cell value string- Returns:
trueif the cell value is empty- See Also:
SpecialValueTranslator.isEmpty(java.lang.String)
-
-