Interface CustomerWishList
- All Superinterfaces:
BusinessObject
- All Known Implementing Classes:
CustomerWishListBean
Interface representing a customer's wish list within the system.
When the application needs to create an instance that implements
CustomerWishList,
BusinessObjectFactory
finds the name of the Java class to instantiate from the
"customerWishListImplementer" setting in the
appComponents.properties file.
The default "customerWishListImplementer" is
CustomerWishListBean.
- Author:
- Jason McWilliams
-
Method Summary
Modifier and TypeMethodDescriptionintintintintintgetName()voidsetCreated(String created) voidsetCustomer(Customer customer) voidsetCustomerID(int customerID) voidsetCustomerWishListID(int customerWishListID) voidsetCustomerWishListProducts(Collection customerWishListProducts) voidsetDescription(String description) voidsetFirstRow(int firstRow) voidsetItemCount(int itemCount) voidsetItemsPerPage(int itemsPerPage) voidsetLastUpdated(String lastUpdated) voidvoidsetProductListCollection(Collection products) Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
-
Method Details
-
getCustomerWishListID
int getCustomerWishListID() -
setCustomerWishListID
void setCustomerWishListID(int customerWishListID) -
getCustomer
Customer getCustomer() -
setCustomer
-
getCustomerID
int getCustomerID() -
setCustomerID
void setCustomerID(int customerID) -
getName
String getName() -
setName
-
getDescription
String getDescription() -
setDescription
-
getCreated
String getCreated() -
setCreated
-
getLastUpdated
String getLastUpdated() -
setLastUpdated
-
getCustomerWishListProducts
Collection getCustomerWishListProducts() -
setCustomerWishListProducts
-
getItemsPerPage
int getItemsPerPage() -
setItemsPerPage
void setItemsPerPage(int itemsPerPage) -
getFirstRow
int getFirstRow() -
setFirstRow
void setFirstRow(int firstRow) -
getItemCount
int getItemCount() -
setItemCount
void setItemCount(int itemCount) -
getProductListCollection
Collection getProductListCollection() -
setProductListCollection
-