From: Roland Haeder Date: Mon, 11 Apr 2016 14:57:32 +0000 (+0200) Subject: Continued a bit: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fdf0cd151bf0f0845db934796751ebd2e4c50c13;p=jjobs-lib.git Continued a bit: - removed no longer used remote interface as for interfaces, no specialization is required - updated jar(s) --- diff --git a/lib/jcontacts-core.jar b/lib/jcontacts-core.jar index b94b468..356a84c 100644 Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ diff --git a/lib/jcoreee.jar b/lib/jcoreee.jar index 47314c5..0429c6b 100644 Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ diff --git a/lib/jcountry-core.jar b/lib/jcountry-core.jar index 4ecdf7e..3b26377 100644 Binary files a/lib/jcountry-core.jar and b/lib/jcountry-core.jar differ diff --git a/lib/jphone-core.jar b/lib/jphone-core.jar index 1965d51..251994e 100644 Binary files a/lib/jphone-core.jar and b/lib/jphone-core.jar differ diff --git a/lib/juser-core.jar b/lib/juser-core.jar index 988fcc9..c6638e1 100644 Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ diff --git a/lib/juser-lib.jar b/lib/juser-lib.jar index 77cab45..cbd7958 100644 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 index 807933b..0000000 --- a/src/org/mxchange/jcountry/data/JobsCountrySingletonBeanRemote.java +++ /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 . - */ -package org.mxchange.jcountry.data; - -import java.io.Serializable; -import java.util.List; -import javax.ejb.Remote; - -/** - * A remote interface for country informations - *

- * @author Roland Haeder - */ -@Remote -public interface JobsCountrySingletonBeanRemote extends Serializable { - - /** - * All registered countries - *

- * @return A list of all countries - */ - List allCountries (); -}