From: Roland Haeder <roland@mxchange.org>
Date: Sun, 6 Mar 2016 17:06:08 +0000 (+0100)
Subject: Added email address for author
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9e3bbef35346f1b6ef800292514385bb7bcb81cb;p=jproduct-core.git

Added email address for author
---

diff --git a/src/org/mxchange/jshopcore/exceptions/BasketItemAlreadyAddedException.java b/src/org/mxchange/jshopcore/exceptions/BasketItemAlreadyAddedException.java
index b7ce552..ae227f4 100644
--- a/src/org/mxchange/jshopcore/exceptions/BasketItemAlreadyAddedException.java
+++ b/src/org/mxchange/jshopcore/exceptions/BasketItemAlreadyAddedException.java
@@ -23,7 +23,7 @@ import org.mxchange.jshopcore.model.basket.AddableBasketItem;
  * An exception thrown when the given item is already added to the
  * basketController.
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public class BasketItemAlreadyAddedException extends Exception {
 
diff --git a/src/org/mxchange/jshopcore/exceptions/CannotAddCategoryException.java b/src/org/mxchange/jshopcore/exceptions/CannotAddCategoryException.java
index ad266be..896e4a4 100644
--- a/src/org/mxchange/jshopcore/exceptions/CannotAddCategoryException.java
+++ b/src/org/mxchange/jshopcore/exceptions/CannotAddCategoryException.java
@@ -20,7 +20,7 @@ package org.mxchange.jshopcore.exceptions;
  * An exception thrown when the category cannot be added for a "low level"
  * reason.
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public class CannotAddCategoryException extends Exception {
 
diff --git a/src/org/mxchange/jshopcore/exceptions/CannotAddProductException.java b/src/org/mxchange/jshopcore/exceptions/CannotAddProductException.java
index 3416757..0d8f98f 100644
--- a/src/org/mxchange/jshopcore/exceptions/CannotAddProductException.java
+++ b/src/org/mxchange/jshopcore/exceptions/CannotAddProductException.java
@@ -20,7 +20,7 @@ package org.mxchange.jshopcore.exceptions;
  * An exception thrown when the product cannot be added for a "low level"
  * reason.
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public class CannotAddProductException extends Exception {
 
diff --git a/src/org/mxchange/jshopcore/exceptions/CustomerAlreadyRegisteredException.java b/src/org/mxchange/jshopcore/exceptions/CustomerAlreadyRegisteredException.java
index e63a8b4..9c582d5 100644
--- a/src/org/mxchange/jshopcore/exceptions/CustomerAlreadyRegisteredException.java
+++ b/src/org/mxchange/jshopcore/exceptions/CustomerAlreadyRegisteredException.java
@@ -22,7 +22,7 @@ import org.mxchange.jshopcore.model.customer.Customer;
 /**
  * An exception thrown when the customer is already registered
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public class CustomerAlreadyRegisteredException extends Exception {
 
diff --git a/src/org/mxchange/jshopcore/model/customer/CustomerUtils.java b/src/org/mxchange/jshopcore/model/customer/CustomerUtils.java
index d763937..f62d873 100644
--- a/src/org/mxchange/jshopcore/model/customer/CustomerUtils.java
+++ b/src/org/mxchange/jshopcore/model/customer/CustomerUtils.java
@@ -28,7 +28,7 @@ import org.mxchange.jshopcore.model.order.ShopOrder;
 /**
  * An utilities class for customers
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public class CustomerUtils extends BaseFrameworkSystem {
 
diff --git a/src/org/mxchange/jshopcore/model/customer/status/CustomerAccountStatus.java b/src/org/mxchange/jshopcore/model/customer/status/CustomerAccountStatus.java
index 0dab359..1637f8a 100644
--- a/src/org/mxchange/jshopcore/model/customer/status/CustomerAccountStatus.java
+++ b/src/org/mxchange/jshopcore/model/customer/status/CustomerAccountStatus.java
@@ -21,7 +21,7 @@ import java.io.Serializable;
 /**
  * An enum for customer's account status like confirmed, locked, etc.
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public enum CustomerAccountStatus implements Serializable {
 
diff --git a/src/org/mxchange/jshopcore/model/order/Orderable.java b/src/org/mxchange/jshopcore/model/order/Orderable.java
index da9e6b7..6413df9 100644
--- a/src/org/mxchange/jshopcore/model/order/Orderable.java
+++ b/src/org/mxchange/jshopcore/model/order/Orderable.java
@@ -25,7 +25,7 @@ import org.mxchange.jshopcore.model.customer.Customer;
 /**
  * An interface for customer orders
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public interface Orderable extends Serializable {
 
diff --git a/src/org/mxchange/jshopcore/model/order/ShopOrder.java b/src/org/mxchange/jshopcore/model/order/ShopOrder.java
index 8e366fc..2fe383f 100644
--- a/src/org/mxchange/jshopcore/model/order/ShopOrder.java
+++ b/src/org/mxchange/jshopcore/model/order/ShopOrder.java
@@ -38,7 +38,7 @@ import org.mxchange.jshopcore.model.customer.ShopCustomer;
 /**
  * An entity class for shop orders
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 @Entity (name = "orders")
 @Table (name = "orders")
diff --git a/src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java b/src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java
index 49627ed..6b64238 100644
--- a/src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java
+++ b/src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java
@@ -23,7 +23,7 @@ import org.mxchange.jshopcore.model.customer.Customer;
 /**
  * A wrapper for checkouts (customer, ordered items)
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public class CheckoutWrapper implements WrapableCheckout {
 
diff --git a/src/org/mxchange/jshopcore/wrapper/WrapableCheckout.java b/src/org/mxchange/jshopcore/wrapper/WrapableCheckout.java
index 503c7c0..1bef0d8 100644
--- a/src/org/mxchange/jshopcore/wrapper/WrapableCheckout.java
+++ b/src/org/mxchange/jshopcore/wrapper/WrapableCheckout.java
@@ -24,7 +24,7 @@ import org.mxchange.jshopcore.model.customer.Customer;
 /**
  * An interface for checkout wrapper
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public interface WrapableCheckout extends Serializable {