]> git.mxchange.org Git - jcountry-lib.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Tue, 14 Apr 2020 19:47:48 +0000 (21:47 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 14 Apr 2020 19:47:48 +0000 (21:47 +0200)
- renamed allSomeEntities() to fetchAllSomeEntities()
- maybe removed deprecated or not recommended business methods
- if a method fetches e.g. a limited list of "Bar" entities, limited by an
  entity "Foo" it must be named "fetchAllBarsByFoo()"

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jcountry/model/data/CountrySingletonBeanRemote.java

index 1af52c304263d165de49582027e9bbc5ac0407d0..dfbaf5f7a9f2ae07443137b247b7e6e142c31b19 100644 (file)
@@ -33,6 +33,6 @@ public interface CountrySingletonBeanRemote extends Serializable {
         * <p>
         * @return A list of all countries
         */
-       List<Country> allCountries ();
+       List<Country> fetchAllCountries ();
 
 }