]> git.mxchange.org Git - jcustomer-lib.git/commitdiff
Introduced new exceptions
authorRoland Haeder <roland@mxchange.org>
Fri, 11 Sep 2015 13:37:11 +0000 (15:37 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 11 Sep 2015 13:37:11 +0000 (15:37 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcoreee.jar
lib/jshop-core.jar
src/org/mxchange/jcore/model/contact/gender/GenderSessionBeanRemote.java [deleted file]
src/org/mxchange/jcore/model/contact/gender/GenderStatefulBeanRemote.java [new file with mode: 0644]
src/org/mxchange/jshopcore/model/basket/BasketSessionBeanRemote.java
src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java
src/org/mxchange/jshopcore/model/category/CategorySessionBeanRemote.java
src/org/mxchange/jshopcore/model/product/ProductSessionBeanRemote.java

index b2760ebae295cbad0437e4e512da91af8eca0b2c..893d1f9aad9b8ec2bf4607d123795b6547d7a940 100644 (file)
Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ
index d3ea1ca0994bd84f9efc0bb10e78f65e106694f5..93debb23d5481a5f36ded93af52324a612865006 100644 (file)
Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ
diff --git a/src/org/mxchange/jcore/model/contact/gender/GenderSessionBeanRemote.java b/src/org/mxchange/jcore/model/contact/gender/GenderSessionBeanRemote.java
deleted file mode 100644 (file)
index e267287..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (C) 2015 Roland Haeder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.jcore.model.contact.gender;
-
-import java.io.Serializable;
-import java.util.List;
-import javax.ejb.Remote;
-
-/**
- * A remote interface for static shop data
- *
- * @author Roland Haeder<roland@mxchange.org>
- */
-@Remote
-public interface GenderSessionBeanRemote extends Serializable {
-
-       /**
-        * Getter for all genders as array
-        *
-        * @return All genders as array
-        */
-       public Gender[] allGenders ();
-
-       /**
-        * All selectable genders. This excludes UNKNOWN
-        *
-        * @return Selectable gender for the user
-        */
-       public List<Gender> selectableGenders ();
-}
diff --git a/src/org/mxchange/jcore/model/contact/gender/GenderStatefulBeanRemote.java b/src/org/mxchange/jcore/model/contact/gender/GenderStatefulBeanRemote.java
new file mode 100644 (file)
index 0000000..a4ace43
--- /dev/null
@@ -0,0 +1,44 @@
+/*
+ * Copyright (C) 2015 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jcore.model.contact.gender;
+
+import java.io.Serializable;
+import java.util.List;
+import javax.ejb.Remote;
+
+/**
+ * A remote interface for static shop data
+ *
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+@Remote
+public interface GenderStatefulBeanRemote extends Serializable {
+
+       /**
+        * Getter for all genders as array
+        *
+        * @return All genders as array
+        */
+       public Gender[] allGenders ();
+
+       /**
+        * All selectable genders. This excludes UNKNOWN
+        *
+        * @return Selectable gender for the user
+        */
+       public List<Gender> selectableGenders ();
+}
index 94661c460b1c43874dee76dc3f42f4ac5999eccb..cc83e8849d10c3ad822b36d855c528b5902157b4 100644 (file)
@@ -17,9 +17,7 @@
 package org.mxchange.jshopcore.model.basket;
 
 import java.io.Serializable;
-import java.util.Map;
 import javax.ejb.Remote;
-import org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException;
 
 /**
  * An interface for a basket bean
@@ -28,50 +26,4 @@ import org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException;
  */
 @Remote
 public interface BasketSessionBeanRemote extends Serializable {
-
-       /**
-        * Adds given item instance to this basket
-        *
-        * @param item Item instance to add
-        * @throws org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException If the item as already been added
-        */
-       public void addItem (final AddableBasketItem item) throws BasketItemAlreadyAddedException;
-
-       /**
-        * Checks if the basket is empty
-        *
-        * @return Whether the basket is empty
-        */
-       public boolean isEmpty ();
-
-       /**
-        * Checks whether the given product as already been added. If the product's
-        * item id number was found in basket, the corresponding item instance will
-        * be set
-        *
-        * @param item Item instance to check
-        * @return Whether the given item has been found
-        */
-       public boolean isAdded (final AddableBasketItem item);
-
-       /**
-        * Some "getter" for all entries in this basket
-        *
-        * @return Map on all basket items
-        */
-       public Map<Long, AddableBasketItem> getAll ();
-
-       /**
-        * Getter for last entry
-        *
-        * @return Last added item in basket
-        */
-       public AddableBasketItem getLast ();
-
-       /**
-        * Getter for last num rows
-        *
-        * @return Last num rows
-        */
-       public int getLastNumRows ();
 }
index cf1ef1923df53cb0afcbbe6c1e5d5da72a52f94a..6217ca0b483c657a87074b60c14bab442781054a 100644 (file)
@@ -19,6 +19,7 @@ package org.mxchange.jshopcore.model.category;
 import java.io.Serializable;
 import java.rmi.RemoteException;
 import javax.ejb.Remote;
+import org.mxchange.jshopcore.exceptions.CannotAddCategoryException;
 import org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException;
 
 /**
@@ -35,6 +36,7 @@ public interface AdminCategorySessionBeanRemote extends Serializable {
         * @param category Category instance
         * @throws java.rmi.RemoteException If something unexpected happened
         * @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
         */
-       public void doAdminAddCategory (final Category category) throws RemoteException, CategoryTitleAlreadyUsedException;
+       public void doAdminAddCategory (final Category category) throws RemoteException, CategoryTitleAlreadyUsedException, CannotAddCategoryException;
 }
index f4b654389ad9e801b9eceee7ed9b9bf5ac2f428d..875a094d1fc79a6107a576ed5b321fe11e794544 100644 (file)
@@ -19,6 +19,7 @@ package org.mxchange.jshopcore.model.category;
 import java.io.Serializable;
 import java.util.Deque;
 import javax.ejb.Remote;
+import org.mxchange.jshopcore.exceptions.CannotAddCategoryException;
 import org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException;
 
 /**
@@ -35,8 +36,9 @@ public interface CategorySessionBeanRemote extends Serializable {
         *
         * @param category Category instance
         * @throws org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException If the given category title is already used
+        * @throws org.mxchange.jshopcore.exceptions.CannotAddCategoryException If the category cannot be added
         */
-       public void doAdminAddCategory (final Category category) throws CategoryTitleAlreadyUsedException;
+       public void doAdminAddCategory (final Category category) throws CategoryTitleAlreadyUsedException, CannotAddCategoryException;
 
        /**
         * Some "getter" for a linked list of all categories
index ea62d54547c0a519c6287642a1566db694ee21b7..da1aea38b63183e1bb8ff58c99d9386218dc91f1 100644 (file)
@@ -19,6 +19,7 @@ package org.mxchange.jshopcore.model.product;
 import java.io.Serializable;
 import java.util.Deque;
 import javax.ejb.Remote;
+import org.mxchange.jshopcore.exceptions.CannotAddProductException;
 import org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException;
 
 /**
@@ -35,8 +36,9 @@ public interface ProductSessionBeanRemote extends Serializable {
         *
         * @param product Product instance to add
         * @throws org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the given product title is already used
+        * @throws org.mxchange.jshopcore.exceptions.CannotAddProductException If the product cannot be added
         */
-       public void doAdminAddProduct (final Product product) throws ProductTitleAlreadyUsedException;
+       public void doAdminAddProduct (final Product product) throws ProductTitleAlreadyUsedException, CannotAddProductException;
 
        /**
         * Some "getter" for all products. This method is typically used in admin