From da1a49a981894ada57bda1452ba4b48be60e50db Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 23 Jul 2017 13:51:27 +0200 Subject: [PATCH] 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. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../jcontactsbusiness/BusinessContactSessionBeanRemote.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 (); } -- 2.39.5