]> git.mxchange.org Git - jcontacts-core.git/commitdiff
Continued a bit:
authorRoland Häder <roland@mxchange.org>
Thu, 18 Aug 2016 14:47:52 +0000 (16:47 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 18 Aug 2016 14:47:52 +0000 (16:47 +0200)
- added new events for linking fax, land-line and mobile numbers with contacts

src/org/mxchange/jcontacts/events/fax/linked/AdminFaxNumberLinkedEvent.java [new file with mode: 0644]
src/org/mxchange/jcontacts/events/fax/linked/AdminLinkedFaxNumberEvent.java [new file with mode: 0644]
src/org/mxchange/jcontacts/events/fax/unlinked/AdminFaxNumberUnlinkedEvent.java
src/org/mxchange/jcontacts/events/fax/unlinked/AdminUnlinkedFaxNumberEvent.java
src/org/mxchange/jcontacts/events/landline/linked/AdminLandLineNumberLinkedEvent.java [new file with mode: 0644]
src/org/mxchange/jcontacts/events/landline/linked/AdminLinkedLandLineNumberEvent.java [new file with mode: 0644]
src/org/mxchange/jcontacts/events/landline/unlinked/AdminUnlinkedLandLineNumberEvent.java
src/org/mxchange/jcontacts/events/mobile/linked/AdminLinkedMobileNumberEvent.java [new file with mode: 0644]
src/org/mxchange/jcontacts/events/mobile/linked/AdminMobileNumberLinkedEvent.java [new file with mode: 0644]
src/org/mxchange/jcontacts/events/mobile/unlinked/AdminUnlinkedMobileNumberEvent.java

diff --git a/src/org/mxchange/jcontacts/events/fax/linked/AdminFaxNumberLinkedEvent.java b/src/org/mxchange/jcontacts/events/fax/linked/AdminFaxNumberLinkedEvent.java
new file mode 100644 (file)
index 0000000..c189b3a
--- /dev/null
@@ -0,0 +1,66 @@
+/*
+ * Copyright (C) 2016 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jcontacts.events.fax.linked;
+
+import org.mxchange.jcontacts.contact.Contact;
+import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
+
+/**
+ * An event when a fax number has been linked with a contact
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public class AdminFaxNumberLinkedEvent implements AdminLinkedFaxNumberEvent {
+
+       /**
+        * Serial number
+        */
+       private static final long serialVersionUID = 18_521_758_718_691_064L;
+
+       /**
+        * Contact instance
+        */
+       private final Contact contact;
+
+       /**
+        * Linked fax number
+        */
+       private final DialableFaxNumber linkedFaxNumber;
+
+       /**
+        * Constructor with unlinked fax number
+        * <p>
+        * @param contact Contact with linked fax instance
+        * @param linkedFaxNumber Unlinked fax number
+        */
+       public AdminFaxNumberLinkedEvent (final Contact contact, final DialableFaxNumber linkedFaxNumber) {
+               // Set it here
+               this.contact = contact;
+               this.linkedFaxNumber = linkedFaxNumber;
+       }
+
+       @Override
+       public Contact getContact () {
+               return this.contact;
+       }
+
+       @Override
+       public DialableFaxNumber getLinkedFaxNumber () {
+               return this.linkedFaxNumber;
+       }
+
+}
diff --git a/src/org/mxchange/jcontacts/events/fax/linked/AdminLinkedFaxNumberEvent.java b/src/org/mxchange/jcontacts/events/fax/linked/AdminLinkedFaxNumberEvent.java
new file mode 100644 (file)
index 0000000..07878e7
--- /dev/null
@@ -0,0 +1,44 @@
+/*
+ * Copyright (C) 2016 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jcontacts.events.fax.linked;
+
+import java.io.Serializable;
+import org.mxchange.jcontacts.contact.Contact;
+import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
+
+/**
+ * An interface for an event when a fax number has been linked with a contact
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public interface AdminLinkedFaxNumberEvent extends Serializable {
+
+       /**
+        * Getter for linked fax numbers
+        * <p>
+        * @return Linked fax numbers
+        */
+       DialableFaxNumber getLinkedFaxNumber ();
+
+       /**
+        * Getter for contact instance
+        * <p>
+        * @return Contact instance
+        */
+       Contact getContact ();
+
+}
index 327c96383012d7dced1a62a3b042c4eb14171059..2c0735ad53c22df0859259586026db3f2cb302ce 100644 (file)
@@ -20,7 +20,7 @@ import org.mxchange.jcontacts.contact.Contact;
 import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
 
 /**
- * An event when a cell phone number has been unlinked
+ * An event when a fax number has been unlinked
  * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
@@ -42,15 +42,15 @@ public class AdminFaxNumberUnlinkedEvent implements AdminUnlinkedFaxNumberEvent
        private final DialableFaxNumber unlinkedFaxNumber;
 
        /**
-        * Constructor with unlinked cell phone number
+        * Constructor with unlinked fax number
         * <p>
-        * @param contact Contact with linked cell phone instance
-        * @param unlinkedCellphoneNumber Unlinked cell phone number
+        * @param contact Contact with linked fax instance
+        * @param unlinkedFaxNumber Unlinked fax number
         */
