[jboss-cvs] JBossAS SVN: r84884 - branches/Branch_5_x/ejb3/src/main/org/jboss/ejb3/deployers.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Feb 27 12:43:44 EST 2009


Author: ALRubinger
Date: 2009-02-27 12:43:44 -0500 (Fri, 27 Feb 2009)
New Revision: 84884

Modified:
   branches/Branch_5_x/ejb3/src/main/org/jboss/ejb3/deployers/Ejb3Deployer.java
Log:
[EJBTHREE-1641] Remove references to @Deprecated resources in AS Branch_5_x (merged from r84881)

Modified: branches/Branch_5_x/ejb3/src/main/org/jboss/ejb3/deployers/Ejb3Deployer.java
===================================================================
--- branches/Branch_5_x/ejb3/src/main/org/jboss/ejb3/deployers/Ejb3Deployer.java	2009-02-27 17:41:07 UTC (rev 84883)
+++ branches/Branch_5_x/ejb3/src/main/org/jboss/ejb3/deployers/Ejb3Deployer.java	2009-02-27 17:43:44 UTC (rev 84884)
@@ -43,7 +43,6 @@
 import org.jboss.ejb3.common.registrar.spi.Ejb3Registrar;
 import org.jboss.ejb3.common.registrar.spi.Ejb3RegistrarLocator;
 import org.jboss.ejb3.pool.PoolFactoryRegistry;
-import org.jboss.ejb3.proxy.factory.RemoteProxyFactoryRegistry;
 import org.jboss.ejb3.resolvers.MessageDestinationReferenceResolver;
 import org.jboss.jpa.resolvers.PersistenceUnitDependencyResolver;
 import org.jboss.kernel.Kernel;
@@ -77,8 +76,6 @@
    
    private PoolFactoryRegistry poolFactoryRegistry;
    
-   private RemoteProxyFactoryRegistry remoteProxyFactoryRegistry;
-   
    private PersistenceManagerFactoryRegistry persistenceManagerFactoryRegistry;
    /** A flag indicating if wars should be scanned for ejbs */
    private boolean scanWars = false;
@@ -178,7 +175,6 @@
          deployment.setPersistenceManagerFactoryRegistry(this.getPersistenceManagerFactoryRegistry());
          // TODO: if the deployment becomes a proper MC bean, it'll get injected by MC.
          deployment.setPersistenceUnitDependencyResolver(persistenceUnitDependencyResolver);
-         deployment.setRemoteProxyFactoryRegistry(this.getRemoteProxyFactoryRegistry());
          deployment.setPoolFactoryRegistry(this.getPoolFactoryRegistry());
          if (scope != null)
             scope.register(deployment);
@@ -226,16 +222,6 @@
       this.poolFactoryRegistry = poolFactoryRegistry;
    }
 
-   public RemoteProxyFactoryRegistry getRemoteProxyFactoryRegistry()
-   {
-      return remoteProxyFactoryRegistry;
-   }
-
-   public void setRemoteProxyFactoryRegistry(RemoteProxyFactoryRegistry remoteProxyFactoryRegistry)
-   {
-      this.remoteProxyFactoryRegistry = remoteProxyFactoryRegistry;
-   }
-
    public PersistenceManagerFactoryRegistry getPersistenceManagerFactoryRegistry()
    {
       return persistenceManagerFactoryRegistry;




More information about the jboss-cvs-commits mailing list