From: Roland Häder Date: Mon, 8 Aug 2016 13:51:43 +0000 (+0200) Subject: cleared up remote interface as this is no longer done, better use allContacts() and... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2ad51347b41bbb6dc09a2bee7729a496cbf3e192;p=jcontacts-lib.git cleared up remote interface as this is no longer done, better use allContacts() and then "walk" through the list for given contact --- diff --git a/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java b/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java index e45eeb9..a41a9bb 100644 --- a/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java +++ b/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java @@ -17,10 +17,7 @@ package org.mxchange.jcontacts.phone; import java.io.Serializable; -import java.util.List; import javax.ejb.Remote; -import org.mxchange.jcontacts.contact.Contact; -import org.mxchange.jphone.phonenumbers.cellphone.DialableCellphoneNumber; /** * A remote interface for administrative purposes around contact's phone numbers @@ -31,13 +28,4 @@ import org.mxchange.jphone.phonenumbers.cellphone.DialableCellphoneNumber; @Remote public interface AdminContactsPhoneSessionBeanRemote extends Serializable { - /** - * A list of all contacts having given cellphone instance linked. - *

- * @param cellPhone Cellphone instance - *

- * @return A list of all linked contacts - */ - List allContacts (final DialableCellphoneNumber cellPhone); - }