]> git.mxchange.org Git - jshop-lib.git/blobdiff - src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java
Continued a bit:
[jshop-lib.git] / src / org / mxchange / jshopcore / model / category / AdminCategorySessionBeanRemote.java
index 141d22cf0758cd5fc8af3f0b10903d3e069fb6f4..5c2983762cc9ec83fb7b33fbec46359f057d3e0d 100644 (file)
@@ -18,8 +18,9 @@ package org.mxchange.jshopcore.model.category;
 
 import java.io.Serializable;
 import javax.ejb.Remote;
-import org.mxchange.jshopcore.exceptions.CannotAddCategoryException;
-import org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException;
+import org.mxchange.jproduct.exceptions.CannotAddCategoryException;
+import org.mxchange.jproduct.exceptions.CategoryTitleAlreadyUsedException;
+import org.mxchange.jproduct.model.category.Category;
 
 /**
  * An interface for categories for "ADMIN" role.
@@ -36,11 +37,10 @@ public interface AdminCategorySessionBeanRemote extends Serializable {
         * <p>
         * @return Updated category instance
         * <p>
-        * @throws
-        * org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException If
-        * the given title is already used
-        * @throws org.mxchange.jshopcore.exceptions.CannotAddCategoryException If
-        * the category cannot be added
+        * @throws CategoryTitleAlreadyUsedException If the given title is already
+        * used
+        * @throws CannotAddCategoryException If the category cannot be added
         */
        Category doAdminAddCategory (final Category category) throws CategoryTitleAlreadyUsedException, CannotAddCategoryException;
+
 }