]> git.mxchange.org Git - pizzaservice-war.git/blob - 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
1 /*
2  * Copyright (C) 2016 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Affero General Public License as
6  * published by the Free Software Foundation, either version 3 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU Affero General Public License for more details.
13  *
14  * You should have received a copy of the GNU Affero General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.pizzaapplication.beans.category;
18
19 import java.io.Serializable;
20 import javax.faces.view.facelets.FaceletException;
21 import org.mxchange.jshopcore.model.category.Category;
22
23 /**
24  * An interface for product controllers for "ADMIN" role
25  * <p>
26  * @author Roland Haeder<roland@mxchange.org>
27  */
28 public interface PizzaAdminCategoryWebRequestController extends Serializable {
29
30         /**
31          * Adds given category data from request to database
32          * <p>
33          * @throws javax.faces.view.facelets.FaceletException If something
34          * unexpected happened
35          */
36         void addCategory () throws FaceletException;
37
38         /**
39          * Getter for parent id
40          * <p>
41          * @return Parent id
42          */
43         Category getParentCategory ();
44
45         /**
46          * Setter for parent category
47          * <p>
48          * @param parentCategory Parent category to set
49          */
50         void setParentCategory (final Category parentCategory);
51
52         /**
53          * Getter for category title
54          * <p>
55          * @return the title
56          */
57         String getCategoryTitle ();
58
59         /**
60          * Setter for category title
61          * <p>
62          * @param categoryTitle the title to set
63          */
64         void setCategoryTitle (final String categoryTitle);
65
66 }