Author: buildbot
Date: Tue Mar 12 10:48:05 2013
New Revision: 854113
Log:
Production update by buildbot for cxf
Modified:
websites/production/cxf/content/cache/docs.pageCache
websites/production/cxf/content/docs/jax-rs-advanced-features.html
Modified: websites/production/cxf/content/cache/docs.pageCache
==============================================================================
Binary files - no diff available.
Modified: websites/production/cxf/content/docs/jax-rs-advanced-features.html
==============================================================================
--- websites/production/cxf/content/docs/jax-rs-advanced-features.html
(original)
+++ websites/production/cxf/content/docs/jax-rs-advanced-features.html Tue Mar
12 10:48:05 2013
@@ -260,7 +260,7 @@ the server-side caching.</p>
<p>One of the latest CXF JAX-RS extensions allows users to provide external
models with the information which the runtime typically gets from JAX-RS
annotations like @Path, @PathParam, @Consumes, @Produces, etc.<br clear="none">
There might be a number of cases when it can be advantageous to describe how a
given resource can be exposed as a RESTful service without actually modifying
this resource. For example, when new dynamic interface implementations are
registered, when no source code can be modified, when the cost of future
updates (for ex, modifying the value of @Path annotations) is considered to be
expensive, etc.</p>
-<p>User model schema type is described in the <a shape="rect"
class="external-link"
href="http://svn.apache.org/repos/asf/cxf/trunk/rt/frontend/jaxrs/src/main/resources/schemas/jaxrs.xsd">jaxrs.xsd</a>.
</p>
+<p>User model schema type is described in the <a shape="rect"
class="external-link"
href="http://svn.apache.org/repos/asf/cxf/trunk/rt/frontend/jaxrs/src/main/resources/schemas/jaxrs-common.xsd">jaxrs.xsd</a>.
</p>
<p>The top-level 'model' element can have 'resource' children elements. A
'resource' element describes a resource class which can be either a root
resource class or a sub-resource one and it can have attributes describing
'path', 'produces' and 'consumes' values and it has a 'name' attribute which
identifies a fully-qualified resource class. <br clear="none">
A 'resource' element can have a number of 'operation' elements pointing to
resource methods (with its 'name' attribute) and can have 'path', 'produces',
'consumes' and 'verb' (HTTP method) values. An 'operation' element which has no
'verb' attribute is treated as a sub-resource locator - a corresponding
resource class has to be available in the model with its 'name' attribute
matching the return type's name of this operation.<br clear="none">