Package com.hybris.backoffice.excel.data
Class ExcelExportParams
- java.lang.Object
-
- com.hybris.backoffice.excel.data.ExcelExportParams
-
public class ExcelExportParams extends java.lang.ObjectRepresents the input of exporting process. This object is used byExcelExportParamsDecorator
-
-
Constructor Summary
Constructors Constructor Description ExcelExportParams(java.util.List<ItemModel> itemsToExport, java.util.List<SelectedAttribute> selectedAttributes, java.util.Collection<ExcelAttribute> additionalAttributes)Constructs an instance ofExcelExportParams.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<ExcelAttribute>getAdditionalAttributes()java.util.List<ItemModel>getItemsToExport()java.util.List<SelectedAttribute>getSelectedAttributes()
-
-
-
Constructor Detail
-
ExcelExportParams
public ExcelExportParams(java.util.List<ItemModel> itemsToExport, java.util.List<SelectedAttribute> selectedAttributes, java.util.Collection<ExcelAttribute> additionalAttributes)
Constructs an instance ofExcelExportParams. All parameters are required and cannot be null.- Parameters:
itemsToExport- cannot be nullselectedAttributes- cannot be nulladditionalAttributes- cannot be null
-
-
Method Detail
-
getItemsToExport
public java.util.List<ItemModel> getItemsToExport()
-
getSelectedAttributes
public java.util.List<SelectedAttribute> getSelectedAttributes()
-
getAdditionalAttributes
public java.util.Collection<ExcelAttribute> getAdditionalAttributes()
-
-