Class CustomerWishListProductBean
java.lang.Object
com.softslate.commerce.businessobjects.core.BaseBusinessObject
com.softslate.commerce.businessobjects.customer.CustomerWishListProductBean
- All Implemented Interfaces:
BusinessObject,CustomerWishListProduct,Serializable
public class CustomerWishListProductBean
extends BaseBusinessObject
implements CustomerWishListProduct, 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:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate CustomerWishListprivate intprivate int(package private) static org.apache.commons.logging.Logprivate Productprivate intprivate static final long -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintintintvoidsetCustomerWishList(CustomerWishList customerWishList) voidsetCustomerWishListID(int customerWishListID) voidsetCustomerWishListProductID(int customerWishListProductID) voidsetProduct(Product product) voidsetProductID(int productID) Methods inherited from class com.softslate.commerce.businessobjects.core.BaseBusinessObject
initializeMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
log
static org.apache.commons.logging.Log log -
customerWishListProductID
private int customerWishListProductID -
productID
private int productID -
customerWishListID
private int customerWishListID -
product
-
customerWishList
-
-
Constructor Details
-
CustomerWishListProductBean
public CustomerWishListProductBean()
-
-
Method Details
-
getCustomerWishListProductID
public int getCustomerWishListProductID()- Specified by:
getCustomerWishListProductIDin interfaceCustomerWishListProduct
-
setCustomerWishListProductID
public void setCustomerWishListProductID(int customerWishListProductID) - Specified by:
setCustomerWishListProductIDin interfaceCustomerWishListProduct
-
getProductID
public int getProductID()- Specified by:
getProductIDin interfaceCustomerWishListProduct
-
setProductID
public void setProductID(int productID) - Specified by:
setProductIDin interfaceCustomerWishListProduct
-
getCustomerWishListID
public int getCustomerWishListID()- Specified by:
getCustomerWishListIDin interfaceCustomerWishListProduct
-
setCustomerWishListID
public void setCustomerWishListID(int customerWishListID) - Specified by:
setCustomerWishListIDin interfaceCustomerWishListProduct
-
getProduct
- Specified by:
getProductin interfaceCustomerWishListProduct
-
setProduct
- Specified by:
setProductin interfaceCustomerWishListProduct
-
getCustomerWishList
- Specified by:
getCustomerWishListin interfaceCustomerWishListProduct
-
setCustomerWishList
- Specified by:
setCustomerWishListin interfaceCustomerWishListProduct
-