]> git.mxchange.org Git - pizzaservice-war.git/blob - src/java/org/mxchange/pizzaapplication/beans/product/AdminProductWebRequestController.java
Renamed beans to their proper scope + renamed bean mappedName to always end with...
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / product / AdminProductWebRequestController.java
1 /*
2  * Copyright (C) 2015 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (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 General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.pizzaapplication.beans.product;
18
19 import java.util.List;
20 import javax.faces.view.facelets.FaceletException;
21 import org.mxchange.jshopcore.model.category.Category;
22 import org.mxchange.jshopcore.model.product.Product;
23
24 /**
25  * An interface for product controllers for "ADMIN" role
26  * <p>
27  * @author Roland Haeder<roland@mxchange.org>
28  */
29 public interface AdminProductWebRequestController {
30
31         /**
32          * Adds given product data from request to database
33          * <p>
34          * @throws javax.faces.view.facelets.FaceletException If something
35          * unexpected happened
36          */
37         void addProduct () throws FaceletException;
38
39         /**
40          * Some "getter" for a linked list of all products
41          * <p>
42          * @return All products
43          * <p>
44          * @throws javax.faces.view.facelets.FaceletException If anything went wrong
45          */
46         List<Product> getAllProducts () throws FaceletException;
47
48         /**
49          * Getter for product's available property
50          * <p>
51          * @return Product's available property
52          */
53         Boolean getProductAvailability ();
54
55         /**
56          * Setter for product's available property
57          * <p>
58          * @param available Product's available property
59          */
60         void setProductAvailability (final Boolean available);
61
62         /**
63          * Getter for product's category
64          * <p>
65          * @return Product's category
66          */
67         Category getProductCategory ();
68
69         /**
70          * Setter for product's category instance
71          * <p>
72          * @param productCategory Product's category instance
73          */
74         void setProductCategory (final Category productCategory);
75
76         /**
77          * Getter for product's price property
78          * <p>
79          * @return Product's price property
80          */
81         Float getProductPrice ();
82
83         /**
84          * Setter for product's price property
85          * <p>
86          * @param price Product's price property
87          */
88         void setProductPrice (final Float price);
89
90         /**
91          * Getter for product's title property
92          * <p>
93          * @return Product's title
94          */
95         String getProductTitle ();
96
97         /**
98          * Setter for product's title property
99          * <p>
100          * @param title Product's title
101          */
102         void setProductTitle (final String title);
103 }