From: Roland Häder Date: Sun, 23 Jul 2017 11:51:27 +0000 (+0200) Subject: Having basic data and "business contact" which is really no contact in general X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=da1a49a981894ada57bda1452ba4b48be60e50db;p=jcontacts-business-lib.git Having basic data and "business contact" which is really no contact in general terms was a bad style anyway. Now these two entities are merged into "BusinessBasicData" and kept in main package of this project. Signed-off-by: Roland Häder --- diff --git a/src/org/mxchange/jcontactsbusiness/BusinessContactSessionBeanRemote.java b/src/org/mxchange/jcontactsbusiness/BusinessContactSessionBeanRemote.java index 7723f54..e5bb247 100644 --- a/src/org/mxchange/jcontactsbusiness/BusinessContactSessionBeanRemote.java +++ b/src/org/mxchange/jcontactsbusiness/BusinessContactSessionBeanRemote.java @@ -40,7 +40,7 @@ public interface BusinessContactSessionBeanRemote extends Serializable { * @throws BusinessContactNotFoundException If the id number could not be * looked up and solved into an entity */ - BusinessContact findBusinessContactById (final Long businessContactId) throws BusinessContactNotFoundException; + BusinessBasicData findBusinessDataById (final Long businessContactId) throws BusinessContactNotFoundException; /** * Returns a list, even empty if not thing found, from all business @@ -48,6 +48,6 @@ public interface BusinessContactSessionBeanRemote extends Serializable { *

* @return A list with all business contacts */ - List allBusinessContacts (); + List allBusinessContacts (); }