You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by re...@apache.org on 2016/07/11 00:14:25 UTC

[20/33] cxf git commit: Removing redundant spring context

Removing redundant spring context


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/548676e2
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/548676e2
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/548676e2

Branch: refs/heads/master-jaxrs-2.1
Commit: 548676e21a4fb34cdf0f4cd6f3efbf7f7c3be883
Parents: bb5b35d
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Fri Jul 8 12:24:47 2016 +0100
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Fri Jul 8 12:24:47 2016 +0100

----------------------------------------------------------------------
 .../main/resources/sample/rs/client/client.xml  | 33 --------------------
 1 file changed, 33 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/548676e2/distribution/src/main/release/samples/jax_rs/spring_boot/src/main/resources/sample/rs/client/client.xml
----------------------------------------------------------------------
diff --git a/distribution/src/main/release/samples/jax_rs/spring_boot/src/main/resources/sample/rs/client/client.xml b/distribution/src/main/release/samples/jax_rs/spring_boot/src/main/resources/sample/rs/client/client.xml
deleted file mode 100644
index 7ba6911..0000000
--- a/distribution/src/main/release/samples/jax_rs/spring_boot/src/main/resources/sample/rs/client/client.xml
+++ /dev/null
@@ -1,33 +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.
--->
-<beans xmlns="http://www.springframework.org/schema/beans" 
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-       xmlns:jaxrs="http://cxf.apache.org/jaxrs-client"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans
-                           http://www.springframework.org/schema/beans/spring-beans.xsd
-                           http://cxf.apache.org/jaxrs-client http://cxf.apache.org/schemas/jaxrs-client.xsd">
-    <jaxrs:client id="helloServiceClient" 
-        address="http://localhost:8080/services/helloservice/" 
-        serviceClass="sample.rs.service.HelloService"/>
-        
-    <bean class="sample.rs.client.SampleRestClientApplication">
-        <property name="helloService" ref="helloServiceClient"/>
-    </bean>
-</beans>