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 CustomerWishList
private int
private int
(package private) static org.apache.commons.logging.Log
private Product
private int
private static final long
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
int
int
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 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:
getCustomerWishListProductID
in interfaceCustomerWishListProduct
-
setCustomerWishListProductID
public void setCustomerWishListProductID(int customerWishListProductID) - Specified by:
setCustomerWishListProductID
in interfaceCustomerWishListProduct
-
getProductID
public int getProductID()- Specified by:
getProductID
in interfaceCustomerWishListProduct
-
setProductID
public void setProductID(int productID) - Specified by:
setProductID
in interfaceCustomerWishListProduct
-
getCustomerWishListID
public int getCustomerWishListID()- Specified by:
getCustomerWishListID
in interfaceCustomerWishListProduct
-
setCustomerWishListID
public void setCustomerWishListID(int customerWishListID) - Specified by:
setCustomerWishListID
in interfaceCustomerWishListProduct
-
getProduct
- Specified by:
getProduct
in interfaceCustomerWishListProduct
-
setProduct
- Specified by:
setProduct
in interfaceCustomerWishListProduct
-
getCustomerWishList
- Specified by:
getCustomerWishList
in interfaceCustomerWishListProduct
-
setCustomerWishList
- Specified by:
setCustomerWishList
in interfaceCustomerWishListProduct
-