]> git.mxchange.org Git - jcontacts-lib.git/blobdiff - src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java
wrong place for these methods as they are not related to contacts (unlink/link is...
[jcontacts-lib.git] / src / org / mxchange / jcontacts / phone / AdminContactsPhoneSessionBeanRemote.java
index 9384083d0609b2a45fbc8d8800569cb176a2fa64..a41a9bb83bcb1dde7d91d9a52b392da2c7d213f3 100644 (file)
@@ -18,7 +18,6 @@ package org.mxchange.jcontacts.phone;
 
 import java.io.Serializable;
 import javax.ejb.Remote;
-import org.mxchange.jphone.phonenumbers.cellphone.DialableCellphoneNumber;
 
 /**
  * A remote interface for administrative purposes around contact's phone numbers
@@ -29,20 +28,4 @@ import org.mxchange.jphone.phonenumbers.cellphone.DialableCellphoneNumber;
 @Remote
 public interface AdminContactsPhoneSessionBeanRemote extends Serializable {
 
-       /**
-        * Deletes given cell phone data.
-        * <p>
-        * @param cellPhoneNumber Cell phone data to be deleted
-        */
-       void deleteCellphoneData (final DialableCellphoneNumber cellPhoneNumber);
-
-       /**
-        * Updates data from given cell phone number instance in database
-        * <p>
-        * @param cellPhoneNumber Cell phone number instance to update
-        * <p>
-        * @return Updated cell phone number instance
-        */
-       DialableCellphoneNumber updateCellphoneData (final DialableCellphoneNumber cellPhoneNumber);
-
 }