[CXF-6872] Remove redundant blueprint.xml, closes #128
Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/bfc3d0a4 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/bfc3d0a4 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/bfc3d0a4 Branch: refs/heads/master-jaxrs-2.1 Commit: bfc3d0a4d61c4461b7ccf05379a0fe33e66a430d Parents: ee2fb98 Author: Christian Schneider <[email protected]> Authored: Tue Apr 19 12:17:00 2016 +0200 Committer: Christian Schneider <[email protected]> Committed: Tue Apr 19 13:28:24 2016 +0200 ---------------------------------------------------------------------- .../OSGI-INF/blueprint/cxf-http-async.xml | 56 -------------------- 1 file changed, 56 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/bfc3d0a4/rt/transports/http-hc/src/main/resources/OSGI-INF/blueprint/cxf-http-async.xml ---------------------------------------------------------------------- diff --git a/rt/transports/http-hc/src/main/resources/OSGI-INF/blueprint/cxf-http-async.xml b/rt/transports/http-hc/src/main/resources/OSGI-INF/blueprint/cxf-http-async.xml deleted file mode 100644 index 567676a..0000000 --- a/rt/transports/http-hc/src/main/resources/OSGI-INF/blueprint/cxf-http-async.xml +++ /dev/null @@ -1,56 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- -Licensed to the Apache Software Foundation (ASF) under one -or more contributor license agreements. See the NOTICE file -distributed with this work for additional information -regarding copyright ownership. The ASF licenses this file -to you under the Apache License, Version 2.0 (the -"License"); you may not use this file except in compliance -with the License. You may obtain a copy of the License at - -http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, -software distributed under the License is distributed on an -"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, either express or implied. See the License for the -specific language governing permissions and limitations -under the License. ---> -<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0" xsi:schemaLocation=" http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd"> - <cm:property-placeholder persistent-id="org.apache.cxf.transport.http.async" id="cxfAsyncOsgiProperties"> - <cm:default-properties> - <!-- -1 sets it to the number of available processors --> - <cm:property name="org.apache.cxf.transport.http.async.ioThreadCount" value="-1"/> - <cm:property name="org.apache.cxf.transport.http.async.interestOpQueued" value="false"/> - <cm:property name="org.apache.cxf.transport.http.async.selectInterval" value="1000"/> - <cm:property name="org.apache.cxf.transport.http.async.TCP_NODELAY" value="true"/> - <cm:property name="org.apache.cxf.transport.http.async.SO_KEEPALIVE" value="false"/> - <cm:property name="org.apache.cxf.transport.http.async.SO_LINGER" value="-1"/> - <cm:property name="org.apache.cxf.transport.http.async.SO_TIMEOUT" value="0"/> - <cm:property name="org.apache.cxf.transport.http.async.usePolicy" value="ASYNC_ONLY"/> - <cm:property name="org.apache.cxf.transport.http.async.MAX_CONNECTIONS" value="5000"/> - <cm:property name="org.apache.cxf.transport.http.async.CONNECTION_TTL" value="60000"/> - <cm:property name="org.apache.cxf.transport.http.async.MAX_PER_HOST_CONNECTIONS" value="1000"/> - </cm:default-properties> - </cm:property-placeholder> - <bean id="osgiAsyncCondFact" class="org.apache.cxf.transport.http.asyncclient.AsyncHTTPConduitFactory" destroy-method="shutdown"> - <argument> - <map> - <entry key="org.apache.cxf.transport.http.async.ioThreadCount" value="${org.apache.cxf.transport.http.async.ioThreadCount}"/> - <entry key="org.apache.cxf.transport.http.async.interestOpQueued" value="${org.apache.cxf.transport.http.async.interestOpQueued}"/> - <entry key="org.apache.cxf.transport.http.async.selectInterval" value="${org.apache.cxf.transport.http.async.selectInterval}"/> - <entry key="org.apache.cxf.transport.http.async.TCP_NODELAY" value="${org.apache.cxf.transport.http.async.TCP_NODELAY}"/> - <entry key="org.apache.cxf.transport.http.async.SO_KEEPALIVE" value="${org.apache.cxf.transport.http.async.SO_KEEPALIVE}"/> - <entry key="org.apache.cxf.transport.http.async.SO_LINGER" value="${org.apache.cxf.transport.http.async.SO_LINGER}"/> - <entry key="org.apache.cxf.transport.http.async.SO_TIMEOUT" value="${org.apache.cxf.transport.http.async.SO_TIMEOUT}"/> - <entry key="org.apache.cxf.transport.http.async.usePolicy" value="${org.apache.cxf.transport.http.async.usePolicy}"/> - <entry key="org.apache.cxf.transport.http.async.CONNECTION_TTL" value="${org.apache.cxf.transport.http.async.CONNECTION_TTL}"/> - <entry key="org.apache.cxf.transport.http.async.MAX_CONNECTIONS" value="${org.apache.cxf.transport.http.async.MAX_CONNECTIONS}"/> - <entry key="org.apache.cxf.transport.http.async.MAX_PER_HOST_CONNECTIONS" value="${org.apache.cxf.transport.http.async.MAX_PER_HOST_CONNECTIONS}"/> - </map> - </argument> - <cm:managed-properties persistent-id="org.apache.cxf.transport.http.async" update-strategy="component-managed" update-method="update"/> - </bean> - <service ref="osgiAsyncCondFact" interface="org.apache.cxf.transport.http.HTTPConduitFactory"/> -</blueprint>
