[jboss-cvs] JBossAS SVN: r79903 - projects/ejb3/trunk/core/src/main/java/org/jboss/injection.

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


Author: ALRubinger
Date: 2008-10-21 19:19:52 -0400 (Tue, 21 Oct 2008)
New Revision: 79903

Modified:
   projects/ejb3/trunk/core/src/main/java/org/jboss/injection/WebServiceContextProxy.java
Log:
[EJBTHREE-1536] Reflect updates to WS SPI in WebServiceContextProxy

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:13 UTC (rev 79902)
+++ projects/ejb3/trunk/core/src/main/java/org/jboss/injection/WebServiceContextProxy.java	2008-10-21 23:19:52 UTC (rev 79903)
@@ -61,16 +61,17 @@
       return delegate().isUserInRole(string);
    }
 
-   public EndpointReference getEndpointReference(Element... elements)
-   {
-      return delegate().getEndpointReference(elements);
-   }
+   // These are no longer in the WebServiceContext API?
+//   public EndpointReference getEndpointReference(Element... elements)
+//   {
+//      return delegate().getEndpointReference(elements);
+//   }
+//
+//   public <T extends EndpointReference> T getEndpointReference(Class<T> aClass, Element... elements)
+//   {
+//      return delegate().getEndpointReference(aClass, elements);
+//   }
 
-   public <T extends EndpointReference> T getEndpointReference(Class<T> aClass, Element... elements)
-   {
-      return delegate().getEndpointReference(aClass, elements);
-   }
-
    private WebServiceContext delegate()
    {
       return (msgContextAssoc.get() != null) ? msgContextAssoc.get() : NOOP;




More information about the jboss-cvs-commits mailing list