]> git.mxchange.org Git - jshop-lib.git/blobdiff - src/org/mxchange/jshopcore/model/product/AdminProductSessionBeanRemote.java
Continued a bit:
[jshop-lib.git] / src / org / mxchange / jshopcore / model / product / AdminProductSessionBeanRemote.java
index fb24c07221c0797abbd2f62c147f9547a0249350..1fd163e83776b25295fc7b3403a3d1662e9f4cd8 100644 (file)
@@ -19,8 +19,9 @@ package org.mxchange.jshopcore.model.product;
 import java.io.Serializable;
 import java.util.List;
 import javax.ejb.Remote;
-import org.mxchange.jshopcore.exceptions.CannotAddProductException;
-import org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException;
+import org.mxchange.jproduct.exceptions.CannotAddProductException;
+import org.mxchange.jproduct.exceptions.ProductTitleAlreadyUsedException;
+import org.mxchange.jproduct.model.product.Product;
 
 /**
  * Product interface for "ADMIN" role
@@ -44,11 +45,9 @@ public interface AdminProductSessionBeanRemote extends Serializable {
         * <p>
         * @return Updated product instance
         * <p>
-        * @throws
-        * org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the
-        * given product title is already used
-        * @throws org.mxchange.jshopcore.exceptions.CannotAddProductException If
-        * something unexpected happened
+        * @throws ProductTitleAlreadyUsedException If the given product title is
+        * already used
+        * @throws CannotAddProductException If something unexpected happened
         */
        Product doAdminAddProduct (final Product product) throws ProductTitleAlreadyUsedException, CannotAddProductException;