package org.mxchange.jshopeelib.beans;
import org.mxchange.jcoreee.beans.FrameworkBean;
-import org.mxchange.jshopcore.model.item.AddableBasketItem;
-import org.mxchange.jshopcore.model.product.Product;
/**
* A shop bean interface
* @author Roland Haeder
*/
public interface ShopBean extends FrameworkBean {
-
- /**
- * @return the item
- */
- public AddableBasketItem getItem ();
-
- /**
- * @param item the item to set
- */
- public void setItem (final AddableBasketItem item);
-
- /**
- * @return the product
- */
- public Product getProduct ();
-
- /**
- * @param product the product to set
- */
- public void setProduct (final Product product);
}