From: Roland Häder <roland@mxchange.org>
Date: Wed, 20 Sep 2017 18:38:18 +0000 (+0200)
Subject: Continued a bit:
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=aeb096f287288fa2d488e12b2a67ae915826e1ab;p=jcontacts-business-lib.git

Continued a bit:
- added business method findBranchOfficeById()

Signed-off-by: Roland Häder <roland@mxchange.org>
---

diff --git a/src/org/mxchange/jcontactsbusiness/model/branchoffice/BranchOfficeSessionBeanRemote.java b/src/org/mxchange/jcontactsbusiness/model/branchoffice/BranchOfficeSessionBeanRemote.java
index 862db15..e371ddd 100644
--- a/src/org/mxchange/jcontactsbusiness/model/branchoffice/BranchOfficeSessionBeanRemote.java
+++ b/src/org/mxchange/jcontactsbusiness/model/branchoffice/BranchOfficeSessionBeanRemote.java
@@ -16,10 +16,10 @@
  */
 package org.mxchange.jcontactsbusiness.model.branchoffice;
 
-import org.mxchange.jcontactsbusiness.model.branchoffice.BranchOffice;
 import java.io.Serializable;
 import java.util.List;
 import javax.ejb.Remote;
+import org.mxchange.jcontactsbusiness.exceptions.branchoffice.BranchOfficeNotFoundException;
 
 /**
  * A remote interface for business contact data
@@ -29,6 +29,17 @@ import javax.ejb.Remote;
 @Remote
 public interface BranchOfficeSessionBeanRemote extends Serializable {
 
+	/**
+	 * Tries to find a branch office with given id number
+	 * <p>
+	 * @param branchOfficeId Branch office id
+	 * <p>
+	 * @return A branch office instance
+	 * <p>
+	 * @throws BranchOfficeNotFoundException If the branch office was not found
+	 */
+	BranchOffice findBranchOfficeById (final Long branchOfficeId) throws BranchOfficeNotFoundException;
+
 	/**
 	 * Returns a list of all branch offices
 	 * <p>