From: Roland Haeder Date: Thu, 15 Oct 2015 07:45:52 +0000 (+0200) Subject: Cleanup through inspection + updated jar(s) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=42f309299ed8ff01eaf5b605183bab1df23e6fa0;p=jshop-lib.git Cleanup through inspection + updated jar(s) Signed-off-by:Roland Häder --- diff --git a/lib/jcore.jar b/lib/jcore.jar index a6eb677..1c2e570 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/lib/jcoreee.jar b/lib/jcoreee.jar index db108dd..176cc9d 100644 Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ diff --git a/lib/jshop-core.jar b/lib/jshop-core.jar index a0a8030..9ae15ea 100644 Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ diff --git a/src/org/mxchange/jshopcore/model/basket/BasketSessionBeanRemote.java b/src/org/mxchange/jshopcore/model/basket/BasketSessionBeanRemote.java index ea0be6f..31350b0 100644 --- a/src/org/mxchange/jshopcore/model/basket/BasketSessionBeanRemote.java +++ b/src/org/mxchange/jshopcore/model/basket/BasketSessionBeanRemote.java @@ -37,5 +37,5 @@ public interface BasketSessionBeanRemote extends Serializable { *

* @return Access key */ - public String registerItems (final Customer customer, final List orderedItems); + String registerItems (final Customer customer, final List orderedItems); } diff --git a/src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java b/src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java index 378a504..837f462 100644 --- a/src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java +++ b/src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java @@ -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; } diff --git a/src/org/mxchange/jshopcore/model/category/CategorySessionBeanRemote.java b/src/org/mxchange/jshopcore/model/category/CategorySessionBeanRemote.java index 312e00d..3d3553e 100644 --- a/src/org/mxchange/jshopcore/model/category/CategorySessionBeanRemote.java +++ b/src/org/mxchange/jshopcore/model/category/CategorySessionBeanRemote.java @@ -33,5 +33,5 @@ public interface CategorySessionBeanRemote extends Serializable { *

* @return All categories */ - public List getAllCategories (); + List getAllCategories (); } diff --git a/src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java b/src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java index 26b9e72..d9ac07e 100644 --- a/src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java +++ b/src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java @@ -35,7 +35,7 @@ public interface CustomerSessionBeanRemote extends Serializable { *

* @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 { *

* @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; } diff --git a/src/org/mxchange/jshopcore/model/product/AdminProductSessionBeanRemote.java b/src/org/mxchange/jshopcore/model/product/AdminProductSessionBeanRemote.java index 5168f20..039b2c7 100644 --- a/src/org/mxchange/jshopcore/model/product/AdminProductSessionBeanRemote.java +++ b/src/org/mxchange/jshopcore/model/product/AdminProductSessionBeanRemote.java @@ -35,7 +35,7 @@ public interface AdminProductSessionBeanRemote extends Serializable { *

* @return All products */ - public List getAllProducts (); + List 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; } diff --git a/src/org/mxchange/jshopcore/model/product/ProductSessionBeanRemote.java b/src/org/mxchange/jshopcore/model/product/ProductSessionBeanRemote.java index 343f2f5..a644d74 100644 --- a/src/org/mxchange/jshopcore/model/product/ProductSessionBeanRemote.java +++ b/src/org/mxchange/jshopcore/model/product/ProductSessionBeanRemote.java @@ -33,5 +33,5 @@ public interface ProductSessionBeanRemote extends Serializable { *

* @return Only available products */ - public List getAvailableProducts (); + List getAvailableProducts (); } diff --git a/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java b/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java index 3762a84..37def8b 100644 --- a/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java +++ b/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java @@ -36,7 +36,7 @@ public interface ReceiptBeanRemote extends Serializable { *

* @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 { *

* @return Access key or null */ - public String fetchAccessKey (final Customer customer); + String fetchAccessKey (final Customer customer); /** * Getter for access key *

* @return Access key */ - public String getAccessKey (); + String getAccessKey (); /** * Setter for access key *

* @param accessKey Access key */ - public void setAccessKey (final String accessKey); + void setAccessKey (final String accessKey); /** * Getter for customer instance *

* @return Customer instance */ - public Customer getCustomer (); + Customer getCustomer (); /** * Setter for customer instance *

* @param customer Customer instance */ - public void setCustomer (final Customer customer); + void setCustomer (final Customer customer); }