excludes=
file.reference.jcore.jar=lib/jcore.jar
file.reference.jcoreee.jar=lib/jcoreee.jar
+file.reference.jcustomer-core.jar=lib/jcustomer-core.jar
file.reference.jshop-core.jar=lib/jshop-core.jar
includes=**
jar.archive.disabled=${jnlp.enabled}
javac.classpath=\
${file.reference.jcore.jar}:\
${file.reference.jcoreee.jar}:\
+ ${file.reference.jcustomer-core.jar}:\
${file.reference.jshop-core.jar}:\
${libs.javaee-api-7.0.classpath}
# Space-separated list of extra javac options
javac.compilerargs=
javac.deprecation=true
+javac.external.vm=false
javac.processorpath=\
${javac.classpath}
javac.source=1.7
source.encoding=UTF-8
source.reference.jcore.jar=../jcore/src/
source.reference.jcoreee.jar=../jcoreee/src/
+source.reference.jcustomer-core.jar=../jcustomer-core/src/
source.reference.jshop-core.jar=../jshop-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.jshopcore.model.customer;
-
-import java.io.Serializable;
-import javax.ejb.Remote;
-import org.mxchange.jshopcore.exceptions.CustomerAlreadyRegisteredException;
-
-/**
- * An interface for customer beans
- * <p>
- * @author Roland Haeder<roland@mxchange.org>
- */
-@Remote
-public interface CustomerSessionBeanRemote extends Serializable {
-
- /**
- * Fills given customer instance with all available data
- * <p>
- * @param customer Initial Customer instance
- * <p>
- * @return Prepared Customer instance
- */
- Customer fillCustomerData (final Customer customer);
-
- /**
- * Checks if the the given customer instance is already registered
- * <p>
- * @param customer Customer instance
- * <p>
- * @return Whether the customer is already registered
- */
- boolean isReqistered (final Customer customer);
-
- /**
- * Registers the customer and creates a customer number after succesful
- * persisting.
- * <p>
- * @param customer Initial customer instance
- * <p>
- * @return Prepared Customer instance
- * <p>
- * @throws
- * org.mxchange.jshopcore.exceptions.CustomerAlreadyRegisteredException If
- * the customer is already registered.
- */
- Customer registerCustomer (final Customer customer) throws CustomerAlreadyRegisteredException;
-}