You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by bu...@apache.org on 2012/04/30 10:48:39 UTC

svn commit: r815107 - in /websites/production/cxf/content: cache/docs.pageCache docs/jax-rs-client-api.html

Author: buildbot
Date: Mon Apr 30 08:48:39 2012
New Revision: 815107

Log:
Production update by buildbot for cxf

Modified:
    websites/production/cxf/content/cache/docs.pageCache
    websites/production/cxf/content/docs/jax-rs-client-api.html

Modified: websites/production/cxf/content/cache/docs.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/cxf/content/docs/jax-rs-client-api.html
==============================================================================
--- websites/production/cxf/content/docs/jax-rs-client-api.html (original)
+++ websites/production/cxf/content/docs/jax-rs-client-api.html Mon Apr 30 08:48:39 2012
@@ -208,7 +208,8 @@ BookStore proxy = JAXRSClientFactory.cre
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-java">
 BookStore proxy = JAXRSClientFactory.create(<span class="code-quote">"http:<span class="code-comment">//books"</span>, BookStore.class);
-</span>WebClient client = WebClient.client(proxy);
+</span>Client client = WebClient.client(proxy);
+WebClient httpClient = WebClient.fromClient(client);
 <span class="code-comment">// <span class="code-keyword">continue</span> using the http client    </span>
 </pre>
 </div></div>
@@ -217,9 +218,9 @@ BookStore proxy = JAXRSClientFactory.cre
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-java">
-BookStore proxy = JAXRSClientFactory.create(<span class="code-quote">"http:<span class="code-comment">//books"</span>, BookStore.class);
-</span>WebClient client = WebClient.client(proxy);
-BookStore proxy = JAXRSClientFactory.fromClient(client, BookStore.class);
+BookStore proxy1 = JAXRSClientFactory.create(<span class="code-quote">"http:<span class="code-comment">//books"</span>, BookStore.class);
+</span>Client client = WebClient.client(proxy1);
+BookStore proxy2 = JAXRSClientFactory.fromClient(client, BookStore.class);
 </pre>
 </div></div>