From 1aa89e3102b176f8838bbbc67bf3710073c3f725 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Fri, 4 Sep 2015 09:58:35 +0200 Subject: [PATCH] =?utf8?q?Moved=20to=20jshop=20Signed-off-by:Roland=20H?= =?utf8?q?=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../pizzaapplication/customer/Customer.java | 28 ------------------- .../customer/PizzaServiceCustomer.java | 26 ----------------- 2 files changed, 54 deletions(-) delete mode 100644 src/org/mxchange/pizzaapplication/customer/Customer.java delete mode 100644 src/org/mxchange/pizzaapplication/customer/PizzaServiceCustomer.java diff --git a/src/org/mxchange/pizzaapplication/customer/Customer.java b/src/org/mxchange/pizzaapplication/customer/Customer.java deleted file mode 100644 index 7d2cf5f..0000000 --- a/src/org/mxchange/pizzaapplication/customer/Customer.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (C) 2015 Roland Haeder - * - * 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 - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package org.mxchange.pizzaapplication.customer; - -import org.mxchange.jcore.contact.Contact; - -/** - * A customer interface - * - * @author Roland Haeder - */ -public interface Customer extends Contact { - -} diff --git a/src/org/mxchange/pizzaapplication/customer/PizzaServiceCustomer.java b/src/org/mxchange/pizzaapplication/customer/PizzaServiceCustomer.java deleted file mode 100644 index a83f065..0000000 --- a/src/org/mxchange/pizzaapplication/customer/PizzaServiceCustomer.java +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (C) 2015 Roland Haeder - * - * 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 - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package org.mxchange.pizzaapplication.customer; - -import org.mxchange.jcore.contact.BaseContact; - -/** - * - * @author Roland Haeder - */ -public class PizzaServiceCustomer extends BaseContact implements Customer { -} -- 2.39.5