From: Roland Haeder Date: Thu, 21 Apr 2016 20:05:59 +0000 (+0200) Subject: fixed line-breaking (needs fixing NetBeans settings) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=10503309420fa1083fb8cf60d25da10d457ff2ed;p=juser-activity-lib.git fixed line-breaking (needs fixing NetBeans settings) --- diff --git a/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java b/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java index 80a55f5..e05fb14 100644 --- a/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java +++ b/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java @@ -48,9 +48,7 @@ public interface UserSessionBeanRemote extends Serializable { *

* @return User instance * - * @throws org.mxchange.jusercore.exceptions.UserNotFoundException If the - * user is - * not found + * @throws org.mxchange.jusercore.exceptions.UserNotFoundException If the user is not found */ User findUserById (final Long userId) throws UserNotFoundException; @@ -61,22 +59,8 @@ public interface UserSessionBeanRemote extends Serializable { *

* @return Updated user instance *

- * @throws - * org.mxchange.jusercore.exceptions.UserNameAlreadyRegisteredException When - * the - * user - * name - * is - * already - * used - * @throws - * * org.mxchange.jusercore.exceptions.EmailAddressAlreadyRegisteredException When - * the - * email - * address - * is - * already - * used + * @throws org.mxchange.jusercore.exceptions.UserNameAlreadyRegisteredException When the user name is already used + * @throws org.mxchange.jusercore.exceptions.EmailAddressAlreadyRegisteredException When the email address is already used */ User addUser (final User user) throws UserNameAlreadyRegisteredException, EmailAddressAlreadyRegisteredException;