Interface CustomerWishListProduct

All Superinterfaces:
BusinessObject
All Known Implementing Classes:
CustomerWishListProductBean

public interface CustomerWishListProduct extends BusinessObject
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 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

      void setProduct(Product product)
    • getCustomerWishList

      CustomerWishList getCustomerWishList()
    • setCustomerWishList

      void setCustomerWishList(CustomerWishList customerWishList)