]> git.mxchange.org Git - pizzaservice-core.git/commitdiff
Continued a bit:
authorRoland Häder <roland@mxchange.org>
Wed, 18 May 2016 07:35:30 +0000 (09:35 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 20 May 2016 19:01:19 +0000 (21:01 +0200)
- ignored for i18n
- added trace message

src/org/mxchange/pizzaaplication/database/BasePizzaDatabaseBean.java

index 87f61340ef0e137b9fc4421863bd076941f91374..0e6bff612e8f7f42a3f492fb49b5c1d45c1bd1ba 100644 (file)
@@ -463,24 +463,24 @@ public abstract class BasePizzaDatabaseBean extends BaseDatabaseBean {
         */
        protected void sendEmail (final String subjectLine, final String templateName, final Address emailAddress, final User user) {
                // Trace message
-               this.getLoggerBeanLocal().logTrace(MessageFormat.format("sendEmail: subjectLine={0},templateName={1},emailAddress={3},user={4} - CALLED!", subjectLine, templateName, emailAddress, user));
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("sendEmail: subjectLine={0},templateName={1},emailAddress={3},user={4} - CALLED!", subjectLine, templateName, emailAddress, user)); //NOI18N
 
                // All should be set
                if (null == subjectLine) {
                        // Throw NPE
-                       throw new NullPointerException("subjectLine is null");
+                       throw new NullPointerException("subjectLine is null"); //NOI18N
                } else if (subjectLine.isEmpty()) {
                        // No subject line
-                       throw new IllegalArgumentException("subjectLine is empty");
+                       throw new IllegalArgumentException("subjectLine is empty"); //NOI18N
                } else if (null == templateName) {
                        // Throw NPE
-                       throw new NullPointerException("templateName is null");
+                       throw new NullPointerException("templateName is null"); //NOI18N
                } else if (templateName.isEmpty()) {
                        // No template name
-                       throw new IllegalArgumentException("templateName is empty");
+                       throw new IllegalArgumentException("templateName is empty"); //NOI18N
                } else if (null == emailAddress) {
                        // Throw NPE
-                       throw new NullPointerException("emailAddress is null");
+                       throw new NullPointerException("emailAddress is null"); //NOI18N
                }
 
                // Prepare mail wrapper
@@ -508,6 +508,9 @@ public abstract class BasePizzaDatabaseBean extends BaseDatabaseBean {
                        // Throw again
                        throw new EJBException(ex);
                }
+
+               // Trace message
+               this.getLoggerBeanLocal().logTrace("sendEmail: EXIT!"); //NOI18N
        }
 
        /**