From: Roland Häder Date: Fri, 13 May 2016 14:14:36 +0000 (+0200) Subject: Continued a bit: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=56bbb398f66e9f76b5f65bc5eb2b968fc6a05f2d;p=jfinancials-lib.git Continued a bit: - updated dist.sh - added remote interface for resending confirmation links Signed-off-by: Roland Häder --- diff --git a/dist.sh b/dist.sh index 8d5e1cc..58d917f 100755 --- 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}" diff --git a/lib/jcontacts-core.jar b/lib/jcontacts-core.jar index cb26cc3..60b5f24 100644 Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ diff --git a/lib/juser-core.jar b/lib/juser-core.jar index c306621..f0e1638 100644 Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ diff --git a/lib/juser-lib.jar b/lib/juser-lib.jar index 657e5a4..108299d 100644 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 index 0000000..04938b9 --- /dev/null +++ b/src/org/mxchange/addressbook/beans/resendlink/ResendLinkSessionBeanRemote.java @@ -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 . + */ +package org.mxchange.addressbook.beans.resendlink; + +import java.io.Serializable; +import javax.ejb.Remote; + +/** + * A remote interface for resending confirmation link. + *

+ * @author Roland Haeder + */ +@Remote +public interface ResendLinkSessionBeanRemote extends Serializable { + +}