From 7950727d7cd403d1eddeaaad24034396a8455858 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Fri, 28 Aug 2015 22:31:01 +0200 Subject: [PATCH] =?utf8?q?Fixed=20more=20packages=20Signed-off-by:Roland?= =?utf8?q?=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../application/PizzaServiceApplication.java | 2 ++ web/customer/lost_passwd.jsp | 2 +- web/errorHandler.jsp | 2 +- web/form_handler/admin/do_category.jsp | 4 ++-- web/form_handler/admin/do_product.jsp | 4 ++-- web/imprint.jsp | 2 +- web/index.jsp | 6 +++--- web/privacy.jsp | 2 +- web/static/gender_selection_box.jsp | 4 ++-- web/terms.jsp | 2 +- 10 files changed, 16 insertions(+), 14 deletions(-) diff --git a/src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java b/src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java index 96c36864..373f9e97 100644 --- a/src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java +++ b/src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java @@ -1006,7 +1006,9 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P * @param request Request instance * @param session Session instance * @return Amount as string + * @deprecated Old lost code */ + @Deprecated private String handleChooseFromRequestSession (final Product product, final HttpServletRequest request, final HttpSession session) { // Trace message this.getLogger().trace(MessageFormat.format("product={0},request={1},session={2} - CALLED!", product, request, session)); //NOI18N diff --git a/web/customer/lost_passwd.jsp b/web/customer/lost_passwd.jsp index c77bab65..5a94afb6 100644 --- a/web/customer/lost_passwd.jsp +++ b/web/customer/lost_passwd.jsp @@ -6,7 +6,7 @@ <%--<%@page errorPage="errorHandler.jsp" %>--%> <%@page contentType="text/html" pageEncoding="UTF-8"%> -<%@page import="org.mxchange.pizzaapplication.beans.PizzaServiceBean"%> +<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> diff --git a/web/errorHandler.jsp b/web/errorHandler.jsp index feffab16..e6922773 100644 --- a/web/errorHandler.jsp +++ b/web/errorHandler.jsp @@ -5,7 +5,7 @@ --%> <%@page import="org.mxchange.pizzaapplication.beans.PizzaBean"%> -<%@page import="org.mxchange.pizzaapplication.beans.PizzaServiceBean"%> +<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%> <%@page import="java.io.PrintWriter"%> <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> diff --git a/web/form_handler/admin/do_category.jsp b/web/form_handler/admin/do_category.jsp index 56e9a31d..656e336c 100644 --- a/web/form_handler/admin/do_category.jsp +++ b/web/form_handler/admin/do_category.jsp @@ -6,12 +6,12 @@ <%--<%@page errorPage="errorHandler.jsp" %>--%> <%@page contentType="text/html" pageEncoding="UTF-8"%> -<%@page import="org.mxchange.pizzaapplication.beans.PizzaServiceBean"%> +<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%> <%@page import="org.mxchange.pizzaapplication.beans.PizzaBean"%> <%@page import="org.mxchange.pizzaapplication.beans.customer.CustomerBean" %> <%@page import="org.mxchange.pizzaapplication.product.Product"%> <%@page import="org.mxchange.pizzaapplication.exceptions.CategoryTitleAlreadyUsedException"%> - + <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> diff --git a/web/form_handler/admin/do_product.jsp b/web/form_handler/admin/do_product.jsp index e9ffa89f..441e01e0 100644 --- a/web/form_handler/admin/do_product.jsp +++ b/web/form_handler/admin/do_product.jsp @@ -6,11 +6,11 @@ <%--<%@page errorPage="errorHandler.jsp" %>--%> <%@page contentType="text/html" pageEncoding="UTF-8"%> -<%@page import="org.mxchange.pizzaapplication.beans.PizzaServiceBean"%> +<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%> <%@page import="org.mxchange.pizzaapplication.beans.PizzaBean"%> <%@page import="org.mxchange.pizzaapplication.beans.customer.CustomerBean" %> <%@page import="org.mxchange.pizzaapplication.product.Product"%> - + <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> diff --git a/web/imprint.jsp b/web/imprint.jsp index 34730dbd..fd15838b 100644 --- a/web/imprint.jsp +++ b/web/imprint.jsp @@ -5,7 +5,7 @@ --%> <%@page contentType="text/html" pageEncoding="UTF-8"%> -<%@page import="org.mxchange.pizzaapplication.beans.PizzaServiceBean"%> +<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> diff --git a/web/index.jsp b/web/index.jsp index 9a2b0eb0..5a9abd76 100644 --- a/web/index.jsp +++ b/web/index.jsp @@ -7,17 +7,17 @@ <%--<%@page errorPage="errorHandler.jsp" %>--%> <%@page import="java.util.Map"%> <%@page import="java.util.Iterator"%> -<%@page import="org.mxchange.pizzaapplication.application.PizzaApplication"%> -<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%> <%@page import="org.mxchange.jshop.product.Product"%> <%@page import="org.mxchange.jshop.basket.Basket"%> <%@page import="org.mxchange.jshop.item.basket.BasketItem"%> <%@page import="org.mxchange.jshop.item.AddableBasketItem"%> +<%@page import="org.mxchange.pizzaapplication.application.PizzaApplication"%> +<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaBean"%> <%@page contentType="text/html" pageEncoding="UTF-8"%> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> <%@taglib prefix="basket" uri="http://mxchange.org/jshop/tags/basket" %> - + diff --git a/web/privacy.jsp b/web/privacy.jsp index 0fc80f75..70f917e0 100644 --- a/web/privacy.jsp +++ b/web/privacy.jsp @@ -6,7 +6,7 @@ <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@page contentType="text/html" pageEncoding="UTF-8"%> -<%@page import="org.mxchange.pizzaapplication.beans.PizzaServiceBean"%> +<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%> diff --git a/web/static/gender_selection_box.jsp b/web/static/gender_selection_box.jsp index e453adb5..fb179f24 100644 --- a/web/static/gender_selection_box.jsp +++ b/web/static/gender_selection_box.jsp @@ -4,12 +4,12 @@ Author : Roland Haeder --%> <%@page import="org.mxchange.jcore.contact.Gender"%> -<%@page import="org.mxchange.pizzaapplication.beans.PizzaServiceBean"%> +<%@page import="org.mxchange.pizzaapplication.beans.controller.PizzaServiceBean"%> <%@page import="org.mxchange.pizzaapplication.beans.PizzaBean"%> <%@page import="org.mxchange.pizzaapplication.beans.customer.CustomerBean" %> - +