]> git.mxchange.org Git - jjobs-lib.git/commitdiff
Continued a bit:
authorRoland Haeder <roland@mxchange.org>
Mon, 11 Apr 2016 14:57:32 +0000 (16:57 +0200)
committerRoland Haeder <roland@mxchange.org>
Tue, 12 Apr 2016 19:10:46 +0000 (21:10 +0200)
- removed no longer used remote interface as for interfaces, no specialization is required
- updated jar(s)

lib/jcontacts-core.jar
lib/jcoreee.jar
lib/jcountry-core.jar
lib/jphone-core.jar
lib/juser-core.jar
lib/juser-lib.jar
src/org/mxchange/jcountry/data/JobsCountrySingletonBeanRemote.java [deleted file]

index b94b468717c61b0b3d1b03d19f855d1a15815723..356a84c0658c6bd20121144e4a1e4f16f3c3fec7 100644 (file)
Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ
index 47314c5cce53df5be1b7f151a318f134d3c77e23..0429c6b1b256b50de75024733722567d0ed7deca 100644 (file)
Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ
index 4ecdf7ee64679ee99388e46e4ebc51c0694d3180..3b26377fa896aaca3df2df69ef7b74c4533e677a 100644 (file)
Binary files a/lib/jcountry-core.jar and b/lib/jcountry-core.jar differ
index 1965d51a2b082c0fb97c3f91e876bba202c0e669..251994eaf3dd85f7259513182d6c19f1c439444e 100644 (file)
Binary files a/lib/jphone-core.jar and b/lib/jphone-core.jar differ
index 988fcc9e393829606313edd4fb3e5da5bf749de6..c6638e1e560ee6382ff20f9628ecc6eb94aee9aa 100644 (file)
Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ
index 77cab45e3082066efa5f263ffdf793bd6955770a..cbd7958788d091e1111c8c9055a045ead16c8bc5 100644 (file)
Binary files a/lib/juser-lib.jar and b/lib/juser-lib.jar differ
diff --git a/src/org/mxchange/jcountry/data/JobsCountrySingletonBeanRemote.java b/src/org/mxchange/jcountry/data/JobsCountrySingletonBeanRemote.java
deleted file mode 100644 (file)
index 807933b..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) 2016 Roland Haeder
- *
- * 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.jcountry.data;
-
-import java.io.Serializable;
-import java.util.List;
-import javax.ejb.Remote;
-
-/**
- * A remote interface for country informations
- * <p>
- * @author Roland Haeder<roland@mxchange.org>
- */
-@Remote
-public interface JobsCountrySingletonBeanRemote extends Serializable {
-
-       /**
-        * All registered countries
-        * <p>
-        * @return A list of all countries
-        */
-       List<Country> allCountries ();
-}