Interface CustomerWishListProduct
- All Superinterfaces:
BusinessObject
- All Known Implementing Classes:
CustomerWishListProductBean
Interface representing an product under a wish list in the system.
When the application needs to create an instance that implements
CustomerWishListProduct
,
BusinessObjectFactory
finds the name of the Java class to instantiate from the
"customerWishListProductImplementer" setting in the
appComponents.properties
file.
The default "customerWishListProductImplementer" is
CustomerWishListProductBean
.
- Author:
- Jason McWilliams
- See Also:
-
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 interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
-
Method Details
-
getCustomerWishListProductID
int getCustomerWishListProductID() -
setCustomerWishListProductID
void setCustomerWishListProductID(int customerWishListProductID) -
getCustomerWishListID
int getCustomerWishListID() -
setCustomerWishListID
void setCustomerWishListID(int customerWishListID) -
getProductID
int getProductID() -
setProductID
void setProductID(int productID) -
getProduct
Product getProduct() -
setProduct
-
getCustomerWishList
CustomerWishList getCustomerWishList() -
setCustomerWishList
-