]> git.mxchange.org Git - pizzaservice-swing.git/blob - src/org/mxchange/pizzaapplication/application/PizzaApplication.java
Continued:
[pizzaservice-swing.git] / src / org / mxchange / pizzaapplication / application / PizzaApplication.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.application;
18
19 import java.io.IOException;
20 import java.sql.SQLException;
21 import java.util.Deque;
22 import java.util.Iterator;
23 import org.mxchange.jcore.application.Application;
24 import org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException;
25 import org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException;
26 import org.mxchange.jshopcore.model.category.Category;
27 import org.mxchange.jshopcore.model.product.Product;
28
29 /**
30  *
31  * @author Roland Haeder<roland@mxchange.org>
32  */
33 public interface PizzaApplication extends Application {
34
35         /**
36          * Adds given category data from request to database
37          *
38          * @param category Category instance
39          * @throws org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException If the category's title has been used
40          */
41         public void doAdminAddCategory (final Category category) throws CategoryTitleAlreadyUsedException;
42
43         /**
44          * Adds given product data from request to database
45          *
46          * @param product Product instance
47          * @throws org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the     * product's title has been used
48          */
49         public void doAdminAddProduct (final Product product) throws ProductTitleAlreadyUsedException;
50
51         /**
52          * Some "getter" for a linked list of all categories
53          *
54          * @return All categories
55          */
56         public Deque<Category> getAllCategories ();
57
58         /**
59          * Some "getter" for a an array of all categories
60          *
61          * @return All categories
62          */
63         public Iterator<Category> getAllCategoriesIterator ();
64
65         /**
66          * Some "getter" for a linked list of all products
67          *
68          * @return All products
69          */
70         public Deque<Product> getAllProducts ();
71
72         /**
73          * Some "getter" for a an array of all products
74          *
75          * @return All products
76          */
77         public Iterator<Product> getAllProductsIterator ();
78
79         /**
80          * Some "getter" for a linked list of only available products
81          *
82          * @return Only available products
83          */
84         public Deque<Product> getAvailableProducts ();
85
86         /**
87          * Some "getter" for a an array of only available products
88          *
89          * @return Only available products
90          */
91         public Iterator<Product> getAvailableProductsIterator ();
92
93         /**
94          * Initializes this instance with given ServletContext
95          *
96          * @throws java.sql.SQLException If an SQL error occurs
97          * @throws java.io.IOException If an IO error occurs
98          */
99         public void init () throws SQLException, IOException;
100 }