From: Roland Haeder Date: Sun, 11 Oct 2015 20:00:08 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7080df429a93d9fe48fa6fe169b79151eb8b019f;p=jcountry-lib.git Continued: - added Java EE 7 API - added remote interface for singleton country data retrieval - added .gitignore + dist.sh --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0383bcc --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +/nbproject/private/ +/nbproject/*~ +/manifest.mf +/build/ +/dist/ +/data/* +/*.properties diff --git a/dist.sh b/dist.sh new file mode 100755 index 0000000..f48251e --- /dev/null +++ b/dist.sh @@ -0,0 +1,23 @@ +#!/bin/sh + +NAME="${PWD##*/}" +DIST="dist/${NAME}.jar" +LIST=`find ../*/lib/${NAME}.jar` +LIST="${LIST} `find ../*/*-ejb/lib/${NAME}.jar`" +LIST="${LIST} ${HOME}/gf_domains/domain1/lib/" + +for target in ${LIST}; +do + if [ ! -f "${DIST}" ] + then + echo "$0: '${DIST}' not found." + elif [ -d "${target}" ] + then + cp -v "${DIST}" "${target}" + elif [ -f "${target}" ] + then + cp -v "${DIST}" "${target}" + else + echo "$0: Target '${target}' not found." + fi +done diff --git a/lib/cdi-api.jar b/lib/cdi-api.jar new file mode 100644 index 0000000..1fa239e Binary files /dev/null and b/lib/cdi-api.jar differ diff --git a/lib/javaee-api-7.0/javaee-api-7.0.jar b/lib/javaee-api-7.0/javaee-api-7.0.jar new file mode 100644 index 0000000..09de736 Binary files /dev/null and b/lib/javaee-api-7.0/javaee-api-7.0.jar differ diff --git a/lib/javaee-api-7.0/javaee-doc-api.jar b/lib/javaee-api-7.0/javaee-doc-api.jar new file mode 100644 index 0000000..bdebe91 Binary files /dev/null and b/lib/javaee-api-7.0/javaee-doc-api.jar differ diff --git a/lib/nblibraries.properties b/lib/nblibraries.properties index 6d0afb5..1f1df42 100644 --- a/lib/nblibraries.properties +++ b/lib/nblibraries.properties @@ -2,3 +2,9 @@ libs.CopyLibs.classpath=\ ${base}/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar libs.CopyLibs.displayName=CopyLibs Task libs.CopyLibs.prop-version=2.0 +libs.javaee-api-7.0.classpath=\ + ${base}/javaee-api-7.0/javaee-api-7.0.jar +libs.javaee-api-7.0.displayName=Java EE 7 API Library +libs.javaee-api-7.0.javadoc=\ + ${base}/javaee-api-7.0/javaee-doc-api.jar +libs.javaee-api-7.0.prop-maven-dependencies=javax:javaee-api:7.0:jar diff --git a/nbproject/project.properties b/nbproject/project.properties index 7a4c3a8..0f81dea 100644 --- a/nbproject/project.properties +++ b/nbproject/project.properties @@ -29,11 +29,14 @@ dist.jar=${dist.dir}/jcountry-lib.jar dist.javadoc.dir=${dist.dir}/javadoc endorsed.classpath= excludes= +file.reference.cdi-api.jar=lib/cdi-api.jar file.reference.jcountry-core.jar=lib/jcountry-core.jar includes=** jar.compress=false javac.classpath=\ - ${file.reference.jcountry-core.jar} + ${file.reference.jcountry-core.jar}:\ + ${libs.javaee-api-7.0.classpath}:\ + ${file.reference.cdi-api.jar} # Space-separated list of extra javac options javac.compilerargs=-Xlint:unchecked -Xlint:deprecation javac.deprecation=true diff --git a/src/org/mxchange/jcountry/data/CountrySingletonBeanRemote.java b/src/org/mxchange/jcountry/data/CountrySingletonBeanRemote.java new file mode 100644 index 0000000..0ac8e9c --- /dev/null +++ b/src/org/mxchange/jcountry/data/CountrySingletonBeanRemote.java @@ -0,0 +1,35 @@ +/* + * Copyright (C) 2015 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; + +/** + * A remote interface for country informations + *

+ * @author Roland Haeder + */ +public interface CountrySingletonBeanRemote extends Serializable { + + /** + * All registered countries + *

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