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, for removal: This API element is subject to removal in a future version.since 1905.default java.util.Collection<ExcelValidationResult>validate(org.apache.poi.ss.usermodel.Workbook workbook, java.util.Set<java.lang.String> mediaContentEntries)Deprecated, for removal: This API element is subject to removal in a future version.since 2005.default java.util.Collection<ExcelValidationResult>validate(org.apache.poi.ss.usermodel.Workbook workbook, java.util.Set<java.lang.String> mediaContentEntries, java.util.Map<java.lang.String,java.lang.Object> context)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(since="1905", forRemoval=true) java.util.Collection<ExcelValidationResult> validate(org.apache.poi.ss.usermodel.Workbook workbook)Deprecated, for removal: This API element is subject to removal in a future version.since 1905. Usevalidate(Workbook, Set)instead. Uses list ofExcelAttributeValidatorto validate excel's workbook.- Parameters:
workbook- - excel's workbook- Returns:
- Collection of
ExcelValidationResult
-
validate
@Deprecated(since="2005", forRemoval=true) default java.util.Collection<ExcelValidationResult> validate(org.apache.poi.ss.usermodel.Workbook workbook, java.util.Set<java.lang.String> mediaContentEntries)Deprecated, for removal: This API element is subject to removal in a future version.since 2005. Usevalidate(Workbook, Set, Map)instead. Uses list ofExcelAttributeValidatorto validate excel's workbook.- Parameters:
workbook- - excel's workbookmediaContentEntries- - list of media entries- 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, java.util.Map<java.lang.String,java.lang.Object> context)
Uses list ofExcelAttributeValidatorto validate excel's workbook.- Parameters:
workbook- - excel's workbookmediaContentEntries- - list of media entriescontext- - context with additional parameters- Returns:
- Collection of
ExcelValidationResult
-
-