Class SKUDiscountBean

java.lang.Object
com.softslate.commerce.businessobjects.core.BaseBusinessObject
com.softslate.commerce.businessobjects.product.SKUDiscountBean
All Implemented Interfaces:
BusinessObject, SKUDiscount, Serializable

public class SKUDiscountBean extends BaseBusinessObject implements SKUDiscount, Serializable
Object representing a sku discount in the system. SKUDiscountBean is the default implementation of the SKUDiscount interface for the application.

The database stores sku discounts in the sscSKUDiscount table, and this interface can be used to represent a single row of that table. The Hibernate configuration file SKUDiscountBean.hbm.xml maps that table's columns to the properties in this object.

Author:
David Tobey
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • log

      static org.apache.commons.logging.Log log
    • skuDiscountID

      private int skuDiscountID
    • discountID

      private int discountID
    • skuID

      private int skuID
    • discount

      private Discount discount
    • sku

      private SKU sku
  • Constructor Details

    • SKUDiscountBean

      public SKUDiscountBean()
  • Method Details