[jbossws-commits] JBossWS SVN: r9309 - in container/jboss50/branches/jboss501/src/main: resources/jbossws-jboss50.jar/META-INF/services and 1 other directory.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Fri Feb 13 17:31:21 EST 2009


Author: richard.opalka at jboss.com
Date: 2009-02-13 17:31:21 -0500 (Fri, 13 Feb 2009)
New Revision: 9309

Removed:
   container/jboss50/branches/jboss501/src/main/java/org/jboss/wsf/container/jboss50/invocation/WebServiceContextFactoryImpl.java
   container/jboss50/branches/jboss501/src/main/resources/jbossws-jboss50.jar/META-INF/services/org.jboss.wsf.spi.invocation.WebServiceContextFactory
Log:
[JBWS-2491] removing from AS integration

Deleted: container/jboss50/branches/jboss501/src/main/java/org/jboss/wsf/container/jboss50/invocation/WebServiceContextFactoryImpl.java
===================================================================
--- container/jboss50/branches/jboss501/src/main/java/org/jboss/wsf/container/jboss50/invocation/WebServiceContextFactoryImpl.java	2009-02-13 22:07:32 UTC (rev 9308)
+++ container/jboss50/branches/jboss501/src/main/java/org/jboss/wsf/container/jboss50/invocation/WebServiceContextFactoryImpl.java	2009-02-13 22:31:21 UTC (rev 9309)
@@ -1,50 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.wsf.container.jboss50.invocation;
-
-import org.jboss.wsf.spi.invocation.*;
-
-import javax.xml.ws.WebServiceContext;
-import javax.xml.ws.handler.MessageContext;
-
-/**
- * @author Heiko.Braun at jboss.com
- *         Created: Jul 25, 2007
- */
-public class WebServiceContextFactoryImpl extends WebServiceContextFactory
-{
-   public ExtensibleWebServiceContext newWebServiceContext(InvocationType type, MessageContext messageContext)
-   {
-      ExtensibleWebServiceContext context = null;
-
-      //checking for a provided WebServiceContext in the MessageContext; to be removed after EJBTHREE-1604
-      WebServiceContext providedContext = (WebServiceContext)messageContext.get(WebServiceContext.class.toString());
-      if (providedContext != null)
-         context = new WebServiceContextDelegate(providedContext);
-      else if(type.toString().indexOf("EJB")!=-1 || type.toString().indexOf("MDB")!=-1)
-         context = new WebServiceContextEJB(messageContext);
-      else
-         context = new WebServiceContextJSE(messageContext);
-
-      return context;
-   }
-}

Deleted: container/jboss50/branches/jboss501/src/main/resources/jbossws-jboss50.jar/META-INF/services/org.jboss.wsf.spi.invocation.WebServiceContextFactory
===================================================================
--- container/jboss50/branches/jboss501/src/main/resources/jbossws-jboss50.jar/META-INF/services/org.jboss.wsf.spi.invocation.WebServiceContextFactory	2009-02-13 22:07:32 UTC (rev 9308)
+++ container/jboss50/branches/jboss501/src/main/resources/jbossws-jboss50.jar/META-INF/services/org.jboss.wsf.spi.invocation.WebServiceContextFactory	2009-02-13 22:31:21 UTC (rev 9309)
@@ -1 +0,0 @@
-org.jboss.wsf.container.jboss50.invocation.WebServiceContextFactoryImpl
\ No newline at end of file




More information about the jbossws-commits mailing list