]> git.mxchange.org Git - jproduct-core.git/commitdiff
updated own name and resources
authorRoland Haeder <roland@mxchange.org>
Mon, 10 Apr 2017 21:55:11 +0000 (23:55 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 10 Apr 2017 21:55:11 +0000 (23:55 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
26 files changed:
nbproject/project.properties
src/org/mxchange/jshopcore/events/category/AddedCategoryEvent.java
src/org/mxchange/jshopcore/events/category/ShopCategoryAddedEvent.java
src/org/mxchange/jshopcore/events/product/AddedProductEvent.java
src/org/mxchange/jshopcore/events/product/ShopProductAddedEvent.java
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/CategoryTitleAlreadyUsedException.java
src/org/mxchange/jshopcore/exceptions/ProductTitleAlreadyUsedException.java
src/org/mxchange/jshopcore/model/basket/AddableBasketItem.java
src/org/mxchange/jshopcore/model/basket/BaseBasket.java
src/org/mxchange/jshopcore/model/basket/Basket.java
src/org/mxchange/jshopcore/model/basket/ShopBasket.java
src/org/mxchange/jshopcore/model/basket/items/BaseItem.java
src/org/mxchange/jshopcore/model/basket/items/BasketItem.java
src/org/mxchange/jshopcore/model/category/Category.java
src/org/mxchange/jshopcore/model/category/ProductCategory.java
src/org/mxchange/jshopcore/model/customer/CustomerUtils.java
src/org/mxchange/jshopcore/model/order/Orderable.java
src/org/mxchange/jshopcore/model/order/ShopOrder.java
src/org/mxchange/jshopcore/model/order/items/OrderItem.java
src/org/mxchange/jshopcore/model/product/GenericProduct.java
src/org/mxchange/jshopcore/model/product/Product.java
src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java
src/org/mxchange/jshopcore/wrapper/WrapableCheckout.java

index 37e2cd6a5d875e6cf84be0ebcf216f24da0b3887..35e8bbe885fced7580f79401315a18eb530f934d 100644 (file)
@@ -4,7 +4,7 @@ annotation.processing.processors.list=
 annotation.processing.run.all.processors=true
 annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
 application.title=jshop-core
-application.vendor=Roland Haeder
+application.vendor=Roland H\u00e4der
 auxiliary.org-netbeans-spi-editor-hints-projects.perProjectHintSettingsFile=nbproject/cfg_hints.xml
 build.classes.dir=${build.dir}/classes
 build.classes.excludes=**/*.java,**/*.form
index 6369454a41d8920cffe7a49159c703c4d571bac3..d553ceffa62b076da4a5fb70e781e5789ef12c29 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -22,7 +22,7 @@ import org.mxchange.jshopcore.model.category.Category;
 /**
  * An interface for added category events
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public interface AddedCategoryEvent extends Serializable {
 
index 59f279fe22c80a02cea6bc28169d467fa5ebf98d..3f5ba06af7341bce20589878b455c45cf517dc68 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -22,7 +22,7 @@ import org.mxchange.jshopcore.model.category.Category;
 /**
  * An event fired when a new shop category has been added.
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public class ShopCategoryAddedEvent implements AddedCategoryEvent {
 
index 9b4295fb3967b07cac2b5d92b995ea8b43e2594b..eb9b51fc234f816d719f78c8dbbc1ffba80a5956 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -22,7 +22,7 @@ import org.mxchange.jshopcore.model.product.Product;
 /**
  * An interface for added product events
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public interface AddedProductEvent extends Serializable {
 
index 87fca6e0037167c025ce84beab98cb676cc9aa93..68f80e0adecc5c597c196100625baf17d7d27485 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as
@@ -22,7 +22,7 @@ import org.mxchange.jshopcore.model.product.Product;
 /**
  * An event fired when a new shop category has been added.
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public class ShopProductAddedEvent implements AddedProductEvent {
 
index ae227f4759daf11907ab9e40835eef7c37113f09..d5e851253acf9c10d7fa51749fe5116f76d3fe63 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -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<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public class BasketItemAlreadyAddedException extends Exception {
 
index 896e4a46c97c11377237f58da89b8c440a7c38df..f1b89d7841a7bfe1c5f41f814b5f09636cd13526 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -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<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public class CannotAddCategoryException extends Exception {
 
index 0d8f98f14a3e79673b337d3ec1898bd521643fad..2bcb67b04f3821f262f6e314750f893e3adfb529 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -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<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public class CannotAddProductException extends Exception {
 
index f42bd63c6f7b5204d57417cc9d1ce4cac085cdf3..54bb5304e78059c3124a055961fb4c29872ca7e1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@ import org.mxchange.jshopcore.model.category.Category;
 /**
  * An exception thrown when the given title is already used
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public class CategoryTitleAlreadyUsedException extends Exception {
 
index d3cd00624380281a83da71724b386c57ae700426..1c0bef3392c22744a1b97f1adea43f7f153f3932 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@ import org.mxchange.jshopcore.model.product.Product;
 /**
  * An exception thrown when the given title is already used
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public class ProductTitleAlreadyUsedException extends Exception {
 
index 512ca7b1b6017d1a5e16fc22c538961d232d1f30..c7f05564dc34d8aa2d8f36d784491fab6015332e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@ import org.mxchange.jshopcore.model.product.Product;
 /**
  * An interface for addable basket items
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public interface AddableBasketItem extends Serializable {
 
index b6a3b8aa03e3d7e1901c827b2fac2c4e56a16c3d..3e7f2781b8c9f93383fcbd35812cc76b47d094bf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -25,7 +25,7 @@ import org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException;
  * A general basket class. This class does not store any properties, it only
  * contains logic for handling the items (T).
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  * @param <T> Any instance that implements AddableBasketItem
  */
 public abstract class BaseBasket<T extends AddableBasketItem> implements Basket<T> {
index 075006b83cdb48c367539675bc310dc1b19296e5..9b70fc33bacb1b705544ed12c1671a7c6f4efed1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -23,7 +23,7 @@ import org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException;
 /**
  * An interface for baskets
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  * @param <T> Any addable basket items
  */
 public interface Basket<T extends AddableBasketItem> extends Serializable {
index e8645200d9df9b5d2d1a7262597cf4ceb3478490..572d7e74d1a63ea44aab34781532be3605f4ba87 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -19,7 +19,7 @@ package org.mxchange.jshopcore.model.basket;
 /**
  * A basket for orderable items
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public class ShopBasket extends BaseBasket<AddableBasketItem> implements Basket<AddableBasketItem> {
 
index fb080ae7284f6e2a2eaf0fdbff5c631981e3906b..734fd85ca123b941817cd898ccc0b17c7e71999b 100644 (file)
@@ -24,7 +24,7 @@ import org.mxchange.jshopcore.model.product.Product;
  * An item (addable to a basket) could represent a product or a discount coupon.
  * This depends on the type of the item.
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public abstract class BaseItem implements AddableBasketItem {
 
index 9eb82012ef9c41c87992410508f173d9356f64db..6915615cb255fb9f0e684642150d01ed0eb48efe 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -34,7 +34,7 @@ import org.mxchange.jshopcore.model.product.Product;
 /**
  * A general basket item
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 @Entity (name = "basket_items")
 @Table (name = "basket_items")
index 15bb232316f591385b82772a033d21412d09df11..65136b7bfd6dd8d91e6027a36f06dbd7e378e651 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@ import java.io.Serializable;
 /**
  * An interface for categories
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public interface Category extends Serializable {
 
index aa4bb159146392f4fac6021b26548f0a1ee0ab77..35497573add45236d93fa798bf15f50f9d9727bf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -32,7 +32,7 @@ import javax.persistence.Transient;
 /**
  * A product category
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 @Entity (name = "category")
 @Table (name = "category")
index 7245a9e0f9d47b34b7fa3ed5448068ba98c3a0ea..c68aa71d882f670e19418a3d4303cb73feea5e04 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -29,7 +29,7 @@ import org.mxchange.jshopcore.model.order.ShopOrder;
 /**
  * An utilities class for customers
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public class CustomerUtils extends BaseFrameworkSystem {
 
index d505f82c17af53552a9c7b9ea96b899301c4b3ca..172642d4b8ddcd96a0cd3560861a766bd9432a42 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -25,7 +25,7 @@ import org.mxchange.jshopcore.model.basket.AddableBasketItem;
 /**
  * An interface for customer orders
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public interface Orderable extends Serializable {
 
index 1c2680f2eafabdac212a4f13312e7cda28d9fef2..a11b73325e5d4668c5c8c85febf1961c56b17099 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -38,7 +38,7 @@ import org.mxchange.jshopcore.model.basket.AddableBasketItem;
 /**
  * An entity class for shop orders
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 @Entity (name = "orders")
 @Table (name = "orders")
index c687fd07ffe7344dc6977d2ad069c4b4c84ecfb4..4e79768cfdf06ba5ccf0e825269f32ca86a9577b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -37,7 +37,7 @@ import org.mxchange.jshopcore.model.product.Product;
 /**
  * A general basket item
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 @Entity (name = "ordered_item")
 @Table (
index 83db6c5b03aa89fb992ce471f1589f5bd5ddd06c..febde61619c9e21c6b3629cd2b9be2ea8d04b536 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -34,7 +34,7 @@ import org.mxchange.jshopcore.model.category.ProductCategory;
 /**
  * Generic product class
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  * TODO: Find a better name
  */
 @Entity (name = "products")
index 21f42c65b98d40beada23b1b0ae95f9a452804fe..0347f3319864a7e8019e6a2b110359fe116fa68f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@ import org.mxchange.jshopcore.model.category.Category;
 /**
  * An interface for in database storable products
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public interface Product extends Serializable {
 
index f5872ba6015a8f241202b5061bf74c04c870fc1e..8dd12b45fc31513ca50085bf6274bac2363bf506 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -23,7 +23,7 @@ import org.mxchange.jshopcore.model.basket.AddableBasketItem;
 /**
  * A wrapper for checkouts (customer, ordered items)
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public class CheckoutWrapper implements WrapableCheckout {
 
index 0f31363b0fe8403da0cd34cc2be5d647cb9500dc..cd69138f707138d0148075bf4a8be56428daae60 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -24,7 +24,7 @@ import org.mxchange.jshopcore.model.basket.AddableBasketItem;
 /**
  * An interface for checkout wrapper
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public interface WrapableCheckout extends Serializable {