From: Roland Haeder Date: Tue, 1 Sep 2015 06:31:14 +0000 (+0200) Subject: Some changes for internationalization + jcore.jar, jsfcore.jar, updated X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=71fc4f8bd60265c6fcdf905488fade8a85a75d2f;p=pizzaservice-war.git Some changes for internationalization + jcore.jar, jsfcore.jar, updated Signed-off-by:Roland Häder --- diff --git a/lib/jcore.jar b/lib/jcore.jar index 9571e27b..8b05d574 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/lib/jsfcore.jar b/lib/jsfcore.jar index 7be00047..ccf6a7f8 100644 Binary files a/lib/jsfcore.jar and b/lib/jsfcore.jar differ diff --git a/lib/jshop.jar b/lib/jshop.jar index ddd7f0d3..e6c9d7bd 100644 Binary files a/lib/jshop.jar and b/lib/jshop.jar differ diff --git a/src/java/org/mxchange/pizzaapplication/beans/customer/PizzaServiceCustomerBean.java b/src/java/org/mxchange/pizzaapplication/beans/customer/PizzaServiceCustomerBean.java index 901ac079..3855b88a 100644 --- a/src/java/org/mxchange/pizzaapplication/beans/customer/PizzaServiceCustomerBean.java +++ b/src/java/org/mxchange/pizzaapplication/beans/customer/PizzaServiceCustomerBean.java @@ -254,7 +254,7 @@ public class PizzaServiceCustomerBean extends BaseFrameworkBean implements Custo @Override public boolean isOwnContact () { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + throw new UnsupportedOperationException("Not supported yet."); //NOI18N } @Override @@ -265,7 +265,7 @@ public class PizzaServiceCustomerBean extends BaseFrameworkBean implements Custo @Override public void show (final Client client) { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + throw new UnsupportedOperationException("Not supported yet."); //NOI18N } @Override diff --git a/src/java/org/mxchange/pizzaapplication/filter/servlet/BaseServletFilter.java b/src/java/org/mxchange/pizzaapplication/filter/servlet/BaseServletFilter.java index 382efbf3..bc0004db 100644 --- a/src/java/org/mxchange/pizzaapplication/filter/servlet/BaseServletFilter.java +++ b/src/java/org/mxchange/pizzaapplication/filter/servlet/BaseServletFilter.java @@ -53,13 +53,13 @@ public abstract class BaseServletFilter extends BaseFrameworkSystem implements F @Override public void init (final FilterConfig filterConfig) throws ServletException { // Trace message - this.getLogger().trace(MessageFormat.format("filterConfig={0} - CALLED!", filterConfig)); + this.getLogger().trace(MessageFormat.format("filterConfig={0} - CALLED!", filterConfig)); //NOI18N // Set config instance this.setConfig(filterConfig); // Trace message - this.getLogger().trace("EXIT!"); + this.getLogger().trace("EXIT!"); //NOI18N } /** diff --git a/src/java/org/mxchange/pizzaapplication/filter/servlet/utf8/Utf8ServletFilter.java b/src/java/org/mxchange/pizzaapplication/filter/servlet/utf8/Utf8ServletFilter.java index 627b1a1b..f3f3797a 100644 --- a/src/java/org/mxchange/pizzaapplication/filter/servlet/utf8/Utf8ServletFilter.java +++ b/src/java/org/mxchange/pizzaapplication/filter/servlet/utf8/Utf8ServletFilter.java @@ -43,7 +43,7 @@ public class Utf8ServletFilter extends BaseServletFilter implements Filter { @Override public void doFilter (final ServletRequest request, final ServletResponse response, final FilterChain chain) throws IOException, ServletException { // Trace message - this.getLogger().trace(MessageFormat.format("request={0},response={1},chain={2} - CALLED!", request, response, chain)); + this.getLogger().trace(MessageFormat.format("request={0},response={1},chain={2} - CALLED!", request, response, chain)); //NOI18N // Call super method chain.doFilter(request, response); @@ -53,6 +53,6 @@ public class Utf8ServletFilter extends BaseServletFilter implements Filter { response.setCharacterEncoding("UTF-8"); //NOI18N // Trace message - this.getLogger().trace("EXIT!"); + this.getLogger().trace("EXIT!"); //NOI18N } }