Interface ExcelImportWorkbookPostProcessor
-
- All Known Implementing Classes:
DefaultExcelImportWorkbookPostProcessor
public interface ExcelImportWorkbookPostProcessorBackoffice Excel mechanism dedicated to postprocessing importing process. The postprocessor is invoked whenImpexfor allSelectedAttributeis transformed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description voidprocess(ExcelImportResult excelImportResult)Allows to modifyingImpexobject which will be imported by adding new content or removing it.java.util.Collection<ExcelValidationResult>validate(org.apache.poi.ss.usermodel.Workbook workbook)Deprecated.since 1905.default java.util.Collection<ExcelValidationResult>validate(org.apache.poi.ss.usermodel.Workbook workbook, java.util.Set<java.lang.String> mediaContentEntries)Uses list ofExcelAttributeValidatorto validate excel's workbook.
-
-
-
Method Detail
-
process
void process(ExcelImportResult excelImportResult)
Allows to modifyingImpexobject which will be imported by adding new content or removing it.- Parameters:
excelImportResult- - object represents importing result. The object consists ofWorkbookand generated impex object.
-
validate
@Deprecated java.util.Collection<ExcelValidationResult> validate(org.apache.poi.ss.usermodel.Workbook workbook)
Deprecated.since 1905. Usevalidate(Workbook, Set)instead. Uses list ofExcelAttributeValidatorto validate excel's workbook.- Parameters:
workbook- - excel's workbook- Returns:
- Collection of
ExcelValidationResult
-
validate
default java.util.Collection<ExcelValidationResult> validate(org.apache.poi.ss.usermodel.Workbook workbook, java.util.Set<java.lang.String> mediaContentEntries)
Uses list ofExcelAttributeValidatorto validate excel's workbook.- Parameters:
workbook- - excel's workbookmediaContentEntries- - list of media entries- Returns:
- Collection of
ExcelValidationResult
-
-