[jbossws-commits] JBossWS SVN: r12709 - stack/cxf/branches/cxf-2.3/modules/server/src/main/java/org/jboss/wsf/stack/cxf/transport.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Mon Aug 2 02:15:12 EDT 2010


Author: alessio.soldano at jboss.com
Date: 2010-08-02 02:15:12 -0400 (Mon, 02 Aug 2010)
New Revision: 12709

Removed:
   stack/cxf/branches/cxf-2.3/modules/server/src/main/java/org/jboss/wsf/stack/cxf/transport/TomcatHTTPDestination.java
   stack/cxf/branches/cxf-2.3/modules/server/src/main/java/org/jboss/wsf/stack/cxf/transport/TomcatHTTPTransportFactory.java
Log:
Removing classes not used anymore


Deleted: stack/cxf/branches/cxf-2.3/modules/server/src/main/java/org/jboss/wsf/stack/cxf/transport/TomcatHTTPDestination.java
===================================================================
--- stack/cxf/branches/cxf-2.3/modules/server/src/main/java/org/jboss/wsf/stack/cxf/transport/TomcatHTTPDestination.java	2010-08-02 05:55:00 UTC (rev 12708)
+++ stack/cxf/branches/cxf-2.3/modules/server/src/main/java/org/jboss/wsf/stack/cxf/transport/TomcatHTTPDestination.java	2010-08-02 06:15:12 UTC (rev 12709)
@@ -1,55 +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.transport;
-
-import java.io.IOException;
-import java.util.logging.Logger;
-
-import org.apache.cxf.Bus;
-import org.apache.cxf.common.logging.LogUtils;
-import org.apache.cxf.service.model.EndpointInfo;
-import org.apache.cxf.transport.http.AbstractHTTPDestination;
-
-public class TomcatHTTPDestination extends AbstractHTTPDestination
-{
-   private static final Logger LOG = LogUtils.getL7dLogger(TomcatHTTPDestination.class);
-   
-   private TomcatHTTPTransportFactory transportFactory;
-   
-   public TomcatHTTPDestination(Bus b, TomcatHTTPTransportFactory ci, EndpointInfo ei, boolean dp) throws IOException
-   {
-      super(b, ei, dp);
-      this.transportFactory = ci;
-   }
-
-   @Override
-   protected Logger getLogger()
-   {
-      return LOG;
-   }
-   
-   @Override
-   public void shutdown() {
-       transportFactory.removeDestination(endpointInfo);
-       super.shutdown();
-   }
-}

Deleted: stack/cxf/branches/cxf-2.3/modules/server/src/main/java/org/jboss/wsf/stack/cxf/transport/TomcatHTTPTransportFactory.java
===================================================================
--- stack/cxf/branches/cxf-2.3/modules/server/src/main/java/org/jboss/wsf/stack/cxf/transport/TomcatHTTPTransportFactory.java	2010-08-02 05:55:00 UTC (rev 12708)
+++ stack/cxf/branches/cxf-2.3/modules/server/src/main/java/org/jboss/wsf/stack/cxf/transport/TomcatHTTPTransportFactory.java	2010-08-02 06:15:12 UTC (rev 12709)
@@ -1,76 +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.transport;
-
-import java.io.IOException;
-import java.util.HashMap;
-import java.util.Map;
-
-import org.apache.cxf.service.model.EndpointInfo;
-import org.apache.cxf.transport.Destination;
-import org.apache.cxf.transport.DestinationFactory;
-import org.apache.cxf.transport.http.AbstractHTTPTransportFactory;
-
-public class TomcatHTTPTransportFactory extends AbstractHTTPTransportFactory implements DestinationFactory
-{
-   private Map<String, TomcatHTTPDestination> destinations = new HashMap<String, TomcatHTTPDestination>();
-
-   public TomcatHTTPTransportFactory()
-   {
-      super();
-   }
-
-   public Destination getDestination(EndpointInfo endpointInfo) throws IOException
-   {
-      String addr = endpointInfo.getAddress();
-      TomcatHTTPDestination destination = destinations.get(addr);
-      if (destination == null)
-      {
-         destination = createDestination(endpointInfo);
-      }
-
-      return destination;
-   }
-
-   private synchronized TomcatHTTPDestination createDestination(EndpointInfo endpointInfo) throws IOException
-   {
-
-      TomcatHTTPDestination destination = destinations.get(endpointInfo.getAddress());
-      if (destination == null)
-      {
-         destination = new TomcatHTTPDestination(getBus(), this, endpointInfo, true);
-
-         destinations.put(endpointInfo.getAddress(), destination);
-
-         configure(destination);
-      }
-      return destination;
-   }
-
-   /**
-    * This function removes the destination for a particular endpoint.
-    */
-   void removeDestination(EndpointInfo ei)
-   {
-      destinations.remove(ei.getAddress());
-   }
-}



More information about the jbossws-commits mailing list