]> git.mxchange.org Git - jcontacts-core.git/commitdiff
Continued a bit:
authorRoland Häder <roland@mxchange.org>
Wed, 17 Aug 2016 13:33:53 +0000 (15:33 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 17 Aug 2016 13:38:12 +0000 (15:38 +0200)
- added new events for fax/land-line number unlinked from contact
- renamed cellphone -> mobile
- tpzo fixed

src/org/mxchange/jcontacts/events/fax/unlinked/AdminFaxNumberUnlinkedEvent.java [new file with mode: 0644]
src/org/mxchange/jcontacts/events/fax/unlinked/AdminUnlinkedFaxNumberEvent.java [new file with mode: 0644]
src/org/mxchange/jcontacts/events/landline/unlinked/AdminLandLineNumberUnlinkedEvent.java [new file with mode: 0644]
src/org/mxchange/jcontacts/events/landline/unlinked/AdminUnlinkedLandLineNumberEvent.java [new file with mode: 0644]
src/org/mxchange/jcontacts/events/mobile/unlinked/AdminMobileNumberUnlinkedEvent.java
src/org/mxchange/jcontacts/events/mobile/unlinked/AdminUnlinkedMobileNumberEvent.java

diff --git a/src/org/mxchange/jcontacts/events/fax/unlinked/AdminFaxNumberUnlinkedEvent.java b/src/org/mxchange/jcontacts/events/fax/unlinked/AdminFaxNumberUnlinkedEvent.java
new file mode 100644 (file)
index 0000000..327c963
--- /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.unlinked;
+
+import org.mxchange.jcontacts.contact.Contact;
+import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
+
+/**
+ * An event when a cell phone number has been unlinked
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public class AdminFaxNumberUnlinkedEvent implements AdminUnlinkedFaxNumberEvent {
+
+       /**
+        * Serial number
+        */
+       private static final long serialVersionUID = 18_521_758_718_691_064L;
+
+       /**
+        * Contact instance
+        */
+       private final Contact contact;
+
+       /**
+        * Unlinked fax number
+        */
+       private final DialableFaxNumber unlinkedFaxNumber;
+
+       /**
+        * Constructor with unlinked cell phone number
+        * <p>
+        * @param contact Contact with linked cell phone instance
+        * @param unlinkedCellphoneNumber Unlinked cell phone number
+        */
+       public AdminFaxNumberUnlinkedEvent (final Contact contact, final DialableFaxNumber unlinkedCellphoneNumber) {
+               // Set it here
+               this.contact = contact;
+               this.unlinkedFaxNumber = unlinkedCellphoneNumber;
+       }
+
+       @Override
+       public Contact getContact () {
+               return this.contact;
+       }
+
+       @Override
+       public DialableFaxNumber getUnlinkedFaxNumber () {
+               return this.unlinkedFaxNumber;
+       }
+
+}
diff --git a/src/org/mxchange/jcontacts/events/fax/unlinked/AdminUnlinkedFaxNumberEvent.java b/src/org/mxchange/jcontacts/events/fax/unlinked/AdminUnlinkedFaxNumberEvent.java
new file mode 100644 (file)
index 0000000..e8c044f
--- /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.unlinked;
+
+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 unlinked
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public interface AdminUnlinkedFaxNumberEvent extends Serializable {
+
+       /**
+        * Getter for updated fax numbers
+        * <p>
+        * @return Updated fax numbers
+        */
+       DialableFaxNumber getUnlinkedFaxNumber ();
+
+       /**
+        * Getter for contact instance
+        * <p>
+        * @return Contact instance
+        */
+       Contact getContact ();
+
+}
diff --git a/src/org/mxchange/jcontacts/events/landline/unlinked/AdminLandLineNumberUnlinkedEvent.java b/src/org/mxchange/jcontacts/events/landline/unlinked/AdminLandLineNumberUnlinkedEvent.java
new file mode 100644 (file)
index 0000000..1873e1a
--- /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.unlinked;
+
+import org.mxchange.jcontacts.contact.Contact;
+import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
+
+/**
+ * An event when a land-line number has been unlinked
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public class AdminLandLineNumberUnlinkedEvent implements AdminUnlinkedLandLineNumberEvent {
+
+       /**
+        * Serial number
+        */
+       private static final long serialVersionUID = 18_521_758_718_691_065L;
+
+       /**
+        * Contact instance
+        */
+       private final Contact contact;
+
+       /**
+        * Unlinked land-line number
+        */
+       private final DialableLandLineNumber unlinkedLandLineNumber;
+
+       /**
+        * Constructor with unlinked land-line number
+        * <p>
+        * @param contact Contact with linked land-line instance
+        * @param unlinkedLandLineNumber Unlinked land-line number
+        */
+       public AdminLandLineNumberUnlinkedEvent (final Contact contact, final DialableLandLineNumber unlinkedLandLineNumber) {
+               // Set it here
+               this.contact = contact;
+               this.unlinkedLandLineNumber = unlinkedLandLineNumber;
+       }
+
+       @Override
+       public Contact getContact () {
+               return this.contact;
+       }
+
+       @Override
+       public DialableLandLineNumber getUnlinkedLandLineNumber () {
+               return this.unlinkedLandLineNumber;
+       }
+
+}
diff --git a/src/org/mxchange/jcontacts/events/landline/unlinked/AdminUnlinkedLandLineNumberEvent.java b/src/org/mxchange/jcontacts/events/landline/unlinked/AdminUnlinkedLandLineNumberEvent.java
new file mode 100644 (file)
index 0000000..002bfdd
--- /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.landline.unlinked;
+
+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 unlinked
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public interface AdminUnlinkedLandLineNumberEvent extends Serializable {
+
+       /**
+        * Getter for updated land-line numbers
+        * <p>
+        * @return Updated land-line numbers
+        */
+       DialableLandLineNumber getUnlinkedLandLineNumber ();
+
+       /**
+        * Getter for contact instance
+        * <p>
+        * @return Contact instance
+        */
+       Contact getContact ();
+
+}
index a2ab5dadec16f9fcbb1842fcd63fc9a44099fa69..d6e56211c62920525a449444683bf43c0a53f12d 100644 (file)
@@ -20,7 +20,7 @@ import org.mxchange.jcontacts.contact.Contact;
 import org.mxchange.jphone.phonenumbers.mobile.DialableMobileNumber;
 
 /**
- * An event when a cell phone number has been updated
+ * An event when a mobile number has been unlinked
  * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
@@ -37,20 +37,20 @@ public class AdminMobileNumberUnlinkedEvent implements AdminUnlinkedMobileNumber
        private final Contact contact;
 
        /**
-        * Unlinked mobile provider instance
+        * Unlinked mobile number
         */
