From 875feef786bbaac4ebaf77a76dfc361b08e0673d Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Fri, 4 Sep 2015 19:16:00 +0200 Subject: [PATCH] =?utf8?q?These=20are=20model=20classes=20Signed-off-by:Ro?= =?utf8?q?land=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../beans/customer/PizzaServiceCustomerBean.java | 2 +- .../pizzaapplication/{ => model}/customer/Customer.java | 2 +- .../{ => model}/customer/PizzaServiceCustomer.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename src/java/org/mxchange/pizzaapplication/{ => model}/customer/Customer.java (93%) rename src/java/org/mxchange/pizzaapplication/{ => model}/customer/PizzaServiceCustomer.java (94%) diff --git a/src/java/org/mxchange/pizzaapplication/beans/customer/PizzaServiceCustomerBean.java b/src/java/org/mxchange/pizzaapplication/beans/customer/PizzaServiceCustomerBean.java index b57ce0e0..17a3942b 100644 --- a/src/java/org/mxchange/pizzaapplication/beans/customer/PizzaServiceCustomerBean.java +++ b/src/java/org/mxchange/pizzaapplication/beans/customer/PizzaServiceCustomerBean.java @@ -26,7 +26,7 @@ import org.mxchange.jcore.client.Client; import org.mxchange.jcore.contact.Contact; import org.mxchange.jcore.contact.gender.Gender; import org.mxchange.jshop.beans.BaseFrameworkBean; -import org.mxchange.pizzaapplication.customer.PizzaServiceCustomer; +import org.mxchange.pizzaapplication.model.customer.PizzaServiceCustomer; /** * A customer bean which hides the customer instance diff --git a/src/java/org/mxchange/pizzaapplication/customer/Customer.java b/src/java/org/mxchange/pizzaapplication/model/customer/Customer.java similarity index 93% rename from src/java/org/mxchange/pizzaapplication/customer/Customer.java rename to src/java/org/mxchange/pizzaapplication/model/customer/Customer.java index 7d2cf5f4..2a520bfa 100644 --- a/src/java/org/mxchange/pizzaapplication/customer/Customer.java +++ b/src/java/org/mxchange/pizzaapplication/model/customer/Customer.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package org.mxchange.pizzaapplication.customer; +package org.mxchange.pizzaapplication.model.customer; import org.mxchange.jcore.contact.Contact; diff --git a/src/java/org/mxchange/pizzaapplication/customer/PizzaServiceCustomer.java b/src/java/org/mxchange/pizzaapplication/model/customer/PizzaServiceCustomer.java similarity index 94% rename from src/java/org/mxchange/pizzaapplication/customer/PizzaServiceCustomer.java rename to src/java/org/mxchange/pizzaapplication/model/customer/PizzaServiceCustomer.java index a83f0656..d9671ef6 100644 --- a/src/java/org/mxchange/pizzaapplication/customer/PizzaServiceCustomer.java +++ b/src/java/org/mxchange/pizzaapplication/model/customer/PizzaServiceCustomer.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package org.mxchange.pizzaapplication.customer; +package org.mxchange.pizzaapplication.model.customer; import org.mxchange.jcore.contact.BaseContact; -- 2.39.5