]> git.mxchange.org Git - jcontacts-lib.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Tue, 14 Apr 2020 19:49:43 +0000 (21:49 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 14 Apr 2020 19:49:43 +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/jcontacts/model/contact/ContactSessionBeanRemote.java

index 650c8c2c04bbacdbcd146199858e57dfe07ff6fc..6fdc026c05f9726da1bbfb86f8ecd96738fe6b6c 100644 (file)
@@ -28,25 +28,16 @@ import javax.ejb.Remote;
 @Remote
 public interface ContactSessionBeanRemote extends Serializable {
 
-       /**
-        * Checks if the given contact can be found by checking the whole list.
-        * <p>
-        * @param contact Contact instance to check
-        * <p>
-        * @return Whether the found instance or null
-        */
-       Contact lookupContact (final Contact contact);
-
        /**
         * Updates given contact data
         * <p>
-        * @param contact Contact data to update
-        * @param isMobileUnlinked Whether a mobile entry has been unlinked in
-        * contact instance
+        * @param contact            Contact data to update
+        * @param isMobileUnlinked   Whether a mobile entry has been unlinked in
+        *                           contact instance
         * @param isLandlineUnlinked Whether a land-line entry has been unlinked in
-        * contact instance
-        * @param isFaxUnlinked Whether a fax entry has been unlinked in contact
-        * instance
+        *                           contact instance
+        * @param isFaxUnlinked      Whether a fax entry has been unlinked in
+        *                           contact instance
         * <p>
         * @return Updated contact instance
         */
@@ -68,6 +59,6 @@ public interface ContactSessionBeanRemote extends Serializable {
         * <p>
         * @return A list of call contacts
         */
-       List<Contact> allContacts ();
+       List<Contact> fetchAllContacts ();
 
 }