]> git.mxchange.org Git - pizzaservice-war.git/blobdiff - src/java/org/mxchange/pizzaapplication/beans/controller/PizzaWebBean.java
Binded to jshop-core + added it
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / controller / PizzaWebBean.java
index 91deebe423f47a53cf2e01babdc46186502a6df5..e28a03d033a4807f0f07eaad55089705bd8de036 100644 (file)
@@ -22,8 +22,8 @@ import java.util.Iterator;
 import javax.faces.FacesException;
 import org.mxchange.jshop.beans.FrameworkBean;
 import org.mxchange.jshop.category.Category;
-import org.mxchange.jshop.exceptions.CategoryTitleAlreadyUsedException;
-import org.mxchange.jshop.exceptions.ProductTitleAlreadyUsedException;
+import org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException;
+import org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException;
 import org.mxchange.jshop.product.Product;
 
 /**
@@ -124,7 +124,7 @@ public interface PizzaWebBean extends FrameworkBean {
         *
         * @param category Category instance
         * @throws java.rmi.RemoteException If something unexpected happened
-        * @throws org.mxchange.jshop.exceptions.CategoryTitleAlreadyUsedException If the given title is already used
+        * @throws org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException If the given title is already used
         */
        public void doAdminAddCategory (final Category category) throws RemoteException, CategoryTitleAlreadyUsedException;
 
@@ -133,7 +133,7 @@ public interface PizzaWebBean extends FrameworkBean {
         *
         * @param product Product instance
         * @throws java.rmi.RemoteException If something unexpected happened
-        * @throws org.mxchange.jshop.exceptions.ProductTitleAlreadyUsedException If the given product title is already used
+        * @throws org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the given product title is already used
         */
        public void doAdminAddProduct (final Product product) throws RemoteException, ProductTitleAlreadyUsedException;