* 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 {
* 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 {
* 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 {
/**
* An exception thrown when the customer is already registered
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
public class CustomerAlreadyRegisteredException extends Exception {
/**
* An utilities class for customers
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
public class CustomerUtils extends BaseFrameworkSystem {
/**
* 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 {
/**
* An interface for customer orders
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
public interface Orderable extends Serializable {
/**
* An entity class for shop orders
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
@Entity (name = "orders")
@Table (name = "orders")
/**
* A wrapper for checkouts (customer, ordered items)
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
public class CheckoutWrapper implements WrapableCheckout {
/**
* An interface for checkout wrapper
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
public interface WrapableCheckout extends Serializable {