From: Roland Häder Date: Wed, 10 Aug 2016 11:02:48 +0000 (+0200) Subject: wrong place for these methods as they are not related to contacts (unlink/link is... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7db26baf765fae05104438bbe3d1cacb11a779e6;p=jcontacts-lib.git wrong place for these methods as they are not related to contacts (unlink/link is contact-related) --- diff --git a/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java b/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java index 9384083..a41a9bb 100644 --- a/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java +++ b/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java @@ -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. - *

- * @param cellPhoneNumber Cell phone data to be deleted - */ - void deleteCellphoneData (final DialableCellphoneNumber cellPhoneNumber); - - /** - * Updates data from given cell phone number instance in database - *

- * @param cellPhoneNumber Cell phone number instance to update - *

- * @return Updated cell phone number instance - */ - DialableCellphoneNumber updateCellphoneData (final DialableCellphoneNumber cellPhoneNumber); - }