[jboss-cvs] JBossAS SVN: r84131 - branches/Branch_5_0/webservices/src/main/org/jboss/wsf/container/jboss50/transport.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Feb 12 13:25:34 EST 2009


Author: dimitris at jboss.org
Date: 2009-02-12 13:25:34 -0500 (Thu, 12 Feb 2009)
New Revision: 84131

Modified:
   branches/Branch_5_0/webservices/src/main/org/jboss/wsf/container/jboss50/transport/DynamicEndpointDeploymentAspect.java
Log:
rollback r84127 - it breaks the build

Modified: branches/Branch_5_0/webservices/src/main/org/jboss/wsf/container/jboss50/transport/DynamicEndpointDeploymentAspect.java
===================================================================
--- branches/Branch_5_0/webservices/src/main/org/jboss/wsf/container/jboss50/transport/DynamicEndpointDeploymentAspect.java	2009-02-12 17:38:06 UTC (rev 84130)
+++ branches/Branch_5_0/webservices/src/main/org/jboss/wsf/container/jboss50/transport/DynamicEndpointDeploymentAspect.java	2009-02-12 18:25:34 UTC (rev 84131)
@@ -26,8 +26,6 @@
 
 import javax.xml.ws.WebServiceException;
 
-import org.jboss.classloading.spi.dependency.ClassLoading;
-import org.jboss.classloading.spi.dependency.Module;
 import org.jboss.deployers.client.plugins.deployment.AbstractDeployment;
 import org.jboss.deployers.client.spi.DeployerClient;
 import org.jboss.deployers.client.spi.DeploymentFactory;
@@ -36,10 +34,10 @@
 import org.jboss.deployers.structure.spi.DeploymentUnit;
 import org.jboss.logging.Logger;
 import org.jboss.metadata.web.jboss.JBossWebMetaData;
+import org.jboss.wsf.container.jboss50.deployment.tomcat.WebMetaDataModifier;
 import org.jboss.wsf.spi.deployment.Deployment;
 import org.jboss.wsf.spi.deployment.DeploymentAspect;
 import org.jboss.wsf.spi.deployment.WSFDeploymentException;
-import org.jboss.wsf.container.jboss50.deployment.tomcat.WebMetaDataModifier;
 
 /**
  * Deploy the generated webapp to JBoss
@@ -87,7 +85,6 @@
          mutableAttachments.addAttachment("org.jboss.web.explicitDocBase", "/", String.class);
          mutableAttachments.addAttachment(ClassLoaderFactory.class, new ContextClassLoaderFactory(epLoader));
          mutableAttachments.addAttachment(JBossWebMetaData.class, jbwmd);
-         mutableAttachments.addAttachment(Module.class, ClassLoading.getModuleForClassLoader(epLoader));
          mainDeployer.deploy(deployment);
          
          deployments.put(contextRoot, deployment);
@@ -116,7 +113,6 @@
    private AbstractDeployment createSimpleDeployment(String name)
    {
       AbstractDeployment unit = new AbstractDeployment(name);
-      // There is one top level deployment
       factory.addContext(unit, "");
       return unit;
    }




More information about the jboss-cvs-commits mailing list