]> git.mxchange.org Git - jcontacts-business-lib.git/commitdiff
updated jar(s)
authorRoland Häder <roland@mxchange.org>
Sun, 23 Jul 2017 16:38:33 +0000 (18:38 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 23 Jul 2017 16:53:32 +0000 (18:53 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
lib/jcontacts-business-core.jar
src/org/mxchange/jcontactsbusiness/BusinessContactSessionBeanRemote.java [deleted file]
src/org/mxchange/jcontactsbusiness/BusinessDataSessionBeanRemote.java [new file with mode: 0644]

index 01af14651ea9554fd1fafc4f4a750d3cfa5b4011..289e64f023cb5bbb20c78ca1965a85711113accc 100644 (file)
Binary files a/lib/jcontacts-business-core.jar and b/lib/jcontacts-business-core.jar differ
diff --git a/src/org/mxchange/jcontactsbusiness/BusinessContactSessionBeanRemote.java b/src/org/mxchange/jcontactsbusiness/BusinessContactSessionBeanRemote.java
deleted file mode 100644 (file)
index e5bb247..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * 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
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-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 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
-        */
-       BusinessBasicData findBusinessDataById (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.
-        * <p>
-        * @return A list with all business contacts
-        */
-       List<BusinessBasicData> allBusinessContacts ();
-
-}
diff --git a/src/org/mxchange/jcontactsbusiness/BusinessDataSessionBeanRemote.java b/src/org/mxchange/jcontactsbusiness/BusinessDataSessionBeanRemote.java
new file mode 100644 (file)
index 0000000..c521149
--- /dev/null
@@ -0,0 +1,53 @@
+/*
+ * 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
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jcontactsbusiness;
+
+import java.io.Serializable;
+import java.util.List;
+import javax.ejb.Remote;
+import org.mxchange.jcontactsbusiness.exceptions.BusinessDataNotFoundException;
+
+/**
+ * A remote interface for business contact data
+ * <p>
+ * @author Roland Häder<roland@mxchange.org>
+ */
+@Remote
+public interface BusinessDataSessionBeanRemote extends Serializable {
+
+       /**
+        * Retrieves a single business data entity for given id number or throws a
+        * proper exception if not found.
+        * <p>
+        * @param businessDataId Business data id to lookup
+        * <p>
+        * @return Business contact instance
+        * <p>
+        * @throws BusinessDataNotFoundException If the id number could not be
+        * looked up and solved into an entity
+        */
+       BusinessBasicData findBusinessDataById (final Long businessDataId) throws BusinessDataNotFoundException;
+
+       /**
+        * Returns a list, even empty if not thing found, from all business
+        * contacts. NULL should not be returned by this method.
+        * <p>
+        * @return A list with all business contacts
+        */
+       List<BusinessBasicData> allBusinessContacts ();
+
+}