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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Oct 23 06:18:30 EDT 2008


Author: wolfc
Date: 2008-10-23 06:18:30 -0400 (Thu, 23 Oct 2008)
New Revision: 79968

Modified:
   projects/ejb3/trunk/core/src/main/java/org/jboss/injection/WebServiceContextProxy.java
Log:
EJBTHREE-1536: reverted to far, reapplied 73063

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-23 09:55:32 UTC (rev 79967)
+++ projects/ejb3/trunk/core/src/main/java/org/jboss/injection/WebServiceContextProxy.java	2008-10-23 10:18:30 UTC (rev 79968)
@@ -21,14 +21,14 @@
  */
 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.WebServiceException;
 import javax.xml.ws.handler.MessageContext;
-import java.security.Principal;
 
+import org.w3c.dom.Element;
+
 /**
  * WebServiceContext proxy that delegates to a ThreadLocal.
  *
@@ -79,7 +79,7 @@
 
    private static final class DefaultDelagate implements WebServiceContext
    {
-      private final RuntimeException EX = new WebServiceException("WebServiceContext not available");
+      private final RuntimeException EX = new IllegalStateException("WebServiceContext not available");
 
       public MessageContext getMessageContext()
       {




More information about the jboss-cvs-commits mailing list