From 5c83537b1ba559d6e6d97315bd7184e37e6a9a1c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 14 Apr 2020 21:47:48 +0200 Subject: [PATCH] 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()" MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../jcountry/model/data/CountrySingletonBeanRemote.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 (); } -- 2.39.5