- added remote interface (empty for now) for general and administrative purposes
- added depencies jcustomer-core and jcustomer-lib
Signed-off-by: Roland Häder <roland@mxchange.org>
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
${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
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
--- /dev/null
+/*
+ * 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.pizzaapplication.model.customer;
+
+import org.mxchange.jcustomercore.model.customer.AdminCustomerSessionBeanRemote;
+
+/**
+ * A custom remote interface for PizzaService customers
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public interface PizzaAdminCustomerSessionBeanRemote extends AdminCustomerSessionBeanRemote {
+
+}
--- /dev/null
+/*
+ * 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.pizzaapplication.model.customer;
+
+import org.mxchange.jcustomercore.model.customer.CustomerSessionBeanRemote;
+
+/**
+ * A custom remote interface for PizzaService customers
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public interface PizzaCustomerSessionBeanRemote extends CustomerSessionBeanRemote {
+
+}