]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Controllers should always have "Controller" as suffix in name
authorRoland Häder <roland@mxchange.org>
Mon, 18 Apr 2016 15:14:52 +0000 (17:14 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 18 Apr 2016 18:46:30 +0000 (20:46 +0200)
src/java/org/mxchange/pizzaapplication/beans/gender/PizzaGenderWebApplicationBean.java
src/java/org/mxchange/pizzaapplication/beans/gender/PizzaGenderWebApplicationController.java

index 914355776eff9582e5e9e29be1c51b26cbe8aeb0..bf0a682c398c956ccec19d010b2982095c864da9 100644 (file)
@@ -57,4 +57,5 @@ public class PizzaGenderWebApplicationBean implements PizzaGenderWebApplicationC
                // Return it
                return genders;
        }
+
 }
index 9e0b9d8227b73904ea0ffa715eb5d9d58cdbe795..093da5a7881c68b6a95889c0a24340369238a0d9 100644 (file)
@@ -40,4 +40,5 @@ public interface PizzaGenderWebApplicationController extends Serializable {
         * @return All genders as array
         */
        List<Gender> getSelectableGenders ();
+
 }