]> git.mxchange.org Git - jfinancials-ejb.git/commitdiff
added method to enqueue user's email address for changing + updated jar(s)
authorRoland Haeder <roland@mxchange.org>
Thu, 10 Mar 2016 19:21:28 +0000 (20:21 +0100)
committerRoland Haeder <roland@mxchange.org>
Thu, 10 Mar 2016 19:21:28 +0000 (20:21 +0100)
lib/juser-lib.jar
src/java/org/mxchange/jusercore/model/user/UserSessionBean.java

index 93248266d4eebd8afd5d1c428b3b196b1de2d19c..985516ffe2939cd31bb9248be244e20ccb985be7 100644 (file)
Binary files a/lib/juser-lib.jar and b/lib/juser-lib.jar differ
index 8d1d8ac96fb40344dda7c3afea1a0e079eb36e1c..1b6e197b1c70d96a33f568013dfe6c5d505f049d 100644 (file)
@@ -288,6 +288,32 @@ public class UserSessionBean extends BaseDatabaseBean implements UserSessionBean
                return true;
        }
 
+       @Override
+       public void enqueueEmailAddressForChange (final User user) {
+               // Trace message
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("enqueueEmailAddressForChange: user={0} - CALLED!", user));
+
+               // user should not be null
+               if (null == user) {
+                       // Abort here
+                       throw new NullPointerException("user is null"); //NOI18N
+               } else if (user.getUserId() == null) {
+                       // Throw NPE again
+                       throw new NullPointerException("user.userId is null"); //NOI18N
+               } else if (user.getUserId() < 1) {
+                       // Not valid
+                       throw new IllegalArgumentException(MessageFormat.format("user.userId={0} is not valid.", user.getUserId())); //NOI18N
+               } else if (user.getUserAccountStatus() == null) {
+                       // Throw NPE again
+                       throw new NullPointerException("user.userAccountStatus is null"); //NOI18N
+               } else if (!this.ifUserIdExists(user.getUserId())) {
+                       // User does not exist
+                       throw new PersistenceException(MessageFormat.format("User with id {0} does not exist.", user.getUserId())); //NOI18N
+               }
+
+               throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
+       }
+
        @Override
        public void updateEmailAddress (final User user) {
                // Trace message