From: Roland Haeder Date: Sat, 5 Sep 2015 17:46:18 +0000 (+0200) Subject: These are no business methods, they are from older times with JSPs X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6c7c8d5dfcdc268e21d9d14ca3288e6eeb43c39a;p=jcustomer-lib.git These are no business methods, they are from older times with JSPs Signed-off-by:Roland Häder --- diff --git a/src/org/mxchange/jshopeelib/beans/ShopBean.java b/src/org/mxchange/jshopeelib/beans/ShopBean.java index a01df54..cf51e6a 100644 --- a/src/org/mxchange/jshopeelib/beans/ShopBean.java +++ b/src/org/mxchange/jshopeelib/beans/ShopBean.java @@ -17,8 +17,6 @@ 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 @@ -26,24 +24,4 @@ import org.mxchange.jshopcore.model.product.Product; * @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); }