Package bakery.logic.usermailobject
Class ShopUserMailChargeLO
- java.lang.Object
-
- bakery.logic.usermailobject.ShopUserMailChargeLO
-
- All Implemented Interfaces:
java.io.Serializable
public class ShopUserMailChargeLO extends java.lang.Object implements java.io.SerializableShopUserMailChargeLO covers information about a type of charge. E.g. the type of chargeChargeTypeDefDO, several net and gross values and a list of assigned promotionsShopUserMailPromotionLO.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ShopUserMailChargeLO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description bakery.persistence.expand.ChargeTypeDefDOEnumInterfacegetChargeTypeDefDO()java.math.BigDecimalgetGross()java.math.BigDecimalgetGrossDiscounted()java.math.BigDecimalgetNet()java.math.BigDecimalgetNetDiscounted()java.util.List<ShopUserMailPromotionLO>getPromotions()java.math.BigDecimalgetTax()java.math.BigDecimalgetTaxDiscounted()voidsetChargeTypeDefDO(bakery.persistence.expand.ChargeTypeDefDOEnumInterface chargeTypeDefDO)voidsetGross(java.math.BigDecimal gross)voidsetGrossDiscounted(java.math.BigDecimal grossDiscounted)voidsetNet(java.math.BigDecimal net)voidsetNetDiscounted(java.math.BigDecimal netDiscounted)voidsetPromotions(java.util.List<ShopUserMailPromotionLO> promotions)voidsetTax(java.math.BigDecimal tax)voidsetTaxDiscounted(java.math.BigDecimal taxDiscounted)
-
-
-
Method Detail
-
getChargeTypeDefDO
public bakery.persistence.expand.ChargeTypeDefDOEnumInterface getChargeTypeDefDO()
- Returns:
- the chargeTypeDefDO
-
setChargeTypeDefDO
public void setChargeTypeDefDO(bakery.persistence.expand.ChargeTypeDefDOEnumInterface chargeTypeDefDO)
- Parameters:
chargeTypeDefDO- the chargeTypeDefDO to set
-
getNet
public java.math.BigDecimal getNet()
- Returns:
- the Net
-
setNet
public void setNet(java.math.BigDecimal net)
- Parameters:
net- the Net to set
-
getGross
public java.math.BigDecimal getGross()
- Returns:
- the Gross
-
setGross
public void setGross(java.math.BigDecimal gross)
- Parameters:
gross- the Gross to set
-
getTax
public java.math.BigDecimal getTax()
- Returns:
- the Tax
-
setTax
public void setTax(java.math.BigDecimal tax)
- Parameters:
tax- the Tax to set
-
getNetDiscounted
public java.math.BigDecimal getNetDiscounted()
- Returns:
- the NetDiscounted
-
setNetDiscounted
public void setNetDiscounted(java.math.BigDecimal netDiscounted)
- Parameters:
netDiscounted- the netDiscounted to set
-
getGrossDiscounted
public java.math.BigDecimal getGrossDiscounted()
- Returns:
- the grossDiscounted
-
setGrossDiscounted
public void setGrossDiscounted(java.math.BigDecimal grossDiscounted)
- Parameters:
grossDiscounted- the grossDiscounted to set
-
getTaxDiscounted
public java.math.BigDecimal getTaxDiscounted()
- Returns:
- the taxDiscounted
-
setTaxDiscounted
public void setTaxDiscounted(java.math.BigDecimal taxDiscounted)
- Parameters:
taxDiscounted- the taxDiscounted to set
-
getPromotions
public java.util.List<ShopUserMailPromotionLO> getPromotions()
- Returns:
- the promotions
-
setPromotions
public void setPromotions(java.util.List<ShopUserMailPromotionLO> promotions)
- Parameters:
promotions- the promotions to set
-
-