[jbossws-commits] JBossWS SVN: r8581 - in stack/native/branches/ropalka/modules/core/src/main/java/org/jboss: wsf/stack/jbws and 1 other directory.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Wed Oct 29 10:21:17 EDT 2008


Author: richard.opalka at jboss.com
Date: 2008-10-29 10:21:17 -0400 (Wed, 29 Oct 2008)
New Revision: 8581

Modified:
   stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/ws/extensions/wsrm/server/RMDeploymentAspect.java
   stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/EagerInitializeDeploymentAspect.java
   stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/EventingDeploymentAspect.java
   stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/JAXBIntroDeploymentAspect.java
   stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/PublishContractDeploymentAspect.java
   stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/ServiceEndpointInvokerDeploymentAspect.java
   stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/UnifiedMetaDataDeploymentAspect.java
Log:
[JBWS-2338] removing WSFRuntime abstraction

Modified: stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/ws/extensions/wsrm/server/RMDeploymentAspect.java
===================================================================
--- stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/ws/extensions/wsrm/server/RMDeploymentAspect.java	2008-10-29 14:12:45 UTC (rev 8580)
+++ stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/ws/extensions/wsrm/server/RMDeploymentAspect.java	2008-10-29 14:21:17 UTC (rev 8581)
@@ -28,7 +28,6 @@
 import org.jboss.wsf.spi.deployment.DeploymentAspect;
 import org.jboss.wsf.spi.deployment.Endpoint;
 import org.jboss.wsf.spi.invocation.InvocationHandler;
