]> git.mxchange.org Git - addressbook-lib.git/commitdiff
Continued a bit:
authorRoland Häder <roland@mxchange.org>
Sat, 3 Jun 2017 16:14:46 +0000 (18:14 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 3 Jun 2017 16:14:46 +0000 (18:14 +0200)
- updated copyright
- updated jar(s)

Signed-off-by: Roland Häder <roland@mxchange.org>
lib/jaddressbook-core.jar
lib/jcontacts-business-core.jar
lib/jcontacts-core.jar
lib/jcountry-core.jar
lib/jphone-core.jar
lib/juser-core.jar
src/org/mxchange/addressbook/beans/resendlink/ResendLinkSessionBeanRemote.java [deleted file]

index 15a7e669f2d6bafd77934bab3fb0c1ed2a6d0cfb..800f61adb71385fcbfbc27b1b8e65ce2ae305508 100644 (file)
Binary files a/lib/jaddressbook-core.jar and b/lib/jaddressbook-core.jar differ
index a0ca53b9d02f36e1d30269cefd780f092ac072e0..6de90379984e4536915f0abf67334246fccec75a 100644 (file)
Binary files a/lib/jcontacts-business-core.jar and b/lib/jcontacts-business-core.jar differ
index eaa2463471426757016ba6786661d4a7b471c087..54a8731c3ecc2973c6f9286a08706a16c4a442ab 100644 (file)
Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ
index 5cbad453c2f8698f9ab16791a4e97baef7fa6686..e91ed0ad88c8635e2a9fccb45c289eefa8d2f943 100644 (file)
Binary files a/lib/jcountry-core.jar and b/lib/jcountry-core.jar differ
index 9587335f2376f8ddf1f9275c0ec27c454450b266..6f596cc999fe3f3bcc5ecb56de3a09ef90910f9f 100644 (file)
Binary files a/lib/jphone-core.jar and b/lib/jphone-core.jar differ
index aa8a72393fba606d8e39c915068e9ea7ca5faf74..fd411f914c67a74da6daa0cce6a4534883b0b9ca 100644 (file)
Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ
diff --git a/src/org/mxchange/addressbook/beans/resendlink/ResendLinkSessionBeanRemote.java b/src/org/mxchange/addressbook/beans/resendlink/ResendLinkSessionBeanRemote.java
deleted file mode 100644 (file)
index 951aac3..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (C) 2016 Roland Häder
- *
- * 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 java.util.Locale;
-import javax.ejb.Remote;
-import org.mxchange.jusercore.model.user.User;
-
-/**
- * A remote interface for resending confirmation link.
- * <p>
- * @author Roland Häder<roland@mxchange.org>
- */
-@Remote
-public interface ResendLinkSessionBeanRemote extends Serializable {
-
-       /**
-        * Send confirmation link out to given user and returns a proper redirection
-        * target. The user's account status should be UNCONFIRMED and should
-        * contain a confirmation key. After confirmation the account's status
-        * should be changed to CONFIRMED and the key removed (nulled).
-        * <p>
-        * @param user    User instance
-        * @param locale  Locale instance
-        * @param baseUrl Base URL
-        */
-       void resendConfirmationLink (final User user, final Locale locale, final String baseUrl);
-
-}