-       private final DialableMobileNumber unlinkedCellphoneNumber;
+       private final DialableMobileNumber unlinkedMobileNumber;
 
        /**
-        * Constructor with unlinked cell phone number
+        * Constructor with unlinked mobile number
         * <p>
-        * @param contact Contact with linked cell phone instance
-        * @param unlinkedCellphoneNumber Unlinked cell phone number
+        * @param contact Contact with linked mobile instance
+        * @param unlinkedMobileNumber Unlinked mobile number
         */
-       public AdminMobileNumberUnlinkedEvent (final Contact contact, final DialableMobileNumber unlinkedCellphoneNumber) {
+       public AdminMobileNumberUnlinkedEvent (final Contact contact, final DialableMobileNumber unlinkedMobileNumber) {
                // Set it here
                this.contact = contact;
-               this.unlinkedCellphoneNumber = unlinkedCellphoneNumber;
+               this.unlinkedMobileNumber = unlinkedMobileNumber;
        }
 
        @Override
@@ -59,8 +59,8 @@ public class AdminMobileNumberUnlinkedEvent implements AdminUnlinkedMobileNumber
        }
 
        @Override
-       public DialableMobileNumber getUnlinkedCellphoneNumber () {
-               return this.unlinkedCellphoneNumber;
+       public DialableMobileNumber getUnlinkedMobileNumber () {
+               return this.unlinkedMobileNumber;
        }
 
 }
index 4c1228037261293d500866da455a229f6d6da2ed..a84d7029b61bbaae8b1b9bcb8c89f8fcae2a6e48 100644 (file)
@@ -21,18 +21,18 @@ import org.mxchange.jcontacts.contact.Contact;
 import org.mxchange.jphone.phonenumbers.mobile.DialableMobileNumber;
 
 /**
- * An interface for an event when a cell phone number has been updated
+ * An interface for an event when a mobile number has been unlinked
  * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
 public interface AdminUnlinkedMobileNumberEvent extends Serializable {
 
        /**
-        * Getter for updated cell phone numbers
+        * Getter for updated mobile numbers
         * <p>
-        * @return Updated cell phone numbers
+        * @return Updated mobile numbers
         */
-       DialableMobileNumber getUnlinkedCellphoneNumber ();
+       DialableMobileNumber getUnlinkedMobileNumber ();
 
        /**
         * Getter for contact instance