-       public AdminFaxNumberUnlinkedEvent (final Contact contact, final DialableFaxNumber unlinkedCellphoneNumber) {
+       public AdminFaxNumberUnlinkedEvent (final Contact contact, final DialableFaxNumber unlinkedFaxNumber) {
                // Set it here
                this.contact = contact;
-               this.unlinkedFaxNumber = unlinkedCellphoneNumber;
+               this.unlinkedFaxNumber = unlinkedFaxNumber;
        }
 
        @Override
index e8c044f88abc3aafd2d6d8143c83d56f6707a048..69f1f9c17e4d091055e54619ee0d96985ffb91dd 100644 (file)
@@ -28,9 +28,9 @@ import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
 public interface AdminUnlinkedFaxNumberEvent extends Serializable {
 
        /**
-        * Getter for updated fax numbers
+        * Getter for unlinked fax numbers
         * <p>
-        * @return Updated fax numbers
+        * @return Unlinked fax numbers
         */
        DialableFaxNumber getUnlinkedFaxNumber ();
 
diff --git a/src/org/mxchange/jcontacts/events/landline/linked/AdminLandLineNumberLinkedEvent.java b/src/org/mxchange/jcontacts/events/landline/linked/AdminLandLineNumberLinkedEvent.java
new file mode 100644 (file)
index 0000000..b7c9a3b
--- /dev/null
@@ -0,0 +1,66 @@
+/*
+ * Copyright (C) 2016 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jcontacts.events.landline.linked;
+
+import org.mxchange.jcontacts.contact.Contact;
+import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
+
+/**
+ * An event when a land-line number has been linked with a contact
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public class AdminLandLineNumberLinkedEvent implements AdminLinkedLandLineNumberEvent {
+
+       /**
+        * Serial number
+        */
+       private static final long serialVersionUID = 18_521_758_718_691_065L;
+
+       /**
+        * Contact instance
+        */
+       private final Contact contact;
+
+       /**
+        * Linked land-line number
+        */
+       private final DialableLandLineNumber linkedLandLineNumber;
+
+       /**
+        * Constructor with unlinked land-line number
+        * <p>
+        * @param contact Contact with linked land-line instance
+        * @param linkedLandLineNumber Linked land-line number
+        */
+       public AdminLandLineNumberLinkedEvent (final Contact contact, final DialableLandLineNumber linkedLandLineNumber) {
+               // Set it here
+               this.contact = contact;
+               this.linkedLandLineNumber = linkedLandLineNumber;
+       }
+
+       @Override
+       public Contact getContact () {
+               return this.contact;
+       }
+
+       @Override
+       public DialableLandLineNumber getLinkedLandLineNumber () {
+               return this.linkedLandLineNumber;
+       }
+
+}
diff --git a/src/org/mxchange/jcontacts/events/landline/linked/AdminLinkedLandLineNumberEvent.java b/src/org/mxchange/jcontacts/events/landline/linked/AdminLinkedLandLineNumberEvent.java
new file mode 100644 (file)
index 0000000..6b09520
--- /dev/null
@@ -0,0 +1,45 @@
+/*
+ * Copyright (C) 2016 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jcontacts.events.landline.linked;
+
+import java.io.Serializable;
+import org.mxchange.jcontacts.contact.Contact;
+import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
+
+/**
+ * An interface for an event when a land-line number has been linked with a
+ * contact
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public interface AdminLinkedLandLineNumberEvent extends Serializable {
+
+       /**
+        * Getter for linked land-line numbers
+        * <p>
+        * @return Linked land-line numbers
+        */
+       DialableLandLineNumber getLinkedLandLineNumber ();
+
+       /**
+        * Getter for contact instance
+        * <p>
+        * @return Contact instance
+        */
+       Contact getContact ();
+
+}
index 002bfdd7452fcd0acab0aa4a95be12c061bd8db6..a0e383413f6de79dfd40ae4d87e06467c5d98195 100644 (file)
@@ -28,9 +28,9 @@ import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
 public interface AdminUnlinkedLandLineNumberEvent extends Serializable {
 
        /**
-        * Getter for updated land-line numbers
+        * Getter for unlinked land-line numbers
         * <p>
-        * @return Updated land-line numbers
+        * @return Unlinked land-line numbers
         */
        DialableLandLineNumber getUnlinkedLandLineNumber ();
 
diff --git a/src/org/mxchange/jcontacts/events/mobile/linked/AdminLinkedMobileNumberEvent.java b/src/org/mxchange/jcontacts/events/mobile/linked/AdminLinkedMobileNumberEvent.java
new file mode 100644 (file)
index 0000000..23bed04
--- /dev/null
@@ -0,0 +1,44 @@
+/*
+ * Copyright (C) 2016 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jcontacts.events.mobile.linked;
+
+import java.io.Serializable;
+import org.mxchange.jcontacts.contact.Contact;
+import org.mxchange.jphone.phonenumbers.mobile.DialableMobileNumber;
+
+/**
+ * An interface for an event when a mobile number has been linked with a contact
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public interface AdminLinkedMobileNumberEvent extends Serializable {
+
+       /**
+        * Getter for linked mobile numbers
+        * <p>
+        * @return Linked mobile numbers
+        */
+       DialableMobileNumber getLinkedMobileNumber ();
+
+       /**
+        * Getter for contact instance
+        * <p>
+        * @return Contact instance
+        */
+       Contact getContact ();
+
+}
diff --git a/src/org/mxchange/jcontacts/events/mobile/linked/AdminMobileNumberLinkedEvent.java b/src/org/mxchange/jcontacts/events/mobile/linked/AdminMobileNumberLinkedEvent.java
new file mode 100644 (file)
index 0000000..c9501af
--- /dev/null
@@ -0,0 +1,66 @@
+/*
+ * Copyright (C) 2016 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jcontacts.events.mobile.linked;
+
+import org.mxchange.jcontacts.contact.Contact;
+import org.mxchange.jphone.phonenumbers.mobile.DialableMobileNumber;
+
+/**
+ * An event when a mobile number has been linked with a contact
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public class AdminMobileNumberLinkedEvent implements AdminLinkedMobileNumberEvent {
+
+       /**
+        * Serial number
+        */
+       private static final long serialVersionUID = 18_521_758_718_691_064L;
+
+       /**
+        * Contact instance
+        */
+       private final Contact contact;
+
+       /**
+        * Unlinked mobile number
+        */
+       private final DialableMobileNumber linkedMobileNumber;
+
+       /**
+        * Constructor with unlinked mobile number
+        * <p>
+        * @param contact Contact with linked mobile instance
+        * @param linkedMobileNumber Linked mobile number
+        */
+       public AdminMobileNumberLinkedEvent (final Contact contact, final DialableMobileNumber linkedMobileNumber) {
+               // Set it here
+               this.contact = contact;
+               this.linkedMobileNumber = linkedMobileNumber;
+       }
+
+       @Override
+       public Contact getContact () {
+               return this.contact;
+       }
+
+       @Override
+       public DialableMobileNumber getLinkedMobileNumber () {
+               return this.linkedMobileNumber;
+       }
+
+}
index a84d7029b61bbaae8b1b9bcb8c89f8fcae2a6e48..af4aaecedb18cfc2dd9150fc0043e69ead3b97f3 100644 (file)
@@ -28,9 +28,9 @@ import org.mxchange.jphone.phonenumbers.mobile.DialableMobileNumber;
 public interface AdminUnlinkedMobileNumberEvent extends Serializable {
 
        /**
-        * Getter for updated mobile numbers
+        * Getter for unlinked mobile numbers
         * <p>
-        * @return Updated mobile numbers
+        * @return Unlinked mobile numbers
         */
        DialableMobileNumber getUnlinkedMobileNumber ();