From: Roland Haeder <roland@mxchange.org>
Date: Fri, 9 Oct 2015 19:39:32 +0000 (+0200)
Subject: Auto-formatted whole project
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=aebfe6cdb4b5f753ec7e86cb512690bf22126c80;p=jshop-lib.git

Auto-formatted whole project
---

diff --git a/src/org/mxchange/jshopcore/model/basket/BasketSessionBeanRemote.java b/src/org/mxchange/jshopcore/model/basket/BasketSessionBeanRemote.java
index 010c030..8256654 100644
--- a/src/org/mxchange/jshopcore/model/basket/BasketSessionBeanRemote.java
+++ b/src/org/mxchange/jshopcore/model/basket/BasketSessionBeanRemote.java
@@ -34,6 +34,7 @@ public interface BasketSessionBeanRemote extends Serializable {
 	 * <p>
 	 * @param customer Customer instance
 	 * @param itemList Ordered items list
+	 * <p>
 	 * @return Access key
 	 */
 	public String registerItems (final Customer customer, final List<AddableBasketItem> itemList);
diff --git a/src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java b/src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java
index 3ad1c54..378a504 100644
--- a/src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java
+++ b/src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java
@@ -33,7 +33,9 @@ public interface AdminCategorySessionBeanRemote extends Serializable {
 	 * Adds given category data from request to database
 	 * <p>
 	 * @param category Category instance
+	 * <p>
 	 * @return Updated category instance
+	 * <p>
 	 * @throws
 	 * org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException If
 	 * the given title is already used
diff --git a/src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java b/src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java
index a3709b3..26b9e72 100644
--- a/src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java
+++ b/src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java
@@ -32,6 +32,7 @@ public interface CustomerSessionBeanRemote extends Serializable {
 	 * Fills given customer instance with all available data
 	 * <p>
 	 * @param customer Initial Customer instance
+	 * <p>
 	 * @return Prepared Customer instance
 	 */
 	public Customer fillCustomerData (final Customer customer);
@@ -40,6 +41,7 @@ public interface CustomerSessionBeanRemote extends Serializable {
 	 * Checks if the the given customer instance is already registered
 	 * <p>
 	 * @param customer Customer instance
+	 * <p>
 	 * @return Whether the customer is already registered
 	 */
 	public boolean isReqistered (final Customer customer);
@@ -49,7 +51,9 @@ public interface CustomerSessionBeanRemote extends Serializable {
 	 * persisting.
 	 * <p>
 	 * @param customer Initial customer instance
+	 * <p>
 	 * @return Prepared Customer instance
+	 * <p>
 	 * @throws
 	 * org.mxchange.jshopcore.exceptions.CustomerAlreadyRegisteredException If
 	 * the customer is already registered.
diff --git a/src/org/mxchange/jshopcore/model/product/AdminProductSessionBeanRemote.java b/src/org/mxchange/jshopcore/model/product/AdminProductSessionBeanRemote.java
index e97c16e..5168f20 100644
--- a/src/org/mxchange/jshopcore/model/product/AdminProductSessionBeanRemote.java
+++ b/src/org/mxchange/jshopcore/model/product/AdminProductSessionBeanRemote.java
@@ -41,7 +41,9 @@ public interface AdminProductSessionBeanRemote extends Serializable {
 	 * Adds given product data from request to database
 	 * <p>
 	 * @param product Product instance
+	 * <p>
 	 * @return Updated product instance
+	 * <p>
 	 * @throws
 	 * org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the
 	 * given product title is already used
diff --git a/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java b/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java
index 6144f2e..3762a84 100644
--- a/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java
+++ b/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java
@@ -33,6 +33,7 @@ public interface ReceiptBeanRemote extends Serializable {
 	 * found.
 	 * <p>
 	 * @param accessKey Access key on the online PDF
+	 * <p>
 	 * @return Wrapped byte stream
 	 */
 	public WrapableReceipt createReceiptFromAccessKey (final String accessKey);
@@ -41,6 +42,7 @@ public interface ReceiptBeanRemote extends Serializable {
 	 * Fetches access key, if customer instance matches, else null is returned
 	 * <p>
 	 * @param customer Customer instance
+	 * <p>
 	 * @return Access key or null
 	 */
 	public String fetchAccessKey (final Customer customer);