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 Details

    • 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

      String getName()
    • setName

      void setName(String name)
    • getDescription

      String getDescription()
    • setDescription

      void setDescription(String description)
    • getCreated

      String getCreated()
    • setCreated

      void setCreated(String created)
    • getLastUpdated

      String getLastUpdated()
    • setLastUpdated

      void setLastUpdated(String lastUpdated)
    • getCustomerWishListProducts

      Collection getCustomerWishListProducts()
    • setCustomerWishListProducts

      void setCustomerWishListProducts(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

      Collection getProductListCollection()
    • setProductListCollection

      void setProductListCollection(Collection products)