Class CustomerWishListBean
java.lang.Object
com.softslate.commerce.businessobjects.core.BaseBusinessObject
com.softslate.commerce.businessobjects.customer.CustomerWishListBean
- All Implemented Interfaces:
BusinessObject
,CustomerWishList
,Serializable
public class CustomerWishListBean
extends BaseBusinessObject
implements CustomerWishList, Serializable
Object representing a customer's wish list within the system.
CustomerWishListBean
is the default implementation of the
CustomerWishList
interface for the application.
The database stores customer wish lists in the sscCustomerWishlist
table, and this interface can be used to represent a single row of that
table. The Hibernate configuration file
CustomerWishListBean.hbm.xml
maps that table's columns to the
properties in this object.
- Author:
- Jason McWilliams
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionprivate String
private Customer
private int
private int
private Collection
private String
private int
private int
private int
private String
(package private) static org.apache.commons.logging.Log
private String
private Collection
private static final long
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
int
int
int
int
getName()
void
setCreated
(String created) void
setCustomer
(Customer customer) void
setCustomerID
(int customerID) void
setCustomerWishListID
(int customerWishListID) void
setCustomerWishListProducts
(Collection customerWishListProducts) void
setDescription
(String description) void
setFirstRow
(int firstRow) void
setItemCount
(int itemCount) void
setItemsPerPage
(int itemsPerPage) void
setLastUpdated
(String lastUpdated) void
void
setProductListCollection
(Collection productListCollection) 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 -
customerWishListID
private int customerWishListID -
customerID
private int customerID -
customer
-
name
-
description
-
created
-
lastUpdated
-
customerWishListProducts
-
productListCollection
-
itemsPerPage
private int itemsPerPage -
firstRow
private int firstRow -
itemCount
private int itemCount
-
-
Constructor Details
-
CustomerWishListBean
public CustomerWishListBean()
-
-
Method Details
-
getCustomerWishListID
public int getCustomerWishListID()- Specified by:
getCustomerWishListID
in interfaceCustomerWishList
-
setCustomerWishListID
public void setCustomerWishListID(int customerWishListID) - Specified by:
setCustomerWishListID
in interfaceCustomerWishList
-
getCustomerID
public int getCustomerID()- Specified by:
getCustomerID
in interfaceCustomerWishList
-
setCustomerID
public void setCustomerID(int customerID) - Specified by:
setCustomerID
in interfaceCustomerWishList
-
getCustomer
- Specified by:
getCustomer
in interfaceCustomerWishList
-
setCustomer
- Specified by:
setCustomer
in interfaceCustomerWishList
-
getName
- Specified by:
getName
in interfaceCustomerWishList
-
setName
- Specified by:
setName
in interfaceCustomerWishList
-
getDescription
- Specified by:
getDescription
in interfaceCustomerWishList
-
setDescription
- Specified by:
setDescription
in interfaceCustomerWishList
-
getCreated
- Specified by:
getCreated
in interfaceCustomerWishList
-
setCreated
- Specified by:
setCreated
in interfaceCustomerWishList
-
getLastUpdated
- Specified by:
getLastUpdated
in interfaceCustomerWishList
-
setLastUpdated
- Specified by:
setLastUpdated
in interfaceCustomerWishList
-
getCustomerWishListProducts
- Specified by:
getCustomerWishListProducts
in interfaceCustomerWishList
-
setCustomerWishListProducts
- Specified by:
setCustomerWishListProducts
in interfaceCustomerWishList
-
getProductListCollection
- Specified by:
getProductListCollection
in interfaceCustomerWishList
-
setProductListCollection
- Specified by:
setProductListCollection
in interfaceCustomerWishList
-
getItemsPerPage
public int getItemsPerPage()- Specified by:
getItemsPerPage
in interfaceCustomerWishList
-
setItemsPerPage
public void setItemsPerPage(int itemsPerPage) - Specified by:
setItemsPerPage
in interfaceCustomerWishList
-
getFirstRow
public int getFirstRow()- Specified by:
getFirstRow
in interfaceCustomerWishList
-
setFirstRow
public void setFirstRow(int firstRow) - Specified by:
setFirstRow
in interfaceCustomerWishList
-
getItemCount
public int getItemCount()- Specified by:
getItemCount
in interfaceCustomerWishList
-
setItemCount
public void setItemCount(int itemCount) - Specified by:
setItemCount
in interfaceCustomerWishList
-