]> git.mxchange.org Git - pizzaservice-war.git/blob - src/java/org/mxchange/pizzaapplication/beans/controller/PizzaWebBean.java
cleanup of old exceptions from TDGP days.
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / controller / PizzaWebBean.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.controller;
18
19 import java.rmi.RemoteException;
20 import java.util.Deque;
21 import java.util.Iterator;
22 import org.mxchange.jcoreee.beans.FrameworkBean;
23 import org.mxchange.jshopcore.model.category.Category;
24 import org.mxchange.jshopcore.model.product.Product;
25
26 /**
27  *
28  * @author Roland Haeder
29  */
30 public interface PizzaWebBean extends FrameworkBean {
31
32         /**
33          * Some "getter" for an iterator of only available products
34          * 
35          * @return Only available products
36          * @throws java.rmi.RemoteException If anything went wrong
37          */
38         public Iterator<Product> getAvailableProductsIterator () throws RemoteException;
39
40         /**
41          * Some "getter" for an iterator of all products
42          *
43          * @return All products
44          * @throws java.rmi.RemoteException If anything went wrong
45          */
46         public Iterator<Product> getAllProductsIterator () throws RemoteException;
47
48         /**
49          * Some "getter" for an iterator of all categories
50          *
51          * @return All categories
52          * @throws java.rmi.RemoteException If anything went wrong
53          */
54         public Iterator<Category> getAllCategoriesIterator () throws RemoteException;
55
56         /**
57          * Some "getter" for a linked list of only available products
58          * 
59          * @return Only available products
60          * @throws java.rmi.RemoteException If anything went wrong
61          */
62         public Deque<Product> getAvailableProducts () throws RemoteException;
63
64         /**
65          * Some "getter" for a linked list of all products
66          *
67          * @return All products
68          * @throws java.rmi.RemoteException If anything went wrong
69          */
70         public Deque<Product> getAllProducts () throws RemoteException;
71
72         /**
73          * Some "getter" for a linked list of all categories
74          *
75          * @return All categories
76          * @throws java.rmi.RemoteException If anything went wrong
77          */
78         public Deque<Category> getAllCategories () throws RemoteException;
79
80         /**
81          * Adds given category data from request to database
82          *
83          * @param category Category instance
84          * @throws java.rmi.RemoteException If something unexpected happened
85          */
86         public void doAdminAddCategory (final Category category) throws RemoteException;
87
88         /**
89          * Adds given product data from request to database
90          *
91          * @param product Product instance
92          * @throws java.rmi.RemoteException If something unexpected happened
93          */
94         public void doAdminAddProduct (final Product product) throws RemoteException;
95 }