From b0c10e93882e01b81575c6d0ae36124443abee2d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Fri, 13 May 2016 16:15:10 +0200 Subject: [PATCH] added EJB for resending confirmation links MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../LandingResendLinkSessionBean.java | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/java/org/mxchange/jjobs/beans/resendlink/LandingResendLinkSessionBean.java diff --git a/src/java/org/mxchange/jjobs/beans/resendlink/LandingResendLinkSessionBean.java b/src/java/org/mxchange/jjobs/beans/resendlink/LandingResendLinkSessionBean.java new file mode 100644 index 0000000..be91d75 --- /dev/null +++ b/src/java/org/mxchange/jjobs/beans/resendlink/LandingResendLinkSessionBean.java @@ -0,0 +1,35 @@ +/* + * Copyright (C) 2016 Roland Haeder + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ +package org.mxchange.jjobs.beans.resendlink; + +import javax.ejb.Stateless; +import org.mxchange.jjobs.database.BaseJobsDatabaseBean; + +/** + * A session-based EJB for resending confirmation links + *

+ * @author Roland Haeder + */ +@Stateless (name = "resendLink", description = "A bean resending confirmation links") +public class LandingResendLinkSessionBean extends BaseJobsDatabaseBean implements ResendLinkSessionBeanRemote { + + /** + * Serial number + */ + private static final long serialVersionUID = 71_546_726_857_195_360L; + +} -- 2.39.5