]> git.mxchange.org Git - pizzaservice-war.git/blob - src/java/org/mxchange/pizzaapplication/beans/country/CountryWebApplicationController.java
Renamed beans to their proper scope + renamed bean mappedName to always end with...
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / country / CountryWebApplicationController.java
1 package org.mxchange.pizzaapplication.beans.country;
2
3 /*
4  * Copyright (C) 2015 Roland Haeder
5  *
6  * This program is free software: you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License as published by the Free Software
8  * Foundation, either version 3 of the License, or (at your option) any later
9  * version.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License along with
17  * this program. If not, see <http://www.gnu.org/licenses/>.
18  */
19 import java.io.Serializable;
20 import java.util.List;
21 import org.mxchange.jcountry.data.Country;
22
23 /**
24  * An interface for country beans
25  * <p>
26  * @author Roland Haeder<roland@mxchange.org>
27  */
28 public interface CountryWebApplicationController extends Serializable {
29
30         /**
31          * A list of all countries
32          * <p>
33          * @return All countries
34          */
35         List<Country> allCountries ();
36 }