<param name="transfer.built-jar.properties" value="${built-jar.properties}"/>
<param name="transfer.not.archive.disabled" value="true"/>
</antcall>
+ <antcall target="-maybe-call-dep">
+ <param name="call.built.properties" value="${built-jar.properties}"/>
+ <param location="${project.jshop-receipt}" name="call.subproject"/>
+ <param location="${project.jshop-receipt}/build.xml" name="call.script"/>
+ <param name="call.target" value="dist"/>
+ <param name="transfer.built-jar.properties" value="${built-jar.properties}"/>
+ <param name="transfer.not.archive.disabled" value="true"/>
+ </antcall>
</target>
<target depends="init,-check-automatic-build,-clean-after-automatic-build" name="-verify-automatic-build"/>
<target depends="init" name="-check-automatic-build">
<param name="transfer.built-clean.properties" value="${built-clean.properties}"/>
<param name="transfer.not.archive.disabled" value="true"/>
</antcall>
+ <antcall target="-maybe-call-dep">
+ <param name="call.built.properties" value="${built-clean.properties}"/>
+ <param location="${project.jshop-receipt}" name="call.subproject"/>
+ <param location="${project.jshop-receipt}/build.xml" name="call.script"/>
+ <param name="call.target" value="clean"/>
+ <param name="transfer.built-clean.properties" value="${built-clean.properties}"/>
+ <param name="transfer.not.archive.disabled" value="true"/>
+ </antcall>
</target>
<target depends="init" name="-do-clean">
<delete dir="${build.dir}"/>
-build.xml.data.CRC32=efd9a8cc
+build.xml.data.CRC32=8f180b9e
build.xml.script.CRC32=7a07e688
build.xml.stylesheet.CRC32=8064a381@1.75.2.48
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
-nbproject/build-impl.xml.data.CRC32=efd9a8cc
-nbproject/build-impl.xml.script.CRC32=38303d69
+nbproject/build-impl.xml.data.CRC32=8f180b9e
+nbproject/build-impl.xml.script.CRC32=be1c6de4
nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48
${reference.jcore-ee-logger.dist}:\
${file.reference.jcoreee.jar}:\
${file.reference.jshop-core.jar}:\
+ ${reference.jshop-receipt.dist}:\
${libs.javaee-api-7.0.classpath}
# Space-separated list of extra javac options
javac.compilerargs=
mkdist.disabled=true
platform.active=default_platform
project.jcore-ee-logger=../jcore-ee-logger
+project.jshop-receipt=../jshop-receipt
project.license=gpl30
reference.jcore-ee-logger.dist=${project.jcore-ee-logger}/dist/jcore-ee-logger.jar
+reference.jshop-receipt.dist=${project.jshop-receipt}/dist/jshop-receipt.jar
run.classpath=\
${javac.classpath}:\
${build.classes.dir}
<clean-target>clean</clean-target>
<id>dist</id>
</reference>
+ <reference>
+ <foreign-project>jshop-receipt</foreign-project>
+ <artifact-type>jar</artifact-type>
+ <script>build.xml</script>
+ <target>dist</target>
+ <clean-target>clean</clean-target>
+ <id>dist</id>
+ </reference>
</references>
</configuration>
</project>
--- /dev/null
+/*
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jshopcore.model.receipt;
+
+import java.io.Serializable;
+import javax.ejb.Remote;
+import org.mxchange.jshopreceipt.WrapableReceipt;
+
+/**
+ * A remote interface for official recipt creation
+ *
+ * @author Roland Haeder
+ */
+@Remote
+public interface ReceiptBeanRemote extends Serializable {
+
+ /**
+ * Returns a wrapped PDF byte stream for given access key or null if not
+ * found.
+ *
+ * @param accessKey Access key on the online PDF
+ * @return Wrapped byte stream
+ */
+ public WrapableReceipt createReceiptFromAccessKey (final String accessKey);
+}