[jboss-cvs] JBossAS SVN: r57601 - branches/JEE5_TCK/ejb3/src/main/org/jboss/ejb3/security

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Oct 12 16:47:17 EDT 2006


Author: anil.saldhana at jboss.com
Date: 2006-10-12 16:47:17 -0400 (Thu, 12 Oct 2006)
New Revision: 57601

Modified:
   branches/JEE5_TCK/ejb3/src/main/org/jboss/ejb3/security/RunAsSecurityInterceptorFactory.java
Log:
EJBTHREE-740: do not return null interceptor

Modified: branches/JEE5_TCK/ejb3/src/main/org/jboss/ejb3/security/RunAsSecurityInterceptorFactory.java
===================================================================
--- branches/JEE5_TCK/ejb3/src/main/org/jboss/ejb3/security/RunAsSecurityInterceptorFactory.java	2006-10-12 20:43:00 UTC (rev 57600)
+++ branches/JEE5_TCK/ejb3/src/main/org/jboss/ejb3/security/RunAsSecurityInterceptorFactory.java	2006-10-12 20:47:17 UTC (rev 57601)
@@ -81,10 +81,10 @@
       Object domain = null;
       EJBContainer container = (EJBContainer)advisor;
       RunAsIdentity runAsIdentity = getRunAsIdentity(container);
-      if (runAsIdentity == null)
+      /*if (runAsIdentity == null)
       {
          return new NullInterceptor();
-      }
+      }*/
       try
       {
          InitialContext ctx = container.getInitialContext();




More information about the jboss-cvs-commits mailing list