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
@Remote
public interface AdminContactsPhoneSessionBeanRemote extends Serializable {
- /**
- * A list of all contacts having given cellphone instance linked.
- * <p>
- * @param cellPhone Cellphone instance
- * <p>
- * @return A list of all linked contacts
- */
- List<Contact> allContacts (final DialableCellphoneNumber cellPhone);
-
}