]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Ignored for internationalization
authorRoland Haeder <roland@mxchange.org>
Mon, 31 Aug 2015 09:54:08 +0000 (11:54 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 31 Aug 2015 09:54:08 +0000 (11:54 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java

index a94d72c151c629192ffc2c7e39f820010d9a95d4..337825b5ff9d0ae53a49748ea5999fdca9784d91 100644 (file)
@@ -62,7 +62,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
         */
        public PizzaServiceApplication () {
                // Trace message
-               this.getLogger().trace("CALLED!");
+               this.getLogger().trace("CALLED!"); //NOI18N
        }
 
        @Override
@@ -73,7 +73,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                // context should not be null
                if (null == context) {
                        // Abort here
-                       throw new NullPointerException("context is null");
+                       throw new NullPointerException("context is null"); //NOI18N
                }
 
                // Is the bundle initialized?
@@ -297,7 +297,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                // categoryFrontend must be set
                if (null == this.productFrontend) {
                        // Abort here
-                       throw new NullPointerException("productFrontend is null");
+                       throw new NullPointerException("productFrontend is null"); //NOI18N
                }
 
                try {
@@ -311,12 +311,12 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
        @Override
        public Iterator<Product> getAllProducts () throws ServletException {
                // Trace message
-               this.getLogger().trace("CALLED!");
+               this.getLogger().trace("CALLED!"); //NOI18N
 
                // categoryFrontend must be set
                if (null == this.productFrontend) {
                        // Abort here
-                       throw new NullPointerException("productFrontend is null");
+                       throw new NullPointerException("productFrontend is null"); //NOI18N
                }
 
                try {
@@ -330,12 +330,12 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
        @Override
        public Iterator<Category> getAllCategories () throws ServletException {
                // Trace message
-               this.getLogger().trace("CALLED!");
+               this.getLogger().trace("CALLED!"); //NOI18N
 
                // categoryFrontend must be set
                if (null == this.categoryFrontend) {
                        // Abort here
-                       throw new NullPointerException("categoryFrontend is null");
+                       throw new NullPointerException("categoryFrontend is null"); //NOI18N
                }
 
                try {
@@ -348,7 +348,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
 
        @Deprecated
        private boolean isProductChoosen (final Product product, final HttpServletRequest request, final HttpSession session) {
-               throw new UnsupportedOperationException("This method is deprecated and shall not be called");
+               throw new UnsupportedOperationException("This method is deprecated and shall not be called"); //NOI18N
        }
 
        @Override
@@ -444,7 +444,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                // categoryFrontend must be set
                if (null == this.categoryFrontend) {
                        // Abort here
-                       throw new NullPointerException("categoryFrontend is null");
+                       throw new NullPointerException("categoryFrontend is null"); //NOI18N
                }
 
                // Delegate to frontend
@@ -460,7 +460,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                // categoryFrontend must be set
                if (null == this.productFrontend) {
                        // Abort here
-                       throw new NullPointerException("productFrontend is null");
+                       throw new NullPointerException("productFrontend is null"); //NOI18N
                }
 
                // Delegate to frontend
@@ -867,15 +867,15 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
        @Override
        public Product getProduct (final AddableBasketItem item) throws ServletException {
                // Trace message
-               this.getLogger().trace("item=" + item + " - CALLED!");
+               this.getLogger().trace("item=" + item + " - CALLED!"); //NOI18N
 
                // item should not be null
                if (null == item) {
                        // Abort here
-                       throw new NullPointerException("item is null");
+                       throw new NullPointerException("item is null"); //NOI18N
                } else if (null == this.productFrontend) {
                        // Abort here
-                       throw new NullPointerException("productFrontend is null");
+                       throw new NullPointerException("productFrontend is null"); //NOI18N
                }
 
                // Init product instance
@@ -890,7 +890,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                }
 
                // Trace message
-               this.getLogger().trace("product=" + product + " - EXIT!");
+               this.getLogger().trace("product=" + product + " - EXIT!"); //NOI18N
 
                // Return it
                return product;