]> git.mxchange.org Git - pizzaservice-swing.git/blob - src/org/mxchange/pizzaapplication/application/PizzaApplication.java
Merges from rewrites/jpa
[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          * <p>
38          * @param category Category instance
39          * @throws
40          * org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException If
41          * the category's title has been used
42          */
43         public void doAdminAddCategory (final Category category) throws CategoryTitleAlreadyUsedException;
44
45         /**
46          * Adds given product data from request to database
47          * <p>
48          * @param product Product instance
49          * @throws
50          * org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the
51          * * product's title has been used
52          */
53         public void doAdminAddProduct (final Product product) throws ProductTitleAlreadyUsedException;
54
55         /**
56          * Some "getter" for a linked list of all categories
57          * <p>
58          * @return All categories
59          */
60         public Deque<Category> getAllCategories ();
61
62         /**
63          * Some "getter" for a an array of all categories
64          * <p>
65          * @return All categories
66          */
67         public Iterator<Category> getAllCategoriesIterator ();
68
69         /**
70          * Some "getter" for a linked list of all products
71          * <p>
72          * @return All products
73          */
74         public Deque<Product> getAllProducts ();
75
76         /**
77          * Some "getter" for a an array of all products
78          * <p>
79          * @return All products
80          */
81         public Iterator<Product> getAllProductsIterator ();
82
83         /**
84          * Some "getter" for a linked list of only available products
85          * <p>
86          * @return Only available products
87          */
88         public Deque<Product> getAvailableProducts ();
89
90         /**
91          * Some "getter" for a an array of only available products
92          * <p>
93          * @return Only available products
94          */
95         public Iterator<Product> getAvailableProductsIterator ();
96
97         /**
98          * Initializes this instance with given ServletContext
99          * <p>
100          * @throws java.sql.SQLException If an SQL error occurs
101          * @throws java.io.IOException If an IO error occurs
102          */
103         public void init () throws SQLException, IOException;
104 }