]> git.mxchange.org Git - jcustomer-lib.git/blobdiff - src/org/mxchange/jshopcore/model/product/AdminProductSessionBeanRemote.java
auto-formatted project + updated jars
[jcustomer-lib.git] / src / org / mxchange / jshopcore / model / product / AdminProductSessionBeanRemote.java
index 9cf68f8ab36dec4f569104a0eca03d712b404436..e97c16e0373fc0056df653904d9925673d522052 100644 (file)
@@ -24,7 +24,7 @@ import org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException;
 
 /**
  * Product interface for "ADMIN" role
- *
+ * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
 @Remote
@@ -32,18 +32,21 @@ public interface AdminProductSessionBeanRemote extends Serializable {
 
        /**
         * Some "getter" for a linked list of all products
-        *
+        * <p>
         * @return All products
         */
        public List<Product> getAllProducts ();
 
        /**
         * Adds given product data from request to database
-        *
+        * <p>
         * @param product Product instance
         * @return Updated product instance
-        * @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
+        * org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the
+        * given product title is already used
+        * @throws org.mxchange.jshopcore.exceptions.CannotAddProductException If
+        * something unexpected happened
         */
        public Product doAdminAddProduct (final Product product) throws ProductTitleAlreadyUsedException, CannotAddProductException;
 }