]> git.mxchange.org Git - jfinancials-lib.git/commitdiff
Continued a bit:
authorRoland Häder <roland@mxchange.org>
Fri, 13 May 2016 14:14:36 +0000 (16:14 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 13 May 2016 20:18:58 +0000 (22:18 +0200)
- updated dist.sh
- added remote interface for resending confirmation links

Signed-off-by: Roland Häder <roland@mxchange.org>
dist.sh
lib/jcontacts-core.jar
lib/juser-core.jar
lib/juser-lib.jar
src/org/mxchange/addressbook/beans/resendlink/ResendLinkSessionBeanRemote.java [new file with mode: 0644]

diff --git a/dist.sh b/dist.sh
index 8d5e1ccb04fa6a5f0ff80cce42a6cbc8d952641b..58d917f92024ee2326b909ed17a6c2232f4bc602 100755 (executable)
--- a/dist.sh
+++ b/dist.sh
@@ -69,7 +69,7 @@ do
 
 done
 
-if [ -n "${GLASSFISH_SSH_PATH}" -a -n "${GLASSFISH_SSH_SERVER}" ]
+if [ "$1" != "r" -a -n "${GLASSFISH_SSH_PATH}" -a -n "${GLASSFISH_SSH_SERVER}" ]
 then
        echo "$0: Copying to remote '${GLASSFISH_SSH_SERVER}' ..."
        scp "${DIST}" "${GLASSFISH_SSH_SERVER}:${GLASSFISH_SSH_PATH}"
index cb26cc31998049cab33c9fee17f51aecfd6cf2c3..60b5f24723addee97149d0364ce81909095dcc19 100644 (file)
Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ
index c306621408df6a15589f8bf9903faa93c0b27260..f0e1638b573b4533f4737f0676c153d49581c7c9 100644 (file)
Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ
index 657e5a46bda536f758f9c792ac0f05b191c9bbc9..108299d70955d52b34045a1895d4d360ce2a50f7 100644 (file)
Binary files a/lib/juser-lib.jar and b/lib/juser-lib.jar differ
diff --git a/src/org/mxchange/addressbook/beans/resendlink/ResendLinkSessionBeanRemote.java b/src/org/mxchange/addressbook/beans/resendlink/ResendLinkSessionBeanRemote.java
new file mode 100644 (file)
index 0000000..04938b9
--- /dev/null
@@ -0,0 +1,30 @@
+/*
+ * 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.addressbook.beans.resendlink;
+
+import java.io.Serializable;
+import javax.ejb.Remote;
+
+/**
+ * A remote interface for resending confirmation link.
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+@Remote
+public interface ResendLinkSessionBeanRemote extends Serializable {
+
+}