]> git.mxchange.org Git - jcontacts-business-lib.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Tue, 14 Apr 2020 19:49:45 +0000 (21:49 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 14 Apr 2020 19:49:45 +0000 (21:49 +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/jcontactsbusiness/model/basicdata/BasicCompanyDataSessionBeanRemote.java
src/org/mxchange/jcontactsbusiness/model/branchoffice/BranchOfficeSessionBeanRemote.java
src/org/mxchange/jcontactsbusiness/model/department/DepartmentSessionBeanRemote.java
src/org/mxchange/jcontactsbusiness/model/employee/EmployeeSessionBeanRemote.java
src/org/mxchange/jcontactsbusiness/model/headquarter/HeadquarterSessionBeanRemote.java
src/org/mxchange/jcontactsbusiness/model/opening_time/OpeningTimeSessionBeanRemote.java

index a7e4635f9bb889eaf49bb3a8deceb0a90508318e..6e9f99ab35ad73dc7a2659ae964c3fea2b4eb34c 100644 (file)
@@ -34,6 +34,6 @@ public interface BasicCompanyDataSessionBeanRemote extends Serializable {
         * <p>
         * @return A list with all business contacts
         */
-       List<BasicData> allBusinessBasicData ();
+       List<BasicData> fetchAllBusinessBasicData ();
 
 }
index c3885381133986d37b0a111ba383e813fe9c54d7..0b6a0f91886b0e754da0e28471c6eca96bc2eaec 100644 (file)
@@ -33,6 +33,6 @@ public interface BranchOfficeSessionBeanRemote extends Serializable {
         * <p>
         * @return All branch offices
         */
-       List<BranchOffice> allBranchOffices ();
+       List<BranchOffice> fetchAllBranchOffices ();
 
 }
index 32d02e0ef2371259465b68250228ac379f9bdd31..9115a372faf2e46242c48530e7e3fbb3a121a862 100644 (file)
@@ -34,6 +34,6 @@ public interface DepartmentSessionBeanRemote extends Serializable {
         * <p>
         * @return A list with all company departments
         */
-       List<Department> allDepartments ();
+       List<Department> fetchAllDepartments ();
 
 }
index f8b563b2b239480fb42033857926197ac00c0b80..093936383ce7fb2eb49ae557c7a738a906559af9 100644 (file)
@@ -33,6 +33,6 @@ public interface EmployeeSessionBeanRemote extends Serializable {
         * <p>
         * @return A list of all company employees
         */
-       List<Employable> allEmployees ();
+       List<Employable> fetchAllEmployees ();
 
 }
index b7213c8798b76311b3f44af1e61ef146c9af8fb1..95172d874d888d495010c1479c3a8b270e14ac60 100644 (file)
@@ -34,6 +34,6 @@ public interface HeadquarterSessionBeanRemote extends Serializable {
         * <p>
         * @return A list of all headquarters
         */
-       List<Headquarter> allHeadquarters ();
+       List<Headquarter> fetchAllHeadquarters ();
 
 }
index ddba3529b8281b28a79220b811b06e48e4491712..b448aa5f6cdbbeefc1979edb7fdd9185aea947fe 100644 (file)
@@ -34,6 +34,6 @@ public interface OpeningTimeSessionBeanRemote extends Serializable {
         * <p>
         * @return A list with all opening times
         */
-       List<OpeningTime> allOpeningTimes ();
+       List<OpeningTime> fetchAllOpeningTimes ();
 
 }