From: Roland Häder Date: Tue, 14 Apr 2020 19:47:48 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5c83537b1ba559d6e6d97315bd7184e37e6a9a1c;p=jcountry-lib.git Continued: - 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 --- diff --git a/src/org/mxchange/jcountry/model/data/CountrySingletonBeanRemote.java b/src/org/mxchange/jcountry/model/data/CountrySingletonBeanRemote.java index 1af52c3..dfbaf5f 100644 --- a/src/org/mxchange/jcountry/model/data/CountrySingletonBeanRemote.java +++ b/src/org/mxchange/jcountry/model/data/CountrySingletonBeanRemote.java @@ -33,6 +33,6 @@ public interface CountrySingletonBeanRemote extends Serializable { *

* @return A list of all countries */ - List allCountries (); + List fetchAllCountries (); }