]> git.mxchange.org Git - jshop-lib.git/commitdiff
Auto-formatted whole project
authorRoland Haeder <roland@mxchange.org>
Fri, 9 Oct 2015 19:39:32 +0000 (21:39 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 9 Oct 2015 19:39:32 +0000 (21:39 +0200)
src/org/mxchange/jshopcore/model/basket/BasketSessionBeanRemote.java
src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java
src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java
src/org/mxchange/jshopcore/model/product/AdminProductSessionBeanRemote.java
src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java

index 010c0308baa2d74f0ee9e38363f792580514611a..82566541e932476e6f43a3ccb6048dc9089a6c1c 100644 (file)
@@ -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);
index 3ad1c54ccdd7f7644571d8977a0e183acb2f28b9..378a504d2b4800df58bc966773a20369f15123bf 100644 (file)
@@ -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
index a3709b33a16ea8e48f9d9f108167d3b1018c3385..26b9e72c8bf768aa0d8d47829b5cd5dafb2d40d3 100644 (file)
@@ -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.
index e97c16e0373fc0056df653904d9925673d522052..5168f201e17396f8e4559208478789b5ae84a784 100644 (file)
@@ -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
index 6144f2efe5a5536efc9b198ae345d050263f2468..3762a84cc9a76d50978d7fda373b09adf1c718f0 100644 (file)
@@ -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);