]> git.mxchange.org Git - jcustomer-lib.git/blobdiff - src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java
auto-formatted project + updated jars
[jcustomer-lib.git] / src / org / mxchange / jshopcore / model / customer / CustomerSessionBeanRemote.java
index b5d8428df0130094d8859ed4fb696bca4ee77e12..a3709b33a16ea8e48f9d9f108167d3b1018c3385 100644 (file)
@@ -22,7 +22,7 @@ import org.mxchange.jshopcore.exceptions.CustomerAlreadyRegisteredException;
 
 /**
  * An interface for customer beans
- *
+ * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
 @Remote
@@ -30,7 +30,7 @@ public interface CustomerSessionBeanRemote extends Serializable {
 
        /**
         * Fills given customer instance with all available data
-        *
+        * <p>
         * @param customer Initial Customer instance
         * @return Prepared Customer instance
         */
@@ -38,7 +38,7 @@ public interface CustomerSessionBeanRemote extends Serializable {
 
        /**
         * Checks if the the given customer instance is already registered
-        *
+        * <p>
         * @param customer Customer instance
         * @return Whether the customer is already registered
         */
@@ -47,10 +47,12 @@ public interface CustomerSessionBeanRemote extends Serializable {
        /**
         * Registers the customer and creates a customer number after succesful
         * persisting.
-        *
+        * <p>
         * @param customer Initial customer instance
         * @return Prepared Customer instance
-        * @throws org.mxchange.jshopcore.exceptions.CustomerAlreadyRegisteredException If the customer is already registered.
+        * @throws
+        * org.mxchange.jshopcore.exceptions.CustomerAlreadyRegisteredException If
+        * the customer is already registered.
         */
        public Customer registerCustomer (final Customer customer) throws CustomerAlreadyRegisteredException;
 }