]> git.mxchange.org Git - jcontacts-lib.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sun, 3 Sep 2017 22:51:03 +0000 (00:51 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 3 Sep 2017 22:51:03 +0000 (00:51 +0200)
- deleteContactData() does now throw ContactNotFoundException, if the given
  contact was not found but method was invoked
- renamed getAllContacts() -> allContacts() as this is no pure getter
- renamed getEmailAddressList() -> allEmailAddresses() to follow naming
  convention: no getter and no need for "List" suffix, "all" prefix says it

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jcontacts/contact/AdminContactSessionBeanRemote.java
src/org/mxchange/jcontacts/contact/ContactSessionBeanRemote.java

index cf3b0ba3598e5db8b7f08a08ea54f4c5fbda5238..77d15ee47a12f93a80736e4eac8b52d11591b698 100644 (file)
@@ -19,6 +19,7 @@ package org.mxchange.jcontacts.contact;
 import java.io.Serializable;
 import javax.ejb.Remote;
 import org.mxchange.jcontacts.exceptions.ContactAlreadyAddedException;
+import org.mxchange.jcontacts.exceptions.ContactNotFoundException;
 
 /**
  * A remote interface for administrative contact purposes
@@ -32,8 +33,10 @@ public interface AdminContactSessionBeanRemote extends Serializable {
         * Deletes given contact instance
         * <p>
         * @param contact Contact instance being deleted
+        * <p>
+        * @throws ContactNotFoundException If the contact is not found
         */
-       void deleteContactData (final Contact contact);
+       void deleteContactData (final Contact contact) throws ContactNotFoundException;
 
        /**
         * Adds (persists) given contact instance, if not found. If successfull, the
index 78431f7a7e72772e5873ebed166a609dbd960c83..6b815e00abf6b2137bfee89c88b0a0617585f2a6 100644 (file)
@@ -80,14 +80,14 @@ public interface ContactSessionBeanRemote extends Serializable {
         * <p>
         * @return A list of call contacts
         */
-       List<Contact> getAllContacts ();
+       List<Contact> allContacts ();
 
        /**
         * Returns a list of all registered email addresses.
         * <p>
         * @return A list of all email addresses
         */
-       List<String> getEmailAddressList ();
+       List<String> allEmailAddresses ();
 
        /**
         * Returns a contact instance which has the given id number.