[jboss-cvs] JBossAS SVN: r79904 - in projects/ejb3/trunk: core and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Oct 21 19:27:25 EDT 2008


Author: ALRubinger
Date: 2008-10-21 19:27:25 -0400 (Tue, 21 Oct 2008)
New Revision: 79904

Modified:
   projects/ejb3/trunk/build/pom.xml
   projects/ejb3/trunk/core/pom.xml
   projects/ejb3/trunk/core/src/main/java/org/jboss/injection/WebServiceContextProxy.java
Log:
[EJBTHREE-1536] Removed references to javax/xml/ws/EndpointReference no longer in WS SPI

Modified: projects/ejb3/trunk/build/pom.xml
===================================================================
--- projects/ejb3/trunk/build/pom.xml	2008-10-21 23:19:52 UTC (rev 79903)
+++ projects/ejb3/trunk/build/pom.xml	2008-10-21 23:27:25 UTC (rev 79904)
@@ -112,7 +112,6 @@
     <version.org.jboss.microcontainer_jboss-container>2.0.0.CR2</version.org.jboss.microcontainer_jboss-container>
     <version.org.jboss.microcontainer_jboss-kernel>2.0.0.CR2</version.org.jboss.microcontainer_jboss-kernel>
     <version.org.jboss.ws_jbossws-spi>1.0.3.GA</version.org.jboss.ws_jbossws-spi>
-    <version.org.jboss.ws.native.jbossws-native-jaxws-ext>3.0.4.GA</version.org.jboss.ws.native.jbossws-native-jaxws-ext>
    
     <!-- Miscellaneous -->
     <jvmargs />
@@ -451,12 +450,6 @@
         <version>${version.org.jboss.ws_jbossws-spi}</version>
       </dependency>
 
-      <dependency>
-        <groupId>org.jboss.ws.native</groupId>
-        <artifactId>jbossws-native-jaxws-ext</artifactId>
-        <version>${version.org.jboss.ws.native.jbossws-native-jaxws-ext}</version>
-      </dependency>
-
       <!-- JBoss Test -->
       <dependency>
         <groupId>org.jboss.test</groupId>

Modified: projects/ejb3/trunk/core/pom.xml
===================================================================
--- projects/ejb3/trunk/core/pom.xml	2008-10-21 23:19:52 UTC (rev 79903)
+++ projects/ejb3/trunk/core/pom.xml	2008-10-21 23:27:25 UTC (rev 79904)
@@ -575,11 +575,6 @@
     </dependency>
 
     <dependency>
-       <groupId>org.jboss.ws.native</groupId>
-       <artifactId>jbossws-native-jaxws-ext</artifactId>
-    </dependency>
-    
-    <dependency>
       <groupId>quartz</groupId>
       <artifactId>quartz</artifactId>
       <version>1.6.0</version>

Modified: projects/ejb3/trunk/core/src/main/java/org/jboss/injection/WebServiceContextProxy.java
===================================================================
--- projects/ejb3/trunk/core/src/main/java/org/jboss/injection/WebServiceContextProxy.java	2008-10-21 23:19:52 UTC (rev 79903)
+++ projects/ejb3/trunk/core/src/main/java/org/jboss/injection/WebServiceContextProxy.java	2008-10-21 23:27:25 UTC (rev 79904)
@@ -21,12 +21,10 @@
  */
 package org.jboss.injection;
 
-import org.w3c.dom.Element;
+import java.security.Principal;
 
-import javax.xml.ws.EndpointReference;
 import javax.xml.ws.WebServiceContext;
 import javax.xml.ws.handler.MessageContext;
-import java.security.Principal;
 
 /**
  * WebServiceContext proxy that delegates to a ThreadLocal.
@@ -62,6 +60,7 @@
    }
 
    // These are no longer in the WebServiceContext API?
+   // EJBTHREE-1536
 //   public EndpointReference getEndpointReference(Element... elements)
 //   {
 //      return delegate().getEndpointReference(elements);
@@ -96,14 +95,16 @@
          throw EX;
       }
 
-      public EndpointReference getEndpointReference(Element... elements)
-      {
-         throw EX;
-      }
-
-      public <T extends EndpointReference> T getEndpointReference(Class<T> aClass, Element... elements)
-      {
-         throw EX;
-      }
+      // These are no longer in the WebServiceContext API?
+      // EJBTHREE-1536
+//      public EndpointReference getEndpointReference(Element... elements)
+//      {
+//         throw EX;
+//      }
+//
+//      public <T extends EndpointReference> T getEndpointReference(Class<T> aClass, Element... elements)
+//      {
+//         throw EX;
+//      }
    }
 }




More information about the jboss-cvs-commits mailing list