-import org.jboss.wsf.spi.WSFRuntime;
 
 /**
  * Registers RMInvocationHandler if WS-RM is detected
@@ -41,7 +40,7 @@
 {
 
    @Override
-   public final void start(Deployment dep, WSFRuntime runtime)
+   public final void start(Deployment dep)
    {
       for (Endpoint ep : dep.getService().getEndpoints())
       {
@@ -61,7 +60,7 @@
    }
    
    @Override
-   public final void destroy(Deployment dep, WSFRuntime runtime)
+   public final void destroy(Deployment dep)
    {
       for (Endpoint ep : dep.getService().getEndpoints())
       {

Modified: stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/EagerInitializeDeploymentAspect.java
===================================================================
--- stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/EagerInitializeDeploymentAspect.java	2008-10-29 14:12:45 UTC (rev 8580)
+++ stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/EagerInitializeDeploymentAspect.java	2008-10-29 14:21:17 UTC (rev 8581)
@@ -24,7 +24,6 @@
 import org.jboss.ws.metadata.umdm.UnifiedMetaData;
 import org.jboss.wsf.spi.deployment.DeploymentAspect;
 import org.jboss.wsf.spi.deployment.Deployment;
-import org.jboss.wsf.spi.WSFRuntime;
 
 /**
  * A deployer that initializes the UMDM 
@@ -35,7 +34,7 @@
 public class EagerInitializeDeploymentAspect extends DeploymentAspect
 {
    @Override
-   public void start(Deployment dep, WSFRuntime runtime)
+   public void start(Deployment dep)
    {
       UnifiedMetaData umd = dep.getAttachment(UnifiedMetaData.class);
       if (umd == null)

Modified: stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/EventingDeploymentAspect.java
===================================================================
--- stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/EventingDeploymentAspect.java	2008-10-29 14:12:45 UTC (rev 8580)
+++ stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/EventingDeploymentAspect.java	2008-10-29 14:21:17 UTC (rev 8581)
@@ -30,7 +30,6 @@
 import org.jboss.wsf.spi.deployment.DeploymentAspect;
 import org.jboss.wsf.spi.deployment.Deployment;
 import org.jboss.wsf.spi.deployment.Endpoint;
-import org.jboss.wsf.spi.WSFRuntime;
 
 /**
  * A deployer that creates event sources and register them with the 
@@ -42,7 +41,7 @@
 public class EventingDeploymentAspect extends DeploymentAspect
 {
    @Override
-   public void start(Deployment dep, WSFRuntime runtime)
+   public void start(Deployment dep)
    {
       for (Endpoint ep : dep.getService().getEndpoints())
       {
@@ -71,7 +70,7 @@
    }
 
    @Override
-   public void destroy(Deployment dep, WSFRuntime runtime)
+   public void destroy(Deployment dep)
    {
       for (Endpoint ep : dep.getService().getEndpoints())
       {

Modified: stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/JAXBIntroDeploymentAspect.java
===================================================================
--- stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/JAXBIntroDeploymentAspect.java	2008-10-29 14:12:45 UTC (rev 8580)
+++ stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/JAXBIntroDeploymentAspect.java	2008-10-29 14:21:17 UTC (rev 8581)
@@ -29,7 +29,6 @@
 import org.jboss.ws.core.jaxws.JAXBBindingCustomization;
 import org.jboss.wsf.spi.binding.BindingCustomization;
 import org.jboss.wsf.spi.deployment.*;
-import org.jboss.wsf.spi.WSFRuntime;
 
 import java.io.IOException;
 import java.io.InputStream;
@@ -43,7 +42,7 @@
    private static final String META_INF_JAXB_INTROS_XML = "META-INF/jaxb-intros.xml";
    private static final String WEB_INF_JAXB_INTROS_XML = "WEB-INF/jaxb-intros.xml";
 
-   public void start(Deployment deployment, WSFRuntime runtime)
+   public void start(Deployment deployment)
    {
 
       // assert ArchiveDeployment

Modified: stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/PublishContractDeploymentAspect.java
===================================================================
--- stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/PublishContractDeploymentAspect.java	2008-10-29 14:12:45 UTC (rev 8580)
+++ stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/PublishContractDeploymentAspect.java	2008-10-29 14:21:17 UTC (rev 8581)
@@ -28,7 +28,6 @@
 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.spi.WSFRuntime;
 
 /**
  * A deployer that publishes the wsdl 
@@ -39,7 +38,7 @@
 public class PublishContractDeploymentAspect extends DeploymentAspect
 {
    @Override
-   public void start(Deployment dep, WSFRuntime runtime)
+   public void start(Deployment dep)
    {
       UnifiedMetaData umd = dep.getAttachment(UnifiedMetaData.class);
       if (umd == null)

Modified: stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/ServiceEndpointInvokerDeploymentAspect.java
===================================================================
--- stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/ServiceEndpointInvokerDeploymentAspect.java	2008-10-29 14:12:45 UTC (rev 8580)
+++ stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/ServiceEndpointInvokerDeploymentAspect.java	2008-10-29 14:21:17 UTC (rev 8581)
@@ -27,7 +27,6 @@
 import org.jboss.wsf.spi.deployment.Deployment;
 import org.jboss.wsf.spi.deployment.Endpoint;
 import org.jboss.wsf.spi.deployment.Deployment.DeploymentType;
-import org.jboss.wsf.spi.WSFRuntime;
 
 /**
  * A deployer that associates the ServiceEndpointInvoker with the endpoint 
@@ -38,7 +37,7 @@
 public class ServiceEndpointInvokerDeploymentAspect extends DeploymentAspect
 {
    @Override
-   public void start(Deployment dep, WSFRuntime runtime)
+   public void start(Deployment dep)
    {
       for (Endpoint ep : dep.getService().getEndpoints())
       {

Modified: stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/UnifiedMetaDataDeploymentAspect.java
===================================================================
--- stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/UnifiedMetaDataDeploymentAspect.java	2008-10-29 14:12:45 UTC (rev 8580)
+++ stack/native/branches/ropalka/modules/core/src/main/java/org/jboss/wsf/stack/jbws/UnifiedMetaDataDeploymentAspect.java	2008-10-29 14:21:17 UTC (rev 8581)
@@ -33,7 +33,6 @@
 import org.jboss.wsf.spi.deployment.DeploymentAspect;
 import org.jboss.wsf.spi.deployment.Endpoint;
 import org.jboss.wsf.spi.deployment.Deployment.DeploymentType;
-import org.jboss.wsf.spi.WSFRuntime;
 
 /**
  * A deployer that builds the UnifiedDeploymentInfo 
@@ -44,7 +43,7 @@
 public class UnifiedMetaDataDeploymentAspect extends DeploymentAspect
 {
    @Override
-   public void start(Deployment dep, WSFRuntime runtime)
+   public void start(Deployment dep)
    {
       UnifiedMetaData umd = dep.getAttachment(UnifiedMetaData.class);
       if (umd == null)




More information about the jbossws-commits mailing list