]> git.mxchange.org Git - jcontacts-business-lib.git/commitdiff
Continued a bit:
authorRoland Häder <roland@mxchange.org>
Thu, 18 Aug 2016 13:13:16 +0000 (15:13 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 18 Aug 2016 13:13:16 +0000 (15:13 +0200)
- added business methods for linking new/existing fax, land-line and mobile numbers

src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java

index fbfd9e918bf4f057a22e6704962ce8a548dd744a..fb7d8fedc7274fa63ba07c0a116fbdf8abb8efac 100644 (file)
@@ -35,6 +35,72 @@ import org.mxchange.jphone.phonenumbers.mobile.DialableMobileNumber;
 @Remote
 public interface AdminContactsPhoneSessionBeanRemote extends Serializable {
 
+       /**
+        * Links existing fax number with given contact instance. The id number
+        * should be set.
+        * <p>
+        * @param contact Contact to link to
+        * @param faxNumber Fax number to link
+        * <p>
+        * @return Updated contact
+        */
+       Contact linkExistingFaxNumberWithContact (final Contact contact, final DialableFaxNumber faxNumber);
+
+       /**
+        * Links existing land-line number with given contact instance. The id
+        * number should be set.
+        * <p>
+        * @param contact Contact to link to
+        * @param landLineNumber Land-line number to link
+        * <p>
+        * @return Updated contact
+        */
+       Contact linkExistingLandLineNumberWithContact (final Contact contact, final DialableLandLineNumber landLineNumber);
+
+       /**
+        * Links existing mobile number with given contact instance. The id number
+        * should be set.
+        * <p>
+        * @param contact Contact to link to
+        * @param mobileNumber Mobile number to link
+        * <p>
+        * @return Updated contact
+        */
+       Contact linkExistingMobileNumberWithContact (final Contact contact, final DialableMobileNumber mobileNumber);
+
+       /**
+        * Links new fax number with given contact instance. The id number should
+        * NOT be set.
+        * <p>
+        * @param contact Contact to link to
+        * @param faxNumber Fax number to link
+        * <p>
+        * @return Updated contact
+        */
+       Contact linkNewFaxNumberWithContact (final Contact contact, final DialableFaxNumber faxNumber);
+
+       /**
+        * Links new land-line number with given contact instance. The id number
+        * should NOT be set.
+        * <p>
+        * @param contact Contact to link to
+        * @param landLineNumber Land-line number to link
+        * <p>
+        * @return Updated contact
+        */
+       Contact linkNewLandLineNumberWithContact (final Contact contact, final DialableLandLineNumber landLineNumber);
+
+       /**
+        * Links new mobile number with given contact instance. The id number should
+        * NOT be set.
+        * <p>
+        * @param contact Contact to link to
+        * @param mobileNumber Mobile number to link
+        * <p>
+        * @return Updated contact
+        */
+       Contact linkNewMobileNumberWithContact (final Contact contact, final DialableMobileNumber mobileNumber);
+
        /**
         * Unlinks fax data from given contact and returns the updated (detached?)
         * version.