]> git.mxchange.org Git - jcontacts-core.git/blobdiff - src/org/mxchange/jcontacts/events/mobile/unlinked/AdminMobileNumberUnlinkedEvent.java
cellphone is history, now there is mobile ... ;-)
[jcontacts-core.git] / src / org / mxchange / jcontacts / events / mobile / unlinked / AdminMobileNumberUnlinkedEvent.java
index a2ab5dadec16f9fcbb1842fcd63fc9a44099fa69..1206039ff935cc0a08b0f26b418730e996331865 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * 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
@@ -20,9 +20,9 @@ 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>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public class AdminMobileNumberUnlinkedEvent implements AdminUnlinkedMobileNumberEvent {
 
@@ -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;
        }
 
 }