]> 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 f57faf055544b9951c9989ed13361b303ec0270a..e0d6755864241c23f534942865fabe0c6281f685 100644 (file)
@@ -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