com.softslate.commerce.businessobjects.customer
Class CustomerWishListBean

java.lang.Object
  extended by com.softslate.commerce.businessobjects.core.BaseBusinessObject
      extended by com.softslate.commerce.businessobjects.customer.CustomerWishListBean
All Implemented Interfaces:
BusinessObject, CustomerWishList, java.io.Serializable

public class CustomerWishListBean
extends BaseBusinessObject
implements CustomerWishList, java.io.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:
Serialized Form

Field Summary
private  java.lang.String created
           
private  Customer customer
           
private  int customerID
           
private  int customerWishListID
           
private  java.util.Collection customerWishListProducts
           
private  java.lang.String description
           
private  int firstRow
           
private  int itemCount
           
private  int itemsPerPage
           
private  java.lang.String lastUpdated
           
(package private) static org.apache.commons.logging.Log log
           
private  java.lang.String name
           
private  java.util.Collection productListCollection
           
private static long serialVersionUID
           
 
Constructor Summary
CustomerWishListBean()
           
 
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 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 Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values

log

static org.apache.commons.logging.Log log

customerWishListID

private int customerWishListID

customerID

private int customerID

customer

private Customer customer

name

private java.lang.String name

description

private java.lang.String description

created

private java.lang.String created

lastUpdated

private java.lang.String lastUpdated

customerWishListProducts

private java.util.Collection customerWishListProducts

productListCollection

private java.util.Collection productListCollection

itemsPerPage

private int itemsPerPage

firstRow

private int firstRow

itemCount

private int itemCount
Constructor Detail

CustomerWishListBean

public CustomerWishListBean()
Method Detail

getCustomerWishListID

public int getCustomerWishListID()
Specified by:
getCustomerWishListID in interface CustomerWishList

setCustomerWishListID

public void setCustomerWishListID(int customerWishListID)
Specified by:
setCustomerWishListID in interface CustomerWishList

getCustomerID

public int getCustomerID()
Specified by:
getCustomerID in interface CustomerWishList

setCustomerID

public void setCustomerID(int customerID)
Specified by:
setCustomerID in interface CustomerWishList

getCustomer

public Customer getCustomer()
Specified by:
getCustomer in interface CustomerWishList

setCustomer

public void setCustomer(Customer customer)
Specified by:
setCustomer in interface CustomerWishList

getName

public java.lang.String getName()
Specified by:
getName in interface CustomerWishList

setName

public void setName(java.lang.String name)
Specified by:
setName in interface CustomerWishList

getDescription

public java.lang.String getDescription()
Specified by:
getDescription in interface CustomerWishList

setDescription

public void setDescription(java.lang.String description)
Specified by:
setDescription in interface CustomerWishList

getCreated

public java.lang.String getCreated()
Specified by:
getCreated in interface CustomerWishList

setCreated

public void setCreated(java.lang.String created)
Specified by:
setCreated in interface CustomerWishList

getLastUpdated

public java.lang.String getLastUpdated()
Specified by:
getLastUpdated in interface CustomerWishList

setLastUpdated

public void setLastUpdated(java.lang.String lastUpdated)
Specified by:
setLastUpdated in interface CustomerWishList

getCustomerWishListProducts

public java.util.Collection getCustomerWishListProducts()
Specified by:
getCustomerWishListProducts in interface CustomerWishList

setCustomerWishListProducts

public void setCustomerWishListProducts(java.util.Collection customerWishListProducts)
Specified by:
setCustomerWishListProducts in interface CustomerWishList

getProductListCollection

public java.util.Collection getProductListCollection()
Specified by:
getProductListCollection in interface CustomerWishList

setProductListCollection

public void setProductListCollection(java.util.Collection productListCollection)
Specified by:
setProductListCollection in interface CustomerWishList

getItemsPerPage

public int getItemsPerPage()
Specified by:
getItemsPerPage in interface CustomerWishList

setItemsPerPage

public void setItemsPerPage(int itemsPerPage)
Specified by:
setItemsPerPage in interface CustomerWishList

getFirstRow

public int getFirstRow()
Specified by:
getFirstRow in interface CustomerWishList

setFirstRow

public void setFirstRow(int firstRow)
Specified by:
setFirstRow in interface CustomerWishList

getItemCount

public int getItemCount()
Specified by:
getItemCount in interface CustomerWishList

setItemCount

public void setItemCount(int itemCount)
Specified by:
setItemCount in interface CustomerWishList


Copyright © SoftSlate, LLC 2003–2010