]> git.mxchange.org Git - jcoreee.git/blobdiff - src/org/mxchange/jcoreee/bean/ejb/BaseEnterpriseBean.java
Continued:
[jcoreee.git] / src / org / mxchange / jcoreee / bean / ejb / BaseEnterpriseBean.java
index 574b90b080bd7b00cac1625f1f91b010ec8c4533..e0d6755864241c23f534942865fabe0c6281f685 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 - 2020 Free Software Foundation
+ * Copyright (C) 2016 - 2022 Free Software Foundation
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -98,6 +98,21 @@ public abstract class BaseEnterpriseBean implements Serializable {
                // Invoke default constructor
                this();
 
+               // Validate all parameter
+               if (null == factoryJndi) {
+                       // Throw IAE
+                       throw new NullPointerException("factoryJndi is null"); //NOI18N
+               } else if (factoryJndi.isEmpty()) {
+                       // Throw IAE
+                       throw new IllegalArgumentException("factoryJndi is empty"); //NOI18N
+               } else if (null == queueJndi) {
+                       // Throw IAE
+                       throw new NullPointerException("queueJndi is null"); //NOI18N
+               } else if (queueJndi.isEmpty()) {
+                       // Throw IAE
+                       throw new IllegalArgumentException("queueJndi is empty"); //NOI18N
+               }
+
                // Try it out
                try {
                        // Get initial context