Package de.hybris.platform.jalo.order
Class TotalTaxValuesAttributeHandler
- java.lang.Object
-
- de.hybris.platform.jalo.order.TotalTaxValuesAttributeHandler
-
- All Implemented Interfaces:
DynamicAttributeHandler<java.util.Collection<TaxValue>,AbstractOrderModel>
public class TotalTaxValuesAttributeHandler extends java.lang.Object implements DynamicAttributeHandler<java.util.Collection<TaxValue>,AbstractOrderModel>
-
-
Constructor Summary
Constructors Constructor Description TotalTaxValuesAttributeHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<TaxValue>get(AbstractOrderModel model)Holds logic behind getter for dynamic attribute.voidset(AbstractOrderModel model, java.util.Collection<TaxValue> discountValues)Holds logic behind setter for dynamic attribute.
-
-
-
Method Detail
-
get
public java.util.Collection<TaxValue> get(AbstractOrderModel model)
Description copied from interface:DynamicAttributeHandlerHolds logic behind getter for dynamic attribute.- Specified by:
getin interfaceDynamicAttributeHandler<java.util.Collection<TaxValue>,AbstractOrderModel>- Parameters:
model- model for which dynamic attribute is declared.- Returns:
- computed value.
-
set
public void set(AbstractOrderModel model, java.util.Collection<TaxValue> discountValues)
Description copied from interface:DynamicAttributeHandlerHolds logic behind setter for dynamic attribute.- Specified by:
setin interfaceDynamicAttributeHandler<java.util.Collection<TaxValue>,AbstractOrderModel>- Parameters:
model- model for which dynamic attribute is declared.discountValues- the value which will be used by setter logic.
-
-