[jboss-cvs] JBossAS SVN: r71850 - trunk/ejb3/src/main/org/jboss/ejb3/iiop.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Apr 9 11:32:57 EDT 2008


Author: ALRubinger
Date: 2008-04-09 11:32:57 -0400 (Wed, 09 Apr 2008)
New Revision: 71850

Modified:
   trunk/ejb3/src/main/org/jboss/ejb3/iiop/IORFactory.java
Log:
[EJBTHREE-1253] Make IORFactory adhere to new contract, throw NYI for now

Modified: trunk/ejb3/src/main/org/jboss/ejb3/iiop/IORFactory.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/ejb3/iiop/IORFactory.java	2008-04-09 15:13:21 UTC (rev 71849)
+++ trunk/ejb3/src/main/org/jboss/ejb3/iiop/IORFactory.java	2008-04-09 15:32:57 UTC (rev 71850)
@@ -54,6 +54,7 @@
 import org.jboss.mx.util.MBeanProxyExt;
 import org.jboss.proxy.ejb.handle.HandleDelegateImpl;
 import org.jboss.system.Registry;
+import org.jboss.util.NotImplementedException;
 import org.jboss.web.WebClassLoader;
 import org.jboss.web.WebServiceMBean;
 import org.omg.CORBA.Any;
@@ -432,4 +433,14 @@
       // that's why this method is at the end
       return NamingContextExtHelper.narrow((org.omg.CORBA.Object) initialContext.lookup("java:/" + org.jboss.iiop.CorbaNamingService.NAMING_NAME));
    }
+
+   public Object createProxyBusiness()
+   {
+      throw new NotImplementedException();
+   }
+
+   public Object createProxyBusiness(Object arg0)
+   {
+      throw new NotImplementedException();
+   }
 }
\ No newline at end of file




More information about the jboss-cvs-commits mailing list