From: Roland Haeder Date: Fri, 13 May 2016 20:17:48 +0000 (+0200) Subject: renamed, opps ... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=39c565d8b083f2c9b0b2e40ac030805f90451eba;p=jjobs-ejb.git renamed, opps ... Signed-off-by: Roland Häder --- diff --git a/src/java/org/mxchange/jjobs/beans/resendlink/JobsResendLinkSessionBean.java b/src/java/org/mxchange/jjobs/beans/resendlink/JobsResendLinkSessionBean.java new file mode 100644 index 0000000..d2c170b --- /dev/null +++ b/src/java/org/mxchange/jjobs/beans/resendlink/JobsResendLinkSessionBean.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 JobsResendLinkSessionBean extends BaseJobsDatabaseBean implements ResendLinkSessionBeanRemote { + + /** + * Serial number + */ + private static final long serialVersionUID = 71_546_726_857_195_360L; + +} diff --git a/src/java/org/mxchange/jjobs/beans/resendlink/LandingResendLinkSessionBean.java b/src/java/org/mxchange/jjobs/beans/resendlink/LandingResendLinkSessionBean.java deleted file mode 100644 index be91d75..0000000 --- a/src/java/org/mxchange/jjobs/beans/resendlink/LandingResendLinkSessionBean.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * 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; - -}