From 21de16b07d7036668c1ab0083f605d0ac1c347a2 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Mon, 11 Apr 2016 18:36:38 +0200 Subject: [PATCH] Moved to proper package and fixed interface name from pizzaservice-war cherry-pick --- .../AddressbookAdminCountryWebApplicationBean.java} | 8 ++++---- .../AddressbookAdminCountryWebApplicationController.java} | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) rename src/java/org/mxchange/{pizzaapplication/beans/country/PizzaAdminCountryWebApplicationBean.java => addressbook/beans/country/AddressbookAdminCountryWebApplicationBean.java} (95%) rename src/java/org/mxchange/{pizzaapplication/beans/country/PizzaAdminCountryWebApplicationController.java => addressbook/beans/country/AddressbookAdminCountryWebApplicationController.java} (96%) diff --git a/src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebApplicationBean.java b/src/java/org/mxchange/addressbook/beans/country/AddressbookAdminCountryWebApplicationBean.java similarity index 95% rename from src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebApplicationBean.java rename to src/java/org/mxchange/addressbook/beans/country/AddressbookAdminCountryWebApplicationBean.java index e3663743..d342b319 100644 --- a/src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebApplicationBean.java +++ b/src/java/org/mxchange/addressbook/beans/country/AddressbookAdminCountryWebApplicationBean.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ -package org.mxchange.pizzaapplication.beans.country; +package org.mxchange.addressbook.beans.country; import java.util.Iterator; import java.util.List; @@ -38,7 +38,7 @@ import org.mxchange.jcountry.exceptions.CountryAlreadyAddedException; */ @Named ("adminCountryController") @ApplicationScoped -public class PizzaAdminCountryWebApplicationBean implements PizzaAdminCountryWebApplicationController { +public class AddressbookAdminCountryWebApplicationBean implements AddressbookAdminCountryWebApplicationController { /** * Serial number @@ -64,7 +64,7 @@ public class PizzaAdminCountryWebApplicationBean implements PizzaAdminCountryWeb * Regular country controller */ @Inject - private PizzaCountryWebApplicationController countryController; + private AddressbookCountryWebApplicationController countryController; /** * Local dial prefix @@ -89,7 +89,7 @@ public class PizzaAdminCountryWebApplicationBean implements PizzaAdminCountryWeb /** * Default constructor */ - public PizzaAdminCountryWebApplicationBean () { + public AddressbookAdminCountryWebApplicationBean () { // Try this try { // Get initial context diff --git a/src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebApplicationController.java b/src/java/org/mxchange/addressbook/beans/country/AddressbookAdminCountryWebApplicationController.java similarity index 96% rename from src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebApplicationController.java rename to src/java/org/mxchange/addressbook/beans/country/AddressbookAdminCountryWebApplicationController.java index 40b581ea..03980806 100644 --- a/src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebApplicationController.java +++ b/src/java/org/mxchange/addressbook/beans/country/AddressbookAdminCountryWebApplicationController.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ -package org.mxchange.pizzaapplication.beans.country; +package org.mxchange.addressbook.beans.country; import java.io.Serializable; import java.util.List; @@ -25,7 +25,7 @@ import org.mxchange.jcountry.data.Country; *

* @author Roland Haeder */ -public interface PizzaAdminCountryWebApplicationController extends Serializable { +public interface AddressbookAdminCountryWebApplicationController extends Serializable { /** * A list of all countries -- 2.39.5