]> git.mxchange.org Git - jcustomer-lib.git/commitdiff
Cleanup through inspection + updated jar(s)
authorRoland Haeder <roland@mxchange.org>
Thu, 15 Oct 2015 07:45:52 +0000 (09:45 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 15 Oct 2015 11:46:27 +0000 (13:46 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore.jar
lib/jcoreee.jar
lib/jshop-core.jar
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/customer/CustomerSessionBeanRemote.java
src/org/mxchange/jshopcore/model/product/AdminProductSessionBeanRemote.java
src/org/mxchange/jshopcore/model/product/ProductSessionBeanRemote.java
src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java

index a6eb677503c0d30b4193df4b45c57ed7216d2652..1c2e5700bc02644df1ffeab194e3f5068109e9bc 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index db108dde70c9a04dcc1d5eb7468ba40659daec95..176cc9d7eceef50e5e7f37bd45f4b9cd4b310799 100644 (file)
Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ
index a0a803090b9de5252a7c55008a75b4e0b5abf322..9ae15ea5c10b56e92ef7597aa9ceff75dd82039b 100644 (file)
Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ
index ea0be6f6af2bca600e8970ce91db36e37c80d12b..31350b03272c0ab799611c42ed70a4a8342708a6 100644 (file)
@@ -37,5 +37,5 @@ public interface BasketSessionBeanRemote extends Serializable {
         * <p>
         * @return Access key
         */
-       public String registerItems (final Customer customer, final List<AddableBasketItem> orderedItems);
+       String registerItems (final Customer customer, final List<AddableBasketItem> orderedItems);
 }
index 378a504d2b4800df58bc966773a20369f15123bf..837f46289c37b1f258a11839937f4ab169e107e5 100644 (file)
@@ -42,5 +42,5 @@ public interface AdminCategorySessionBeanRemote extends Serializable {
         * @throws org.mxchange.jshopcore.exceptions.CannotAddCategoryException If
         * the category cannot be added
         */
-       public Category doAdminAddCategory (final Category category) throws CategoryTitleAlreadyUsedException, CannotAddCategoryException;
+       Category doAdminAddCategory (final Category category) throws CategoryTitleAlreadyUsedException, CannotAddCategoryException;
 }
index 312e00da51e3660121b4114e56031d2e35b543da..3d3553eeec2c4c9a4529539e78c22ebc8e06f308 100644 (file)
@@ -33,5 +33,5 @@ public interface CategorySessionBeanRemote extends Serializable {
         * <p>
         * @return All categories
         */
-       public List<Category> getAllCategories ();
+       List<Category> getAllCategories ();
 }
index 26b9e72c8bf768aa0d8d47829b5cd5dafb2d40d3..d9ac07e0b6ad1d2edd441e91ec45cdb17615fc08 100644 (file)
@@ -35,7 +35,7 @@ public interface CustomerSessionBeanRemote extends Serializable {
         * <p>
         * @return Prepared Customer instance
         */
-       public Customer fillCustomerData (final Customer customer);
+       Customer fillCustomerData (final Customer customer);
 
        /**
         * Checks if the the given customer instance is already registered
@@ -44,7 +44,7 @@ public interface CustomerSessionBeanRemote extends Serializable {
         * <p>
         * @return Whether the customer is already registered
         */
-       public boolean isReqistered (final Customer customer);
+       boolean isReqistered (final Customer customer);
 
        /**
         * Registers the customer and creates a customer number after succesful
@@ -58,5 +58,5 @@ public interface CustomerSessionBeanRemote extends Serializable {
         * org.mxchange.jshopcore.exceptions.CustomerAlreadyRegisteredException If
         * the customer is already registered.
         */
-       public Customer registerCustomer (final Customer customer) throws CustomerAlreadyRegisteredException;
+       Customer registerCustomer (final Customer customer) throws CustomerAlreadyRegisteredException;
 }
index 5168f201e17396f8e4559208478789b5ae84a784..039b2c78bb70c0ebfd45306bfa01436c06d018f2 100644 (file)
@@ -35,7 +35,7 @@ public interface AdminProductSessionBeanRemote extends Serializable {
         * <p>
         * @return All products
         */
-       public List<Product> getAllProducts ();
+       List<Product> getAllProducts ();
 
        /**
         * Adds given product data from request to database
@@ -50,5 +50,5 @@ public interface AdminProductSessionBeanRemote extends Serializable {
         * @throws org.mxchange.jshopcore.exceptions.CannotAddProductException If
         * something unexpected happened
         */
-       public Product doAdminAddProduct (final Product product) throws ProductTitleAlreadyUsedException, CannotAddProductException;
+       Product doAdminAddProduct (final Product product) throws ProductTitleAlreadyUsedException, CannotAddProductException;
 }
index 343f2f53589f6893919727646746744498219957..a644d745324d0c8c258af6226106e0e60047fae0 100644 (file)
@@ -33,5 +33,5 @@ public interface ProductSessionBeanRemote extends Serializable {
         * <p>
         * @return Only available products
         */
-       public List<Product> getAvailableProducts ();
+       List<Product> getAvailableProducts ();
 }
index 3762a84cc9a76d50978d7fda373b09adf1c718f0..37def8bad1c3ddd7fcbad233da9d1c42f86847f7 100644 (file)
@@ -36,7 +36,7 @@ public interface ReceiptBeanRemote extends Serializable {
         * <p>
         * @return Wrapped byte stream
         */
-       public WrapableReceipt createReceiptFromAccessKey (final String accessKey);
+       WrapableReceipt createReceiptFromAccessKey (final String accessKey);
 
        /**
         * Fetches access key, if customer instance matches, else null is returned
@@ -45,33 +45,33 @@ public interface ReceiptBeanRemote extends Serializable {
         * <p>
         * @return Access key or null
         */
-       public String fetchAccessKey (final Customer customer);
+       String fetchAccessKey (final Customer customer);
 
        /**
         * Getter for access key
         * <p>
         * @return Access key
         */
-       public String getAccessKey ();
+       String getAccessKey ();
 
        /**
         * Setter for access key
         * <p>
         * @param accessKey Access key
         */
-       public void setAccessKey (final String accessKey);
+       void setAccessKey (final String accessKey);
 
        /**
         * Getter for customer instance
         * <p>
         * @return Customer instance
         */
-       public Customer getCustomer ();
+       Customer getCustomer ();
 
        /**
         * Setter for customer instance
         * <p>
         * @param customer Customer instance
         */
-       public void setCustomer (final Customer customer);
+       void setCustomer (final Customer customer);
 }