]> git.mxchange.org Git - pizzaservice-war.git/blobdiff - src/java/org/mxchange/pizzaapplication/beans/category/PizzaAdminCategoryWebRequestController.java
Better check the parameter on missing (but important) stuff
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / category / PizzaAdminCategoryWebRequestController.java
index 2e130ba0c25ba13fe9f04f6dcc2cdd720c28fe0b..cfa4c76c7fc3f23a35d9bdb4dfe7bdbb00ed63ed 100644 (file)
@@ -16,6 +16,7 @@
  */
 package org.mxchange.pizzaapplication.beans.category;
 
+import java.io.Serializable;
 import javax.faces.view.facelets.FaceletException;
 import org.mxchange.jshopcore.model.category.Category;
 
@@ -24,7 +25,7 @@ import org.mxchange.jshopcore.model.category.Category;
  * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
-public interface PizzaAdminCategoryWebRequestController {
+public interface PizzaAdminCategoryWebRequestController extends Serializable {
 
        /**
         * Adds given category data from request to database
@@ -61,4 +62,5 @@ public interface PizzaAdminCategoryWebRequestController {
         * @param categoryTitle the title to set
         */
        void setCategoryTitle (final String categoryTitle);
+
 }