Interface ExcelExportParamsDecorator

All Superinterfaces:
org.springframework.core.Ordered
All Known Implementing Classes:
DefaultExcelSupercategorySelectionDecorator

public interface ExcelExportParamsDecorator extends org.springframework.core.Ordered
Excel decorator used by ExcelExportPreProcessor mechanism. Each decorator can modify the input of export process.
  • Field Summary

    Fields inherited from interface org.springframework.core.Ordered

    HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
  • Method Summary

    Modifier and Type
    Method
    Description
    decorate(ExcelExportParams excelExportParams)
    Decorates export input ExcelExportParams object.
    int
     
  • Method Details

    • decorate

      @Nonnull ExcelExportParams decorate(@Nonnull ExcelExportParams excelExportParams)
      Decorates export input ExcelExportParams object.
      Parameters:
      excelExportParams - (depending on the order of decorator) an input for the Excel export process or the result of previous decorator.
      See Also:
    • getOrder

      int getOrder()
      Specified by:
      getOrder in interface org.springframework.core.Ordered