]> git.mxchange.org Git - jproduct-core.git/commitdiff
Added email address for author
authorRoland Haeder <roland@mxchange.org>
Sun, 6 Mar 2016 17:06:08 +0000 (18:06 +0100)
committerRoland Haeder <roland@mxchange.org>
Sun, 6 Mar 2016 17:06:08 +0000 (18:06 +0100)
src/org/mxchange/jshopcore/exceptions/BasketItemAlreadyAddedException.java
src/org/mxchange/jshopcore/exceptions/CannotAddCategoryException.java
src/org/mxchange/jshopcore/exceptions/CannotAddProductException.java
src/org/mxchange/jshopcore/exceptions/CustomerAlreadyRegisteredException.java
src/org/mxchange/jshopcore/model/customer/CustomerUtils.java
src/org/mxchange/jshopcore/model/customer/status/CustomerAccountStatus.java
src/org/mxchange/jshopcore/model/order/Orderable.java
src/org/mxchange/jshopcore/model/order/ShopOrder.java
src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java
src/org/mxchange/jshopcore/wrapper/WrapableCheckout.java

index b7ce552524225abf704eb0135b6dd37705675f2a..ae227f4759daf11907ab9e40835eef7c37113f09 100644 (file)
@@ -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 {
 
index ad266be0298bbefa39053b6f8cf7e53ea9d9256c..896e4a46c97c11377237f58da89b8c440a7c38df 100644 (file)
@@ -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 {
 
index 3416757882e395d58a09403332a63b86a35224f9..0d8f98f14a3e79673b337d3ec1898bd521643fad 100644 (file)
@@ -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 {
 
index e63a8b4b428f0876052ac985c8abd59e7ad00542..9c582d543e05bf7ae4e496411031b67200cc7b0b 100644 (file)
@@ -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 {
 
index d763937e536bd2962a3191bb19c470756102007d..f62d87354c170e933b7821be10a64fbc0a415369 100644 (file)
@@ -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 {
 
index 0dab3597f6948c0a6982228774883cb5d015a329..1637f8ab49a6e389831e3a10278b347d07c58bbb 100644 (file)
@@ -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 {
 
index da9e6b7e977193c44c253695113821e8575ff88d..6413df9dce75c199aeb193b62a255b4b76f0d9e2 100644 (file)
@@ -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 {
 
index 8e366fcea3b30957b1f133ea7ad10a5de134e73c..2fe383fb1cf55653c74af5486fb7f6614fd12072 100644 (file)
@@ -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")
index 49627edd019c0cc6c3ee44e187e9eb91427df8bc..6b64238778c367e71bca7fa114f2d57e61905a99 100644 (file)
@@ -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 {
 
index 503c7c0ce7572dc5755894bfa750c813e7956337..1bef0d8a4f2f6549f7914c57fd7d95132ba72c5f 100644 (file)
@@ -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 {