<attribute name="jar-20-Extension-Name" value="${manifest.libs.GNU_JPDF_1.7.0.classpath}"/>
<attribute name="jar-21-Extension-Name" value="${manifest.reference.pizzaservice-core.jar}"/>
<attribute name="jar-22-Extension-Name" value="${manifest.reference.pizzaservice-lib.jar}"/>
- <attribute name="jar-23-Extension-Name" value="${manifest.reference.pizzaservice-mailer-jar.jar}"/>
- <attribute name="jar-17-Extension-Name" value="${manifest.file.reference.cdi-api.jar}"/>
+ <attribute name="jar-23-Extension-Name" value="${manifest.reference.pizzaservice-mailer-lib.jar}"/>
+ <attribute name="jar-24-Extension-Name" value="${manifest.file.reference.cdi-api.jar}"/>
</manifest>
</target>
<target depends="compile" name="library-inclusion-in-manifest">
}
@Override
- public void resendConfirmationLink (final User user, final Locale locale, final String baseUrl) throws UserNotFoundException, UserStatusConfirmedException, UserStatusLockedException {
+ public User resendConfirmationLink (final User user, final Locale locale, final String baseUrl) throws UserNotFoundException, UserStatusConfirmedException, UserStatusLockedException {
// Log trace message
this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.resendConfirmationLink: user={1},locale={2},baseUrl={3} - CALLED!", this.getClass().getSimpleName(), user, locale, baseUrl)); //NOI18N
this.sendEmail("Resend user confirmation link", "user_resend_confirmation_link", user, baseUrl, null); //NOI18N
// Log trace message
- this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.resendConfirmationLink: EXIT!", this.getClass().getSimpleName())); //NOI18N
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.resendConfirmationLink: managedUser={1} - EXIT!", this.getClass().getSimpleName(), managedUser)); //NOI18N
+
+ // Return updated instance
+ return managedUser;
}
}