From: Roland Häder Date: Mon, 25 Apr 2016 13:22:26 +0000 (+0200) Subject: Continued a bit: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1906f1a671ca318de0a1878a2bce4b062b90532c;p=pizzaservice-lib.git Continued a bit: - added remote interface (empty for now) for general and administrative purposes - added depencies jcustomer-core and jcustomer-lib Signed-off-by: Roland Häder --- diff --git a/lib/jcustomer-core.jar b/lib/jcustomer-core.jar new file mode 100644 index 0000000..f1e5889 Binary files /dev/null and b/lib/jcustomer-core.jar differ diff --git a/lib/jcustomer-lib.jar b/lib/jcustomer-lib.jar new file mode 100644 index 0000000..aff0f35 Binary files /dev/null and b/lib/jcustomer-lib.jar differ diff --git a/lib/jratecalc-core.jar b/lib/jratecalc-core.jar new file mode 100644 index 0000000..47e3bda Binary files /dev/null and b/lib/jratecalc-core.jar differ diff --git a/lib/pizzaservice-core.jar b/lib/pizzaservice-core.jar new file mode 100644 index 0000000..0f5bdcc Binary files /dev/null and b/lib/pizzaservice-core.jar differ diff --git a/nbproject/project.properties b/nbproject/project.properties index c0c7797..e545f24 100644 --- a/nbproject/project.properties +++ b/nbproject/project.properties @@ -35,8 +35,11 @@ file.reference.jcore-logger-lib.jar=lib/jcore-logger-lib.jar file.reference.jcoreee.jar=lib/jcoreee.jar file.reference.jcountry-core.jar=lib/jcountry-core.jar file.reference.jcountry-lib.jar=lib\\jcountry-lib.jar +file.reference.jcustomer-core.jar=lib/jcustomer-core.jar +file.reference.jcustomer-lib.jar=lib/jcustomer-lib.jar file.reference.jshop-core.jar=lib/jshop-core.jar file.reference.jshop-ee-lib.jar=lib/jshop-ee-lib.jar +file.reference.pizzaservice-core.jar=lib/pizzaservice-core.jar includes=** jar.archive.disabled=${jnlp.enabled} jar.compress=false @@ -48,11 +51,15 @@ javac.classpath=\ ${file.reference.jcountry-lib.jar}:\ ${file.reference.jshop-core.jar}:\ ${file.reference.jshop-ee-lib.jar}:\ + ${file.reference.jcustomer-core.jar}:\ + ${file.reference.jcustomer-lib.jar}:\ + ${file.reference.pizzaservice-core.jar}:\ ${file.reference.cdi-api.jar}:\ ${libs.javaee-api-7.0.classpath} # Space-separated list of extra javac options javac.compilerargs=-Xlint:unchecked -Xlint:deprecation javac.deprecation=true +javac.external.vm=false javac.processorpath=\ ${javac.classpath} javac.source=1.7 @@ -105,7 +112,10 @@ source.reference.jcore-logger-lib.jar=../jcore-logger-lib/src/ source.reference.jcoreee.jar=../jcoreee/src/ source.reference.jcountry-core.jar=../jcountry-core/src/ source.reference.jcountry-lib.jar=../jcountry-lib/src/ +source.reference.jcustomer-core.jar=../jcustomer-core/src/ +source.reference.jcustomer-lib.jar=../jcustomer-lib/src/ source.reference.jshop-core.jar=../jshop-core/src/ source.reference.jshop-ee-lib.jar=../jshop-ee-lib/src/ +source.reference.pizzaservice-core.jar=../pizzaservice-core/src/ src.dir=src test.src.dir=test diff --git a/src/org/mxchange/pizzaapplication/model/customer/PizzaAdminCustomerSessionBeanRemote.java b/src/org/mxchange/pizzaapplication/model/customer/PizzaAdminCustomerSessionBeanRemote.java new file mode 100644 index 0000000..feddd9c --- /dev/null +++ b/src/org/mxchange/pizzaapplication/model/customer/PizzaAdminCustomerSessionBeanRemote.java @@ -0,0 +1,28 @@ +/* + * 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.pizzaapplication.model.customer; + +import org.mxchange.jcustomercore.model.customer.AdminCustomerSessionBeanRemote; + +/** + * A custom remote interface for PizzaService customers + *

+ * @author Roland Haeder + */ +public interface PizzaAdminCustomerSessionBeanRemote extends AdminCustomerSessionBeanRemote { + +} diff --git a/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomerSessionBeanRemote.java b/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomerSessionBeanRemote.java new file mode 100644 index 0000000..bd3f1da --- /dev/null +++ b/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomerSessionBeanRemote.java @@ -0,0 +1,28 @@ +/* + * 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.pizzaapplication.model.customer; + +import org.mxchange.jcustomercore.model.customer.CustomerSessionBeanRemote; + +/** + * A custom remote interface for PizzaService customers + *

+ * @author Roland Haeder + */ +public interface PizzaCustomerSessionBeanRemote extends CustomerSessionBeanRemote { + +}