com.softslate.commerce.businessobjects.customer
Class CustomerWishListProductBean

java.lang.Object
  extended by com.softslate.commerce.businessobjects.core.BaseBusinessObject
      extended by com.softslate.commerce.businessobjects.customer.CustomerWishListProductBean
All Implemented Interfaces:
BusinessObject, CustomerWishListProduct, java.io.Serializable

public class CustomerWishListProductBean
extends BaseBusinessObject
implements CustomerWishListProduct, java.io.Serializable

Object representing a product under a wish list in the system. CustomerWishListProductBean is the default implementation of the CustomerWishListProduct interface for the application.

The database stores wish list products in the sscCustomerWishListProduct table, and this interface can be used to represent a single row of that table. The Hibernate configuration file CustomerWishListProductBean.hbm.xml maps that table's columns to the properties in this object.

Author:
Jason McWilliams
See Also:
Serialized Form

Field Summary
private  CustomerWishList customerWishList
           
private  int customerWishListID
           
private  int customerWishListProductID
           
(package private) static org.apache.commons.logging.Log log
           
private  Product product
           
private  int productID
           
private static long serialVersionUID
           
 
Constructor Summary
CustomerWishListProductBean()
           
 
Method Summary
 CustomerWishList getCustomerWishList()
           
 int getCustomerWishListID()
           
 int getCustomerWishListProductID()
           
 Product getProduct()
           
 int getProductID()
           
 void setCustomerWishList(CustomerWishList customerWishList)
           
 void setCustomerWishListID(int customerWishListID)
           
 void setCustomerWishListProductID(int customerWishListProductID)
           
 void setProduct(Product product)
           
 void setProductID(int productID)
           
 
Methods inherited from class com.softslate.commerce.businessobjects.core.BaseBusinessObject
initialize
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values

log

static org.apache.commons.logging.Log log

customerWishListProductID

private int customerWishListProductID

productID

private int productID

customerWishListID

private int customerWishListID

product

private Product product

customerWishList

private CustomerWishList customerWishList
Constructor Detail

CustomerWishListProductBean

public CustomerWishListProductBean()
Method Detail

getCustomerWishListProductID

public int getCustomerWishListProductID()
Specified by:
getCustomerWishListProductID in interface CustomerWishListProduct

setCustomerWishListProductID

public void setCustomerWishListProductID(int customerWishListProductID)
Specified by:
setCustomerWishListProductID in interface CustomerWishListProduct

getProductID

public int getProductID()
Specified by:
getProductID in interface CustomerWishListProduct

setProductID

public void setProductID(int productID)
Specified by:
setProductID in interface CustomerWishListProduct

getCustomerWishListID

public int getCustomerWishListID()
Specified by:
getCustomerWishListID in interface CustomerWishListProduct

setCustomerWishListID

public void setCustomerWishListID(int customerWishListID)
Specified by:
setCustomerWishListID in interface CustomerWishListProduct

getProduct

public Product getProduct()
Specified by:
getProduct in interface CustomerWishListProduct

setProduct

public void setProduct(Product product)
Specified by:
setProduct in interface CustomerWishListProduct

getCustomerWishList

public CustomerWishList getCustomerWishList()
Specified by:
getCustomerWishList in interface CustomerWishListProduct

setCustomerWishList

public void setCustomerWishList(CustomerWishList customerWishList)
Specified by:
setCustomerWishList in interface CustomerWishListProduct


Copyright © SoftSlate, LLC 2003–2010