Class ExcelImportContext
- java.lang.Object
-
- com.hybris.backoffice.excel.importing.ExcelImportContext
-
public class ExcelImportContext extends java.lang.ObjectContext class used by excel importing. The context contains impex row for currently processing row
-
-
Constructor Summary
Constructors Constructor Description ExcelImportContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.Object>getCtx()ImpexRowgetImpexRow()java.lang.ObjectgetValue(java.lang.String key)Gets value from contextvoidsetImpexRow(ImpexRow impexRow)voidsetValue(java.lang.String key, java.lang.Object value)Sets value under given key
-
-
-
Method Detail
-
getImpexRow
public ImpexRow getImpexRow()
-
setImpexRow
public void setImpexRow(ImpexRow impexRow)
-
getCtx
public java.util.Map<java.lang.String,java.lang.Object> getCtx()
-
getValue
public java.lang.Object getValue(java.lang.String key)
Gets value from context- Parameters:
key-- Returns:
-
setValue
public void setValue(java.lang.String key, java.lang.Object value)Sets value under given key- Parameters:
key-value-
-
-