throw new IllegalArgumentException("baseUrl is empty"); //NOI18N
}
- // Update user status and remove confirmation key
- user.setUserAccountStatus(UserAccountStatus.CONFIRMED);
- user.setUserConfirmKey(null);
- user.setUserUpdated(new GregorianCalendar());
-
// Update user account
- User updatedUser = this.updateUserData(user);
+ User managedUser = this.updateUserData(user);
+
+ // Update user status and remove confirmation key
+ managedUser.setUserAccountStatus(UserAccountStatus.CONFIRMED);
+ managedUser.setUserConfirmKey(null);
+ managedUser.setUserUpdated(new GregorianCalendar());
// Send out email
- this.sendEmail("User account confirmed", "user_account_confirmed", updatedUser, baseUrl, null); //NOI18N
+ this.sendEmail("User account confirmed", "user_account_confirmed", managedUser, baseUrl, null); //NOI18N
// Trace message
- this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.confirmAccount: updatedUser={1} - EXIT!", this.getClass().getSimpleName(), updatedUser)); //NOI18N
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.confirmAccount: managedUser={1} - EXIT!", this.getClass().getSimpleName(), managedUser)); //NOI18N
// Return updated instance
- return updatedUser;
+ return managedUser;
}
@Override
}
// Call other method
- User updatedUser = this.updateUserData(user);
+ User managedUser = this.updateUserData(user);
+
+ // Update user account
+ managedUser.setUserUpdated(new GregorianCalendar());
// Create history entry
- PasswordHistory entry = new UserPasswordHistory(updatedUser.getUserEncryptedPassword(), updatedUser);
+ PasswordHistory entry = new UserPasswordHistory(user.getUserEncryptedPassword(), managedUser);
// Set created timestamp
entry.setUserPasswordHistoryCreated(new GregorianCalendar());
// Merge user to make sure it is not re-persisted
- User mergedUser = this.getEntityManager().merge(updatedUser);
+ User mergedUser = this.getEntityManager().merge(managedUser);
entry.setUserPasswordHistoryUser(mergedUser);
// Persist it
this.getEntityManager().flush();
// Send email to user
- this.sendEmail("User password change", "user_password_change", updatedUser, baseUrl, null); //NOI18N
+ this.sendEmail("User password change", "user_password_change", managedUser, baseUrl, null); //NOI18N
// Trace message
this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.updateUserPassword: entry.userPasswordHistoryId={1} - EXIT!", this.getClass().getSimpleName(), entry.getUserPasswordHistoryId())); //NOI18N
// Get new registration key
String confirmationKey = this.registerBean.generateConfirmationKey(user);
+ // Debug message
+ this.getLoggerBeanLocal().logDebug(MessageFormat.format("{0}.resendConfirmationLink: confirmationKey={1}", this.getClass().getSimpleName(), confirmationKey)); //NOI18N
+
// Get managed instance
User managedUser = this.getEntityManager().find(LoginUser.class, user.getUserId());
// Send email
// @TODO: Internationlize the subject line somehow
- this.sendEmail("Resend user confirmation link", "user_resend_confirmation_link", user, baseUrl, null); //NOI18N
+ this.sendEmail("Resend user confirmation link", "user_resend_confirmation_link", managedUser, baseUrl, null); //NOI18N
// Log trace message
this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.resendConfirmationLink: managedUser={1} - EXIT!", this.getClass().getSimpleName(), managedUser)); //NOI18N