]> git.mxchange.org Git - jcustomer-lib.git/commitdiff
These are no business methods, they are from older times with JSPs
authorRoland Haeder <roland@mxchange.org>
Sat, 5 Sep 2015 17:46:18 +0000 (19:46 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 5 Sep 2015 17:46:18 +0000 (19:46 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/org/mxchange/jshopeelib/beans/ShopBean.java

index a01df54091de734aecc51fbe5ba8d0aa499e8f6f..cf51e6af7309ca1cfe0afa90a32706101197a572 100644 (file)
@@ -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);
 }