[jboss-cvs] JBossAS SVN: r84881 - trunk/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:36:02 EST 2009


Author: ALRubinger
Date: 2009-02-27 12:36:01 -0500 (Fri, 27 Feb 2009)
New Revision: 84881

Modified:
   trunk/ejb3/src/main/org/jboss/ejb3/deployers/Ejb3Deployer.java
Log:
[EJBTHREE-1641] Remove references to @Deprecated resources in AS trunk

Modified: trunk/ejb3/src/main/org/jboss/ejb3/deployers/Ejb3Deployer.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/ejb3/deployers/Ejb3Deployer.java	2009-02-27 17:30:21 UTC (rev 84880)
+++ trunk/ejb3/src/main/org/jboss/ejb3/deployers/Ejb3Deployer.java	2009-02-27 17:36:01 UTC (rev 84881)
@@ -42,7 +42,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;
@@ -76,8 +75,6 @@
    
    private PoolFactoryRegistry poolFactoryRegistry;
    
-   private RemoteProxyFactoryRegistry remoteProxyFactoryRegistry;
-   
    private PersistenceManagerFactoryRegistry persistenceManagerFactoryRegistry;
    /** A flag indicating if wars should be scanned for ejbs */
    private boolean scanWars = false;
@@ -177,7 +174,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);
@@ -225,16 +221,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