com.softslate.commerce.businessobjects.customer
Interface CustomerWishList

All Superinterfaces:
BusinessObject
All Known Implementing Classes:
CustomerWishListBean

public interface CustomerWishList
extends BusinessObject

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
 java.lang.String getCreated()
           
 Customer getCustomer()
           
 int getCustomerID()
           
 int getCustomerWishListID()
           
 java.util.Collection getCustomerWishListProducts()
           
 java.lang.String getDescription()
           
 int getFirstRow()
           
 int getItemCount()
           
 int getItemsPerPage()
           
 java.lang.String getLastUpdated()
           
 java.lang.String getName()
           
 java.util.Collection getProductListCollection()
           
 void setCreated(java.lang.String created)
           
 void setCustomer(Customer customer)
           
 void setCustomerID(int customerID)
           
 void setCustomerWishListID(int customerWishListID)
           
 void setCustomerWishListProducts(java.util.Collection customerWishListProducts)
           
 void setDescription(java.lang.String description)
           
 void setFirstRow(int firstRow)
           
 void setItemCount(int itemCount)
           
 void setItemsPerPage(int itemsPerPage)
           
 void setLastUpdated(java.lang.String lastUpdated)
           
 void setName(java.lang.String name)
           
 void setProductListCollection(java.util.Collection products)
           
 
Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
 

Method Detail

getCustomerWishListID

int getCustomerWishListID()

setCustomerWishListID

void setCustomerWishListID(int customerWishListID)

getCustomer

Customer getCustomer()

setCustomer

void setCustomer(Customer customer)

getCustomerID

int getCustomerID()

setCustomerID

void setCustomerID(int customerID)

getName

java.lang.String getName()

setName

void setName(java.lang.String name)

getDescription

java.lang.String getDescription()

setDescription

void setDescription(java.lang.String description)

getCreated

java.lang.String getCreated()

setCreated

void setCreated(java.lang.String created)

getLastUpdated

java.lang.String getLastUpdated()

setLastUpdated

void setLastUpdated(java.lang.String lastUpdated)

getCustomerWishListProducts

java.util.Collection getCustomerWishListProducts()

setCustomerWishListProducts

void setCustomerWishListProducts(java.util.Collection customerWishListProducts)

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

java.util.Collection getProductListCollection()

setProductListCollection

void setProductListCollection(java.util.Collection products)


Copyright © SoftSlate, LLC 2003–2010