]> git.mxchange.org Git - pizzaservice-swing.git/blobdiff - src/org/mxchange/pizzaapplication/application/PizzaApplication.java
Cleanup through inspection + updated jar(s)
[pizzaservice-swing.git] / src / org / mxchange / pizzaapplication / application / PizzaApplication.java
index f7b2262d04b2761087f3e9c422a95e92862e308e..47f9bb650d015b45978a5469c459e50c9ef8a18a 100644 (file)
@@ -36,63 +36,65 @@ public interface PizzaApplication extends Application {
         * Adds given category data from request to database
         * <p>
         * @param category Category instance
+        * <p>
         * @throws
         * org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException If
         * the category's title has been used
         */
-       public void doAdminAddCategory (final Category category) throws CategoryTitleAlreadyUsedException;
+       void doAdminAddCategory (final Category category) throws CategoryTitleAlreadyUsedException;
 
        /**
         * Adds given product data from request to database
         * <p>
         * @param product Product instance
+        * <p>
         * @throws
         * org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the
         * * product's title has been used
         */
-       public void doAdminAddProduct (final Product product) throws ProductTitleAlreadyUsedException;
+       void doAdminAddProduct (final Product product) throws ProductTitleAlreadyUsedException;
 
        /**
         * Some "getter" for a linked list of all categories
         * <p>
         * @return All categories
         */
-       public Deque<Category> getAllCategories ();
+       Deque<Category> getAllCategories ();
 
        /**
         * Some "getter" for a an array of all categories
         * <p>
         * @return All categories
         */
-       public Iterator<Category> getAllCategoriesIterator ();
+       Iterator<Category> getAllCategoriesIterator ();
 
        /**
         * Some "getter" for a linked list of all products
         * <p>
         * @return All products
         */
-       public Deque<Product> getAllProducts ();
+       Deque<Product> getAllProducts ();
 
        /**
         * Some "getter" for a an array of all products
         * <p>
         * @return All products
         */
-       public Iterator<Product> getAllProductsIterator ();
+       Iterator<Product> getAllProductsIterator ();
 
        /**
         * Some "getter" for a linked list of only available products
         * <p>
         * @return Only available products
         */
-       public Deque<Product> getAvailableProducts ();
+       Deque<Product> getAvailableProducts ();
 
        /**
         * Some "getter" for a an array of only available products
         * <p>
         * @return Only available products
         */
-       public Iterator<Product> getAvailableProductsIterator ();
+       Iterator<Product> getAvailableProductsIterator ();
 
        /**
         * Initializes this instance with given ServletContext
@@ -100,5 +102,5 @@ public interface PizzaApplication extends Application {
         * @throws java.sql.SQLException If an SQL error occurs
         * @throws java.io.IOException If an IO error occurs
         */
-       public void init () throws SQLException, IOException;
+       void init () throws SQLException, IOException;
 }