From 5169b5a3ffd3d6cebbee99ffa75e40e2ab54fba8 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Roland=20H=C3=A4der?= <roland@mxchange.org>
Date: Fri, 9 Jun 2017 21:10:16 +0200
Subject: [PATCH] fixed copyright, no email address here
MIME-Version: 1.0
Content-Type: text/plain; charset=utf8
Content-Transfer-Encoding: 8bit

Signed-off-by: Roland Häder <roland@mxchange.org>
---
 .../BusinessContactSessionBeanRemote.java      | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

diff --git a/src/org/mxchange/jcontactsbusiness/BusinessContactSessionBeanRemote.java b/src/org/mxchange/jcontactsbusiness/BusinessContactSessionBeanRemote.java
index 4561e19..7723f54 100644
--- a/src/org/mxchange/jcontactsbusiness/BusinessContactSessionBeanRemote.java
+++ b/src/org/mxchange/jcontactsbusiness/BusinessContactSessionBeanRemote.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2017 Roland Haeder<roland@mxchange.org>
+ * Copyright (C) 2017 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -19,15 +19,29 @@ package org.mxchange.jcontactsbusiness;
 import java.io.Serializable;
 import java.util.List;
 import javax.ejb.Remote;
+import org.mxchange.jcontactsbusiness.exceptions.BusinessContactNotFoundException;
 
 /**
  * A remote interface for business contact data
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 @Remote
 public interface BusinessContactSessionBeanRemote extends Serializable {
 
+	/**
+	 * Retrieves a single business contact entity for given id number or throws
+	 * a proper exception if not found.
+	 * <p>
+	 * @param businessContactId Business contact id to lookup
+	 * <p>
+	 * @return Business contact instance
+	 * <p>
+	 * @throws BusinessContactNotFoundException If the id number could not be
+	 * looked up and solved into an entity
+	 */
+	BusinessContact findBusinessContactById (final Long businessContactId) throws BusinessContactNotFoundException;
+
 	/**
 	 * Returns a list, even empty if not thing found, from all business
 	 * contacts. NULL should not be returned by this method.
-- 
2.39.5