]> git.mxchange.org Git - juser-login-lib.git/blob - src/org/mxchange/jusercore/model/register/UserRegistrationSessionBeanRemote.java
Updated copyright year
[juser-login-lib.git] / src / org / mxchange / jusercore / model / register / UserRegistrationSessionBeanRemote.java
1 /*
2  * Copyright (C) 2016 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jusercore.model.register;
18
19 import java.io.Serializable;
20 import javax.ejb.Remote;
21 import org.mxchange.jusercore.exceptions.EmailAddressAlreadyRegisteredException;
22 import org.mxchange.jusercore.exceptions.UserNameAlreadyRegisteredException;
23 import org.mxchange.jusercore.model.user.User;
24
25 /**
26  * A remote interface for user registtration
27  * <p>
28  * @author Roland Haeder
29  */
30 @Remote
31 public interface UserRegistrationSessionBeanRemote extends Serializable {
32
33         /**
34          * Registers given user data, if not yet found
35          * <p>
36          * @param user User instance to register
37          * <p>
38          * @return The fully registered user account
39          * <p>
40          * @throws
41          * org.mxchange.jusercore.exceptions.UserNameAlreadyRegisteredException If
42          * the user name has already been registered
43          * @throws
44          * org.mxchange.jusercore.exceptions.EmailAddressAlreadyRegisteredException
45          * If the email address has already been registered
46          */
47         User registerUser (final User user) throws UserNameAlreadyRegisteredException, EmailAddressAlreadyRegisteredException;
48
49         /**
50          * Checks if the user's name is already registered
51          * <p>
52          * @param user User instance to check
53          * <p>
54          * @return Whether the user's name has already been registered
55          */
56         boolean isUserNameRegistered (final User user);
57
58         /**
59          * Checks if the user's email address is already registered
60          * <p>
61          * @param user User instance to check
62          * <p>
63          * @return Whether the user's email address has already been registered
64          */
65         boolean isEmailAddressRegistered (final User user);
66 }