[jbossws-commits] JBossWS SVN: r8392 - stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Wed Oct 8 09:54:30 EDT 2008


Author: richard.opalka at jboss.com
Date: 2008-10-08 09:54:30 -0400 (Wed, 08 Oct 2008)
New Revision: 8392

Removed:
   stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/AspectizedEndpointServlet.java
   stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/EndpointServlet.java
Log:
[JBWS-2246][JBWS-2264][JBAS-5732] CXF integration uses CXFServletExt for handling WS requests

Deleted: stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/AspectizedEndpointServlet.java
===================================================================
--- stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/AspectizedEndpointServlet.java	2008-10-08 13:50:40 UTC (rev 8391)
+++ stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/AspectizedEndpointServlet.java	2008-10-08 13:54:30 UTC (rev 8392)
@@ -1,46 +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.stack.cxf;
-
-import org.jboss.wsf.framework.deployment.AbstractAspectizedEndpointServlet;
-import org.jboss.wsf.spi.management.EndpointResolver;
-
-/**
- * An aspectized CXF endpoint servlet that is installed for every web service endpoint on AS 5.x series
- * @author richard.opalka at jboss.com
- */
-public final class AspectizedEndpointServlet extends AbstractAspectizedEndpointServlet
-{
-
-   /**
-    * Provides CXF specific endpoint resolver
-    * @param servletContext servlet context
-    * @param servletName servlet name
-    * @return new CXF specific endpoint resolver
-    */
-   @Override
-   protected final EndpointResolver newEndpointResolver(String servletContext, String servletName)
-   {
-      return new WebAppResolver(servletContext, servletName);
-   }
-
-}

Deleted: stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/EndpointServlet.java
===================================================================
--- stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/EndpointServlet.java	2008-10-08 13:50:40 UTC (rev 8391)
+++ stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/EndpointServlet.java	2008-10-08 13:54:30 UTC (rev 8392)
@@ -1,48 +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.stack.cxf;
-
-import org.jboss.wsf.spi.management.EndpointResolver;
-import org.jboss.wsf.framework.deployment.AbstractEndpointServlet;
-
-/**
- * A CXF endpoint servlet that is installed for every web service endpoint on AS 4.2.x series
- * @author thomas.diesler at jboss.com
- * @author heiko.braun at jboss.com
- * @author richard.opalka at jboss.com
- */
-public final class EndpointServlet extends AbstractEndpointServlet
-{
-
-   /**
-    * Provides CXF specific endpoint resolver
-    * @param servletContext servlet context
-    * @param servletName servlet name
-    * @return new CXF specific endpoint resolver
-    */
-   @Override
-   protected final EndpointResolver newEndpointResolver(String servletContext, String servletName)
-   {
-      return new WebAppResolver(servletContext, servletName);
-   }
-   
-}




More information about the jbossws-commits mailing list