This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 0a735ae Polish and cleanup documentation 0a735ae is described below commit 0a735ae926cba690b6ebd3f4804b6e65b11a52ca Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Thu Aug 12 17:56:25 2021 +0200 Polish and cleanup documentation --- .../camel-spring/src/main/docs/spring-summary.adoc | 3 +- .../modules/ROOT/pages/spring-summary.adoc | 3 +- docs/user-manual/modules/ROOT/nav.adoc | 1 - .../ROOT/pages/simplescheduledroutepolicy.adoc | 61 +- .../modules/ROOT/pages/spring-example.adoc | 54 - docs/user-manual/modules/ROOT/pages/spring.adoc | 21 +- .../modules/ROOT/pages/xml-reference.adoc | 1436 -------------------- 7 files changed, 38 insertions(+), 1541 deletions(-) diff --git a/components/camel-spring/src/main/docs/spring-summary.adoc b/components/camel-spring/src/main/docs/spring-summary.adoc index 6b5eb94..8a54524 100644 --- a/components/camel-spring/src/main/docs/spring-summary.adoc +++ b/components/camel-spring/src/main/docs/spring-summary.adoc @@ -17,8 +17,7 @@ Spring Framework in a number of ways. instances or the CamelContext instance itself and auto-expose Spring beans as components and endpoints. * Camel works with Spring XML processing with the XML DSL via `camel-spring-xml` component -* Camel Spring XML Schema's is defined at xref:manual::xml-reference.adoc[XML -Reference] +* Camel Spring XML Schema's is defined at `https://camel.apache.org/schema/spring/` * Camel provides powerful Bean Integration with any bean defined in a Spring ApplicationContext * Camel uses Spring Transactions as the default transaction handling in diff --git a/docs/components/modules/ROOT/pages/spring-summary.adoc b/docs/components/modules/ROOT/pages/spring-summary.adoc index 53b1219..33584d0 100644 --- a/docs/components/modules/ROOT/pages/spring-summary.adoc +++ b/docs/components/modules/ROOT/pages/spring-summary.adoc @@ -19,8 +19,7 @@ Spring Framework in a number of ways. instances or the CamelContext instance itself and auto-expose Spring beans as components and endpoints. * Camel works with Spring XML processing with the XML DSL via `camel-spring-xml` component -* Camel Spring XML Schema's is defined at xref:manual::xml-reference.adoc[XML -Reference] +* Camel Spring XML Schema's is defined at `https://camel.apache.org/schema/spring/` * Camel provides powerful Bean Integration with any bean defined in a Spring ApplicationContext * Camel uses Spring Transactions as the default transaction handling in diff --git a/docs/user-manual/modules/ROOT/nav.adoc b/docs/user-manual/modules/ROOT/nav.adoc index 1d7bd0c..d65554c 100644 --- a/docs/user-manual/modules/ROOT/nav.adoc +++ b/docs/user-manual/modules/ROOT/nav.adoc @@ -23,7 +23,6 @@ ** xref:rest-dsl.adoc[Working with REST and Rest DSL] ** xref:writing-components.adoc[Writing Components] ** xref:xml-configuration.adoc[XML Configuration] -** xref:xml-reference.adoc[XML Reference] ** xref:release-guide.adoc[Release guide] ** xref:improving-the-documentation.adoc[Improving the Documentation] * xref:migration-and-upgrade.adoc[Migration and Upgrade] diff --git a/docs/user-manual/modules/ROOT/pages/simplescheduledroutepolicy.adoc b/docs/user-manual/modules/ROOT/pages/simplescheduledroutepolicy.adoc index 4e07fa3..ff7b36b 100644 --- a/docs/user-manual/modules/ROOT/pages/simplescheduledroutepolicy.adoc +++ b/docs/user-manual/modules/ROOT/pages/simplescheduledroutepolicy.adoc @@ -1,40 +1,22 @@ +[[SimpleScheduledRoutePolicy-SimpleScheduledRoutePolicy]] = SimpleScheduledRoutePolicy -~~~~~~~~~~~~~~~~~~~~~~~~~~ -SimpleScheduledRoutePolicy is a -xref:scheduledroutepolicy.adoc[ScheduledRoutePolicy] that facilitates -route activation, de-activation, suspension and resumption of routes -based on a xref:components::quartz-component.adoc[Quartz] SimpleTrigger. +`SimpleScheduledRoutePolicy` is a xref:scheduledroutepolicy.adoc[ScheduledRoutePolicy] +that facilitates route activation, de-activation, suspension and resumption of routes +based on the xref:components::quartz-component.adoc[Quartz] simple trigger. -Maven users will need to add a `camel-quartz` dependency to their -`pom.xml` to avail this capability. -[source,xml] ----- -<dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-quartz</artifactId> - <version>x.x.x</version> - <!-- use the same version as your Camel core version --> -</dependency> ----- +== How it works -**Relationship to the [Quartz] component** +In order to use a `SimpleScheduledRoutePolicy` it is necessary to +instantiate an object of the type +`org.apache.camel.routepolicy.quartz.SimpleScheduledRoutePolicy`. -All Scheduled route policies share the scheduler created by the Quartz +NOTE: All Scheduled route policies share the scheduler created by the Quartz component. In this way, scheduler, jobs and triggers can be managed in a common and consistent way. -**Relationship to the [Quartz] component** - -From Camel 2.12.2 onwards you can also make use of the -xref:components::quartz-component.adoc[Quartz] based implementation of this route policy. - -== How it works - -In order to use a SimpleScheduledRoutePolicy it is necessary to -instantiate an object of the type -`org.apache.camel.routepolicy.quartz.SimpleScheduledRoutePolicy`. +=== Configuration options In order to perform a route operation at a given time the following information must be provided. @@ -103,15 +85,14 @@ to trigger the next attempt to resume the route Once the `org.apache.camel.routepolicy.quartz.SimpleScheduledRoutePolicy` is -created it can be wired into the camel route as follows +created it can be wired into the camel route as follows. -== Configuring the policy +== Using the SimpleScheduledRoutePolicy -* In Java +The `SimpleScheduledRoutePolicy` can be used in Java DSL as show: [source,java] ---- - SimpleScheduledRoutePolicy policy = new SimpleScheduledRoutePolicy(); long startTime = System.currentTimeMillis() + 3000L; policy.setRouteStartDate(new Date(startTime)); @@ -124,7 +105,7 @@ from("direct:start") .to("mock:success"); ---- -* Using Spring +And in Spring XML: [source,xml] ---- @@ -144,3 +125,17 @@ from("direct:start") </camelContext> ---- +== Dependency + +Maven users will need to add a `camel-quartz` dependency to their +`pom.xml` to avail this capability. + +[source,xml] +---- +<dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-quartz</artifactId> + <version>x.x.x</version> + <!-- use the same version as your Camel core version --> +</dependency> +---- diff --git a/docs/user-manual/modules/ROOT/pages/spring-example.adoc b/docs/user-manual/modules/ROOT/pages/spring-example.adoc deleted file mode 100644 index 2c1ba15..0000000 --- a/docs/user-manual/modules/ROOT/pages/spring-example.adoc +++ /dev/null @@ -1,54 +0,0 @@ -= Spring Example - -The spring example is a simple refactor of the -adoc:walk-through-an-example.adoc[first example] to show how to use the -xref:spring.adoc[Spring] approach to working with Camel. In this example -we just write RouteBuilder implementations, then we write a Spring -ApplicationContext XML file to configure Camel so that it auto-discovers -the routes on the classpath. - -To run the example we use the xref:camel-maven-plugin.adoc[Camel Maven -Plugin]. For example from the source or binary distribution the -following should work - -[source,shell] ----- -cd examples/camel-example-spring -mvn camel:run ----- - -What this does is boot up the Spring ApplicationContext defined in the -file -https://github.com/apache/camel/blob/main/examples/camel-example-spring/src/main/resources/META-INF/spring/camel-context.xml[META-INF/spring/camel-context.xml] -on the classpath. This is a regular Spring XML document which uses the -Camel link:xml-configuration.html[Xml Configuration] to configure a -link:camelcontext.html[CamelContext]. Notice how the <camelContext> -element is configured - -[source,syntaxhighlighter-pre] ----- - <camelContext xmlns="http://activemq.apache.org/camel/schema/spring"> - <package>org.apache.camel.example.spring</package> - ... ----- - -The packages attribute defines the comma separated list of Java package -names which are recursively searched for Java classes on the classpath -which implement the xref:route-builder.adoc[RouteBuilder] interface. What -this means is that Camel will automatically detect our -https://github.com/apache/camel/blob/main/examples/camel-example-spring/src/main/java/org/apache/camel/example/spring/MyRouteBuilder.java[MyRouteBuilder -class] and automatically install its routes. Of course, in practice you -should not specify org.apache.camel (or a sub package of this) as the -package name because this will instruct Camel to search in its own -packages for your routes. - -This approach, of using Java code to write the routes in the -xref:dsl.adoc[DSL] and just wire together in XML what we really need to -allows us to use the right language for the job and minimise the amount -of XML bloat. Of course if you prefer you can create all of your routes -in the xref:xml-configuration.adoc[Xml Configuration]. - -Also note at the end of this -https://github.com/apache/camel/blob/main/examples/camel-example-spring/src/main/resources/META-INF/spring/camel-context.xml[XML -example file] we explicitly configure the xref:components::activemq-component.adoc[ActiveMQ] -component with details of how to connect to the broker. diff --git a/docs/user-manual/modules/ROOT/pages/spring.adoc b/docs/user-manual/modules/ROOT/pages/spring.adoc index 062ed0b..00850a8 100644 --- a/docs/user-manual/modules/ROOT/pages/spring.adoc +++ b/docs/user-manual/modules/ROOT/pages/spring.adoc @@ -1,19 +1,14 @@ -[[SpringSupport-SpringSupport]] -= Spring Support +[[Spring-Spring]] += Spring Apache Camel is designed to work nicely with the Spring Framework in a number of ways. -* Camel uses Spring Transactions as the default transaction handling in components like JMS and JPA -* Camel works with Spring 2 XML processing with the XML Configuration -* Camel Spring XML Schema's is defined at Xml Reference -* Camel supports a powerful version of Spring Remoting which can use powerful routing between the client and server side along with using all of the available Components for the transport -* Camel provides powerful Bean Integration with any bean defined in a Spring ApplicationContext. -* Camel integrates with various Spring helper classes; such as providing Type Converter support for Spring Resources etc -* Allows Spring to dependency inject Component instances or the xref:camelcontext.adoc[CamelContext] instance itself and auto-expose Spring beans as components and endpoints. -* Allows you to reuse the Spring Testing framework to simplify your unit and integration testing using Enterprise Integration Patterns and Camel's powerful Mock and Test endpoints -* From Camel 2.15: Camel supports Spring Boot using the camel-spring-boot component. -* From Camel 2.17.1: Camel supports Spring Cache based Idempotent repository - +* Camel runs on Spring Boot with the Camel Spring Boot project +* Camel works with Spring XML configuration files (classic Spring XML) +* Camel works with Spring dependency injection +* Camel works with configuration and property placeholders +* Camel works with Spring Transaction +* Camel works with Spring Testing making it easy to write unit and integration tests with Camel and Spring == Using Spring to configure the CamelContext diff --git a/docs/user-manual/modules/ROOT/pages/xml-reference.adoc b/docs/user-manual/modules/ROOT/pages/xml-reference.adoc deleted file mode 100644 index ae84194..0000000 --- a/docs/user-manual/modules/ROOT/pages/xml-reference.adoc +++ /dev/null @@ -1,1436 +0,0 @@ -[[XMLReference-CamelXMLReference]] -= Camel XML Reference - -This page contains a link to the XML schema documents for -xref:xml-configuration.adoc[XML Configuration] with Camel releases. You -can refer to http://camel.apache.org/schema/ to see the individual XSDs -available. - -[[XMLReference-ReleasedSchemas-Spring]] -== Released Schemas - Spring - -[width="100%",cols="50%,50%",options="header",] -|======================================================================= -|Version |XML Schema -|2.20.2 |http://camel.apache.org/schema/spring/camel-spring-2.20.2.xsd - -|2.20.1 |http://camel.apache.org/schema/spring/camel-spring-2.20.1.xsd - -|2.20.0 |http://camel.apache.org/schema/spring/camel-spring-2.20.0.xsd - -|2.19.4 |http://camel.apache.org/schema/spring/camel-spring-2.19.4.xsd - -|2.19.3 |http://camel.apache.org/schema/spring/camel-spring-2.19.3.xsd - -|2.19.2 |http://camel.apache.org/schema/spring/camel-spring-2.19.2.xsd - -|2.19.1 |http://camel.apache.org/schema/spring/camel-spring-2.19.1.xsd - -|2.19.0 |http://camel.apache.org/schema/spring/camel-spring-2.19.0.xsd - -|2.18.5 |http://camel.apache.org/schema/spring/camel-spring-2.18.5.xsd - -|2.18.4 |http://camel.apache.org/schema/spring/camel-spring-2.18.4.xsd - -|2.18.3 |http://camel.apache.org/schema/spring/camel-spring-2.18.3.xsd - -|2.18.2 |http://camel.apache.org/schema/spring/camel-spring-2.18.2.xsd - -|2.18.1 |http://camel.apache.org/schema/spring/camel-spring-2.18.1.xsd - -|2.18.0 |http://camel.apache.org/schema/spring/camel-spring-2.18.0.xsd - -|2.17.7 |http://camel.apache.org/schema/spring/camel-spring-2.17.7.xsd - -|2.17.6 |http://camel.apache.org/schema/spring/camel-spring-2.17.6.xsd - -|2.17.5 |http://camel.apache.org/schema/spring/camel-spring-2.17.5.xsd - -|2.17.4 |http://camel.apache.org/schema/spring/camel-spring-2.17.4.xsd - -|2.17.3 |http://camel.apache.org/schema/spring/camel-spring-2.17.3.xsd - -|2.17.2 |http://camel.apache.org/schema/spring/camel-spring-2.17.2.xsd - -|2.17.1 |http://camel.apache.org/schema/spring/camel-spring-2.17.1.xsd - -|2.17.0 |http://camel.apache.org/schema/spring/camel-spring-2.17.0.xsd - -|2.16.4 |http://camel.apache.org/schema/spring/camel-spring-2.16.4.xsd - -|2.16.3 |http://camel.apache.org/schema/spring/camel-spring-2.16.3.xsd - -|2.16.2 |http://camel.apache.org/schema/spring/camel-spring-2.16.2.xsd - -|2.16.1 |http://camel.apache.org/schema/spring/camel-spring-2.16.1.xsd - -|2.16.0 |http://camel.apache.org/schema/spring/camel-spring-2.16.0.xsd - -|2.15.6 |http://camel.apache.org/schema/spring/camel-spring-2.15.6.xsd - -|2.15.5 |http://camel.apache.org/schema/spring/camel-spring-2.15.5.xsd - -|2.15.4 |http://camel.apache.org/schema/spring/camel-spring-2.15.4.xsd - -|2.15.3 |http://camel.apache.org/schema/spring/camel-spring-2.15.3.xsd - -|2.15.2 |http://camel.apache.org/schema/spring/camel-spring-2.15.2.xsd - -|2.15.1 |http://camel.apache.org/schema/spring/camel-spring-2.15.1.xsd - -|2.15.0 |http://camel.apache.org/schema/spring/camel-spring-2.15.0.xsd - -|2.14.4 |http://camel.apache.org/schema/spring/camel-spring-2.14.4.xsd - -|2.14.3 |http://camel.apache.org/schema/spring/camel-spring-2.14.3.xsd - -|2.14.2 |http://camel.apache.org/schema/spring/camel-spring-2.14.2.xsd - -|2.14.1 |http://camel.apache.org/schema/spring/camel-spring-2.14.1.xsd - -|2.14.0 |http://camel.apache.org/schema/spring/camel-spring-2.14.0.xsd - -|2.13.4 |http://camel.apache.org/schema/spring/camel-spring-2.13.4.xsd - -|2.13.3 |http://camel.apache.org/schema/spring/camel-spring-2.13.3.xsd - -|2.13.2 |http://camel.apache.org/schema/spring/camel-spring-2.13.2.xsd - -|2.13.1 |http://camel.apache.org/schema/spring/camel-spring-2.13.1.xsd - -|2.13.0 |http://camel.apache.org/schema/spring/camel-spring-2.12.3.xsd - -|2.12.5 |http://camel.apache.org/schema/spring/camel-spring-2.12.5.xsd - -|2.12.4 |http://camel.apache.org/schema/spring/camel-spring-2.12.4.xsd - -|2.12.3 |http://camel.apache.org/schema/spring/camel-spring-2.12.3.xsd - -|2.12.2 |http://camel.apache.org/schema/spring/camel-spring-2.12.2.xsd - -|2.12.1 |http://camel.apache.org/schema/spring/camel-spring-2.12.1.xsd - -|2.12.0 |http://camel.apache.org/schema/spring/camel-spring-2.12.0.xsd - -|2.11.4 |http://camel.apache.org/schema/spring/camel-spring-2.11.4.xsd - -|2.11.3 |http://camel.apache.org/schema/spring/camel-spring-2.11.3.xsd - -|2.11.2 |http://camel.apache.org/schema/spring/camel-spring-2.11.2.xsd - -|2.11.1 |http://camel.apache.org/schema/spring/camel-spring-2.11.1.xsd - -|2.11.0 |http://camel.apache.org/schema/spring/camel-spring-2.11.0.xsd - -|2.10.7 |http://camel.apache.org/schema/spring/camel-spring-2.10.7.xsd - -|2.10.6 |http://camel.apache.org/schema/spring/camel-spring-2.10.6.xsd - -|2.10.5 |http://camel.apache.org/schema/spring/camel-spring-2.10.5.xsd - -|2.10.4 |http://camel.apache.org/schema/spring/camel-spring-2.10.4.xsd - -|2.10.3 |http://camel.apache.org/schema/spring/camel-spring-2.10.3.xsd - -|2.10.2 |http://camel.apache.org/schema/spring/camel-spring-2.10.2.xsd - -|2.10.1 |http://camel.apache.org/schema/spring/camel-spring-2.10.1.xsd - -|2.10.0 |http://camel.apache.org/schema/spring/camel-spring-2.10.0.xsd - -|2.9.8 |http://camel.apache.org/schema/spring/camel-spring-2.9.8.xsd - -|2.9.7 |http://camel.apache.org/schema/spring/camel-spring-2.9.7.xsd - -|2.9.6 |http://camel.apache.org/schema/spring/camel-spring-2.9.6.xsd - -|2.9.5 |http://camel.apache.org/schema/spring/camel-spring-2.9.5.xsd - -|2.9.4 |http://camel.apache.org/schema/spring/camel-spring-2.9.4.xsd - -|2.9.3 |http://camel.apache.org/schema/spring/camel-spring-2.9.3.xsd - -|2.9.2 |http://camel.apache.org/schema/spring/camel-spring-2.9.2.xsd - -|2.9.1 |http://camel.apache.org/schema/spring/camel-spring-2.9.1.xsd - -|2.9.0 |http://camel.apache.org/schema/spring/camel-spring-2.9.0.xsd - -|2.8.6 |http://camel.apache.org/schema/spring/camel-spring-2.8.6.xsd - -|2.8.5 |http://camel.apache.org/schema/spring/camel-spring-2.8.5.xsd - -|2.8.4 |http://camel.apache.org/schema/spring/camel-spring-2.8.4.xsd - -|2.8.3 |http://camel.apache.org/schema/spring/camel-spring-2.8.3.xsd - -|2.8.2 |http://camel.apache.org/schema/spring/camel-spring-2.8.2.xsd - -|2.8.1 |http://camel.apache.org/schema/spring/camel-spring-2.8.1.xsd - -|2.8.0 |http://camel.apache.org/schema/spring/camel-spring-2.8.0.xsd - -|2.7.5 |http://camel.apache.org/schema/spring/camel-spring-2.7.5.xsd - -|2.7.4 |http://camel.apache.org/schema/spring/camel-spring-2.7.4.xsd - -|2.7.3 |http://camel.apache.org/schema/spring/camel-spring-2.7.3.xsd - -|2.7.2 |http://camel.apache.org/schema/spring/camel-spring-2.7.2.xsd - -|2.7.1 |http://camel.apache.org/schema/spring/camel-spring-2.7.1.xsd - -|2.7.0 |http://camel.apache.org/schema/spring/camel-spring-2.7.0.xsd - -|2.6.0 |http://camel.apache.org/schema/spring/camel-spring-2.6.0.xsd - -|2.5.0 |http://camel.apache.org/schema/spring/camel-spring-2.5.0.xsd - -|2.4.0 |http://camel.apache.org/schema/spring/camel-spring-2.4.0.xsd - -|2.3.0 |http://camel.apache.org/schema/spring/camel-spring-2.3.0.xsd - -|2.2.0 |http://camel.apache.org/schema/spring/camel-spring-2.2.0.xsd - -|2.1.0 |http://camel.apache.org/schema/spring/camel-spring-2.1.0.xsd - -|2.0.0 |http://camel.apache.org/schema/spring/camel-spring-2.0.0.xsd - -|1.6.4 |http://camel.apache.org/schema/spring/camel-spring-1.6.4.xsd - -|1.6.3 |http://camel.apache.org/schema/spring/camel-spring-1.6.3.xsd - -|1.6.2 |http://camel.apache.org/schema/spring/camel-spring-1.6.2.xsd - -|1.6.1 |http://camel.apache.org/schema/spring/camel-spring-1.6.1.xsd - -|1.6.0 |http://camel.apache.org/schema/spring/camel-spring-1.6.0.xsd - -|1.5.0 -|http://activemq.apache.org/camel/schema/spring/camel-spring-1.5.0.xsd - -|1.4.0 -|http://activemq.apache.org/camel/schema/spring/camel-spring-1.4.0.xsd - -|1.3.0 -|http://activemq.apache.org/camel/schema/spring/camel-spring-1.3.0.xsd - -|1.2.0 -|http://activemq.apache.org/camel/schema/spring/camel-spring-1.2.0.xsd - -|1.1.0 -|http://activemq.apache.org/camel/schema/spring/camel-spring-1.1.0.xsd - -|1.0.0 -|http://activemq.apache.org/camel/schema/spring/camel-spring-1.0.0.xsd -|======================================================================= - -[[XMLReference-ReleasedSchemas-Blueprint]] -== Released Schemas - Blueprint - -[width="100%",cols="50%,50%",options="header",] -|======================================================================= -|Version |XML Schema -|2.20.2 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.20.2.xsd - -|2.20.1 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.20.1.xsd - -|2.20.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.20.0.xsd - -|2.19.4 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.19.4.xsd - -|2.19.3 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.19.3.xsd - -|2.19.2 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.19.2.xsd - -|2.19.1 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.19.1.xsd - -|2.19.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.19.0.xsd - -|2.18.5 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.18.5.xsd - -|2.18.4 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.18.4.xsd - -|2.18.3 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.18.3.xsd - -|2.18.2 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.18.2.xsd - -|2.18.1 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.18.1.xsd - -|2.18.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.18.0.xsd - -|2.17.7 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.17.7.xsd - -|2.17.6 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.17.6.xsd - -|2.17.5 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.17.5.xsd - -|2.17.4 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.17.4.xsd - -|2.17.3 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.17.3.xsd - -|2.17.2 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.17.2.xsd - -|2.17.1 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.17.1.xsd - -|2.17.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.17.0.xsd - -|2.16.4 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.16.4.xsd - -|2.16.3 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.16.3.xsd - -|2.16.2 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.16.2.xsd - -|2.16.1 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.16.1.xsd - -|2.16.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.16.0.xsd - -|2.15.6 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.15.6.xsd - -|2.15.5 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.15.5.xsd - -|2.15.4 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.15.4.xsd - -|2.15.3 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.15.3.xsd - -|2.15.2 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.15.2.xsd - -|2.15.1 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.15.1.xsd - -|2.15.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.15.0.xsd - -|2.14.4 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.14.4.xsd - -|2.14.3 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.14.3.xsd - -|2.14.2 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.14.2.xsd - -|2.14.1 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.14.1.xsd - -|2.14.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.14.0.xsd - -|2.13.4 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.13.4.xsd - -|2.13.3 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.13.3.xsd - -|2.13.2 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.13.3.xsd - -|2.13.1 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.13.1.xsd - -|2.13.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.13.0.xsd - -|2.12.5 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.12.5.xsd - -|2.12.4 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.12.4.xsd - -|2.12.3 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.12.3.xsd - -|2.12.2 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.12.2.xsd - -|2.12.1 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.12.1.xsd - -|2.12.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.12.0.xsd - -|2.11.4 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.11.4.xsd - -|2.11.3 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.11.3.xsd - -|2.11.2 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.11.2.xsd - -|2.11.1 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.11.1.xsd - -|2.11.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.11.0.xsd - -|2.10.7 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.10.7.xsd - -|2.10.6 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.10.6.xsd - -|2.10.5 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.10.5.xsd - -|2.10.4 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.10.4.xsd - -|2.10.3 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.10.3.xsd - -|2.10.2 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.10.2.xsd - -|2.10.1 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.10.1.xsd - -|2.10.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.10.0.xsd - -|2.9.8 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.9.8.xsd - -|2.9.7 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.9.7.xsd - -|2.9.6 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.9.6.xsd - -|2.9.5 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.9.5.xsd - -|2.9.4 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.9.4.xsd - -|2.9.3 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.9.3.xsd - -|2.9.2 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.9.2.xsd - -|2.9.1 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.9.1.xsd - -|2.9.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.9.0.xsd - -|2.8.6 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.8.6.xsd - -|2.8.5 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.8.5.xsd - -|2.8.4 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.8.4.xsd - -|2.8.3 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.8.3.xsd - -|2.8.2 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.8.2.xsd - -|2.8.1 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.8.1.xsd - -|2.8.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.8.0.xsd - -|2.7.5 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.7.5.xsd - -|2.7.4 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.7.4.xsd - -|2.7.3 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.7.3.xsd - -|2.7.2 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.7.2.xsd - -|2.7.1 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.7.1.xsd - -|2.7.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.7.0.xsd - -|2.6.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.6.0.xsd - -|2.5.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.5.0.xsd - -|2.4.0 -|http://camel.apache.org/schema/blueprint/camel-blueprint-2.4.0.xsd -|======================================================================= - -[[XMLReference-ReleasedSchemas-CXFSpring]] -== Released Schemas - CXF Spring - -[width="100%",cols="50%,50%",options="header",] -|====================================================================== -|Version |XML Schema -|2.20.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.20.1-spring.xsd -|2.20.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.20.0-spring.xsd -|2.19.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.19.4-spring.xsd -|2.19.3 |http://camel.apache.org/schema/cxf/camel-cxf-2.19.3-spring.xsd -|2.19.2 |http://camel.apache.org/schema/cxf/camel-cxf-2.19.2-spring.xsd -|2.19.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.19.1-spring.xsd -|2.19.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.19.0-spring.xsd -|2.18.5 |http://camel.apache.org/schema/cxf/camel-cxf-2.18.5-spring.xsd -|2.18.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.18.4-spring.xsd -|2.18.3 |http://camel.apache.org/schema/cxf/camel-cxf-2.18.3-spring.xsd -|2.18.2 |http://camel.apache.org/schema/cxf/camel-cxf-2.18.2-spring.xsd -|2.18.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.18.1-spring.xsd -|2.18.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.18.0-spring.xsd -|2.17.7 |http://camel.apache.org/schema/cxf/camel-cxf-2.17.7-spring.xsd -|2.17.6 |http://camel.apache.org/schema/cxf/camel-cxf-2.17.6-spring.xsd -|2.17.5 |http://camel.apache.org/schema/cxf/camel-cxf-2.17.5-spring.xsd -|2.17.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.17.4-spring.xsd -|2.17.3 |http://camel.apache.org/schema/cxf/camel-cxf-2.17.3-spring.xsd -|2.17.2 |http://camel.apache.org/schema/cxf/camel-cxf-2.17.2-spring.xsd -|2.17.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.17.1-spring.xsd -|2.17.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.17.0-spring.xsd -|2.16.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.16.4-spring.xsd -|2.16.3 |http://camel.apache.org/schema/cxf/camel-cxf-2.16.3-spring.xsd -|2.16.2 |http://camel.apache.org/schema/cxf/camel-cxf-2.16.2-spring.xsd -|2.16.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.16.1-spring.xsd -|2.16.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.16.0-spring.xsd -|2.15.6 |http://camel.apache.org/schema/cxf/camel-cxf-2.15.6-spring.xsd -|2.15.5 |http://camel.apache.org/schema/cxf/camel-cxf-2.15.5-spring.xsd -|2.15.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.15.4-spring.xsd -|2.15.3 |http://camel.apache.org/schema/cxf/camel-cxf-2.15.3-spring.xsd -|2.15.2 |http://camel.apache.org/schema/cxf/camel-cxf-2.15.2-spring.xsd -|2.15.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.15.1-spring.xsd -|2.15.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.15.0-spring.xsd -|2.14.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.14.4-spring.xsd -|2.14.3 |http://camel.apache.org/schema/cxf/camel-cxf-2.14.3-spring.xsd -|2.14.2 |http://camel.apache.org/schema/cxf/camel-cxf-2.14.2-spring.xsd -|2.14.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.14.1-spring.xsd -|2.14.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.14.0-spring.xsd -|2.13.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.13.4-spring.xsd -|2.13.3 |http://camel.apache.org/schema/cxf/camel-cxf-2.13.3-spring.xsd -|2.13.2 |http://camel.apache.org/schema/cxf/camel-cxf-2.13.2-spring.xsd -|2.13.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.13.1-spring.xsd -|2.13.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.13.0-spring.xsd -|2.12.5 |http://camel.apache.org/schema/cxf/camel-cxf-2.12.5-spring.xsd -|2.12.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.12.4-spring.xsd -|2.12.3 |http://camel.apache.org/schema/cxf/camel-cxf-2.12.3-spring.xsd -|2.12.2 |http://camel.apache.org/schema/cxf/camel-cxf-2.12.2-spring.xsd -|2.12.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.12.1-spring.xsd -|2.12.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.12.0-spring.xsd -|2.11.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.11.4-spring.xsd -|2.11.3 |http://camel.apache.org/schema/cxf/camel-cxf-2.11.3-spring.xsd -|2.11.2 |http://camel.apache.org/schema/cxf/camel-cxf-2.11.2-spring.xsd -|2.11.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.11.1-spring.xsd -|2.11.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.11.0-spring.xsd -|2.10.7 |http://camel.apache.org/schema/cxf/camel-cxf-2.10.7-spring.xsd -|2.10.6 |http://camel.apache.org/schema/cxf/camel-cxf-2.10.6-spring.xsd -|2.10.5 |http://camel.apache.org/schema/cxf/camel-cxf-2.10.5-spring.xsd -|2.10.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.10.4-spring.xsd -|2.10.3 |http://camel.apache.org/schema/cxf/camel-cxf-2.10.3-spring.xsd -|2.10.2 |http://camel.apache.org/schema/cxf/camel-cxf-2.10.2-spring.xsd -|2.10.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.10.1-spring.xsd -|2.10.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.10.0-spring.xsd -|2.9.8 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.8-spring.xsd -|2.9.7 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.7-spring.xsd -|2.9.6 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.6-spring.xsd -|2.9.5 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.5-spring.xsd -|2.9.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.4-spring.xsd -|2.9.3 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.3-spring.xsd -|2.9.2 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.2-spring.xsd -|2.9.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.1-spring.xsd -|2.9.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.0.xsd -|2.8.6 |http://camel.apache.org/schema/cxf/camel-cxf-2.8.6-spring.xsd -|2.8.5 |http://camel.apache.org/schema/cxf/camel-cxf-2.8.5-spring.xsd -|2.8.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.8.4-spring.xsd -|2.8.3 |http://camel.apache.org/schema/cxf/camel-cxf-2.8.3.xsd -|2.8.2 |http://camel.apache.org/schema/cxf/camel-cxf-2.8.2.xsd -|2.8.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.8.1.xsd -|2.8.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.8.0.xsd -|2.7.5 |http://camel.apache.org/schema/cxf/camel-cxf-2.7.5.xsd -|2.7.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.7.4.xsd -|2.7.3 |http://camel.apache.org/schema/cxf/camel-cxf-2.7.3.xsd -|2.7.2 |http://camel.apache.org/schema/cxf/camel-cxf-2.7.2.xsd -|2.7.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.7.1.xsd -|2.7.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.7.0.xsd -|2.6.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.6.0.xsd -|2.5.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.5.0.xsd -|2.4.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.4.0.xsd -|2.3.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.3.0.xsd -|2.2.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.2.0.xsd -|2.1.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.1.0.xsd -|2.0.0 |http://camel.apache.org/schema/cxf/camel-cxf-2.0.0.xsd -|1.6.4 |http://camel.apache.org/schema/cxf/camel-cxf-1.6.4.xsd -|1.6.3 |http://camel.apache.org/schema/cxf/camel-cxf-1.6.3.xsd -|1.6.2 |http://camel.apache.org/schema/cxf/camel-cxf-1.6.2.xsd -|1.6.1 |http://camel.apache.org/schema/cxf/camel-cxf-1.6.1.xsd -|1.6.0 |http://camel.apache.org/schema/cxf/camel-cxf-1.6.0.xsd -|1.5.0 |http://activemq.apache.org/camel/schema/cxf/camel-cxf-1.5.0.xsd -|1.4.0 |http://activemq.apache.org/camel/schema/cxf/camel-cxf-1.4.0.xsd -|1.3.0 |http://activemq.apache.org/camel/schema/cxf/camel-cxf-1.3.0.xsd -|====================================================================== - -[[XMLReference-ReleasedSchemas-CXFblueprint]] -== Released Schemas - CXF blueprint - -[width="100%",cols="50%,50%",options="header",] -|======================================================================= -|Version |XML Schema -|2.20.2 -|http://camel.apache.org/schema/cxf/camel-cxf-2.20.2-blueprint.xsd - -|2.20.1 -|http://camel.apache.org/schema/cxf/camel-cxf-2.20.1-blueprint.xsd - -|2.20.0 -|http://camel.apache.org/schema/cxf/camel-cxf-2.20.0-blueprint.xsd - -|2.19.4 -|http://camel.apache.org/schema/cxf/camel-cxf-2.19.4-blueprint.xsd - -|2.19.3 -|http://camel.apache.org/schema/cxf/camel-cxf-2.19.3-blueprint.xsd - -|2.19.2 -|http://camel.apache.org/schema/cxf/camel-cxf-2.19.2-blueprint.xsd - -|2.19.1 -|http://camel.apache.org/schema/cxf/camel-cxf-2.19.1-blueprint.xsd - -|2.19.0 -|http://camel.apache.org/schema/cxf/camel-cxf-2.19.0-blueprint.xsd - -|2.18.5 -|http://camel.apache.org/schema/cxf/camel-cxf-2.18.5-blueprint.xsd - -|2.18.4 -|http://camel.apache.org/schema/cxf/camel-cxf-2.18.4-blueprint.xsd - -|2.18.3 -|http://camel.apache.org/schema/cxf/camel-cxf-2.18.3-blueprint.xsd - -|2.18.2 -|http://camel.apache.org/schema/cxf/camel-cxf-2.18.2-blueprint.xsd - -|2.18.1 -|http://camel.apache.org/schema/cxf/camel-cxf-2.18.1-blueprint.xsd - -|2.18.0 -|http://camel.apache.org/schema/cxf/camel-cxf-2.18.0-blueprint.xsd - -|2.17.7 -|http://camel.apache.org/schema/cxf/camel-cxf-2.17.7-blueprint.xsd - -|2.17.6 -|http://camel.apache.org/schema/cxf/camel-cxf-2.17.6-blueprint.xsd - -|2.17.5 -|http://camel.apache.org/schema/cxf/camel-cxf-2.17.5-blueprint.xsd - -|2.17.4 -|http://camel.apache.org/schema/cxf/camel-cxf-2.17.4-blueprint.xsd - -|2.17.3 -|http://camel.apache.org/schema/cxf/camel-cxf-2.17.3-blueprint.xsd - -|2.17.2 -|http://camel.apache.org/schema/cxf/camel-cxf-2.17.2-blueprint.xsd - -|2.17.1 -|http://camel.apache.org/schema/cxf/camel-cxf-2.17.1-blueprint.xsd - -|2.17.0 -|http://camel.apache.org/schema/cxf/camel-cxf-2.17.0-blueprint.xsd - -|2.16.4 -|http://camel.apache.org/schema/cxf/camel-cxf-2.16.4-blueprint.xsd - -|2.16.3 -|http://camel.apache.org/schema/cxf/camel-cxf-2.16.3-blueprint.xsd - -|2.16.2 -|http://camel.apache.org/schema/cxf/camel-cxf-2.16.2-blueprint.xsd - -|2.16.1 -|http://camel.apache.org/schema/cxf/camel-cxf-2.16.1-blueprint.xsd - -|2.16.0 -|http://camel.apache.org/schema/cxf/camel-cxf-2.16.0-blueprint.xsd - -|2.15.6 -|http://camel.apache.org/schema/cxf/camel-cxf-2.15.6-blueprint.xsd - -|2.15.5 -|http://camel.apache.org/schema/cxf/camel-cxf-2.15.5-blueprint.xsd - -|2.15.4 -|http://camel.apache.org/schema/cxf/camel-cxf-2.15.4-blueprint.xsd - -|2.15.3 -|http://camel.apache.org/schema/cxf/camel-cxf-2.15.3-blueprint.xsd - -|2.15.2 -|http://camel.apache.org/schema/cxf/camel-cxf-2.15.2-blueprint.xsd - -|2.15.1 -|http://camel.apache.org/schema/cxf/camel-cxf-2.15.1-blueprint.xsd - -|2.15.0 -|http://camel.apache.org/schema/cxf/camel-cxf-2.15.0-blueprint.xsd - -|2.14.4 -|http://camel.apache.org/schema/cxf/camel-cxf-2.14.4-blueprint.xsd - -|2.14.3 -|http://camel.apache.org/schema/cxf/camel-cxf-2.14.3-blueprint.xsd - -|2.14.2 -|http://camel.apache.org/schema/cxf/camel-cxf-2.14.2-blueprint.xsd - -|2.14.1 -|http://camel.apache.org/schema/cxf/camel-cxf-2.14.1-blueprint.xsd - -|2.14.0 -|http://camel.apache.org/schema/cxf/camel-cxf-2.14.0-blueprint.xsd - -|2.13.4 -|http://camel.apache.org/schema/cxf/camel-cxf-2.13.4-blueprint.xsd - -|2.13.3 -|http://camel.apache.org/schema/cxf/camel-cxf-2.13.3-blueprint.xsd - -|2.13.2 -|http://camel.apache.org/schema/cxf/camel-cxf-2.13.2-blueprint.xsd - -|2.13.1 -|http://camel.apache.org/schema/cxf/camel-cxf-2.13.1-blueprint.xsd - -|2.13.0 -|http://camel.apache.org/schema/cxf/camel-cxf-2.13.0-blueprint.xsd - -|2.12.5 -|http://camel.apache.org/schema/cxf/camel-cxf-2.12.5-blueprint.xsd - -|2.12.4 -|http://camel.apache.org/schema/cxf/camel-cxf-2.12.4-blueprint.xsd - -|2.12.3 -|http://camel.apache.org/schema/cxf/camel-cxf-2.12.3-blueprint.xsd - -|2.12.2 -|http://camel.apache.org/schema/cxf/camel-cxf-2.12.2-blueprint.xsd - -|2.12.1 -|http://camel.apache.org/schema/cxf/camel-cxf-2.12.1-blueprint.xsd - -|2.12.0 -|http://camel.apache.org/schema/cxf/camel-cxf-2.12.0-blueprint.xsd - -|2.11.4 -|http://camel.apache.org/schema/cxf/camel-cxf-2.11.4-blueprint.xsd - -|2.11.3 -|http://camel.apache.org/schema/cxf/camel-cxf-2.11.3-blueprint.xsd - -|2.11.2 -|http://camel.apache.org/schema/cxf/camel-cxf-2.11.2-blueprint.xsd - -|2.11.1 -|http://camel.apache.org/schema/cxf/camel-cxf-2.11.1-blueprint.xsd - -|2.11.0 -|http://camel.apache.org/schema/cxf/camel-cxf-2.11.0-blueprint.xsd - -|2.10.7 -|http://camel.apache.org/schema/cxf/camel-cxf-2.10.7-blueprint.xsd - -|2.10.6 -|http://camel.apache.org/schema/cxf/camel-cxf-2.10.6-blueprint.xsd - -|2.10.5 -|http://camel.apache.org/schema/cxf/camel-cxf-2.10.5-blueprint.xsd - -|2.10.4 -|http://camel.apache.org/schema/cxf/camel-cxf-2.10.4-blueprint.xsd - -|2.10.3 -|http://camel.apache.org/schema/cxf/camel-cxf-2.10.3-blueprint.xsd - -|2.10.2 -|http://camel.apache.org/schema/cxf/camel-cxf-2.10.2-blueprint.xsd - -|2.10.1 -|http://camel.apache.org/schema/cxf/camel-cxf-2.10.1-blueprint.xsd - -|2.10.0 -|http://camel.apache.org/schema/cxf/camel-cxf-2.10.0-blueprint.xsd - -|2.9.8 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.8-blueprint.xsd - -|2.9.7 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.7-blueprint.xsd - -|2.9.6 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.6-blueprint.xsd - -|2.9.5 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.5-blueprint.xsd - -|2.9.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.4-blueprint.xsd - -|2.9.3 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.3-blueprint.xsd - -|2.9.2 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.2-blueprint.xsd - -|2.9.1 |http://camel.apache.org/schema/cxf/camel-cxf-2.9.1-blueprint.xsd - -|2.8.6 |http://camel.apache.org/schema/cxf/camel-cxf-2.8.6-blueprint.xsd - -|2.8.5 |http://camel.apache.org/schema/cxf/camel-cxf-2.8.5-blueprint.xsd - -|2.8.4 |http://camel.apache.org/schema/cxf/camel-cxf-2.8.4-blueprint.xsd -|======================================================================= - -[[XMLReference-ReleasedSchemas-SpringIntegration]] -== Released Schemas - Spring Integration - -[width="100%",cols="50%,50%",options="header",] -|======================================================================= -|Version |XML Schema -|2.20.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.20.2.xsd - -|2.20.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.20.1.xsd - -|2.20.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.20.0.xsd - -|2.19.4 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.19.4.xsd - -|2.19.3 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.19.3.xsd - -|2.19.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.19.2.xsd - -|2.19.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.19.1.xsd - -|2.19.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.19.0.xsd - -|2.18.5 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.18.5.xsd - -|2.18.4 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.18.4.xsd - -|2.18.3 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.18.3.xsd - -|2.18.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.18.2.xsd - -|2.18.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.18.1.xsd - -|2.18.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.18.0.xsd - -|2.17.7 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.17.7.xsd - -|2.17.6 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.17.6.xsd - -|2.17.5 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.17.5.xsd - -|2.17.4 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.17.4.xsd - -|2.17.3 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.17.3.xsd - -|2.17.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.17.2.xsd - -|2.17.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.17.1.xsd - -|2.17.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.17.0.xsd - -|2.16.4 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.16.4.xsd - -|2.16.3 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.16.3.xsd - -|2.16.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.16.2.xsd - -|2.16.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.16.1.xsd - -|2.16.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.16.0.xsd - -|2.15.6 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.15.6.xsd - -|2.15.5 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.15.5.xsd - -|2.15.4 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.15.4.xsd - -|2.15.3 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.15.3.xsd - -|2.15.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.15.2.xsd - -|2.15.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.15.1.xsd - -|2.15.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.15.0.xsd - -|2.14.4 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.14.4.xsd - -|2.14.3 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.14.3.xsd - -|2.14.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.14.2.xsd - -|2.14.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.14.1.xsd - -|2.14.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.14.0.xsd - -|2.13.4 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.13.4.xsd - -|2.13.3 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.13.3.xsd - -|2.13.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.13.2.xsd - -|2.13.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.13.1.xsd - -|2.13.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.13.0.xsd - -|2.12.5 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.12.5.xsd - -|2.12.4 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.12.4.xsd - -|2.12.3 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.12.3.xsd - -|2.12.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.12.2.xsd - -|2.12.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.12.1.xsd - -|2.12.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.12.0.xsd - -|2.11.4 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.11.4.xsd - -|2.11.3 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.11.3.xsd - -|2.11.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.11.2.xsd - -|2.11.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.11.1.xsd - -|2.11.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.11.0.xsd - -|2.10.6 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.10.6.xsd - -|2.10.6 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.10.6.xsd - -|2.10.5 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.10.5.xsd - -|2.10.4 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.10.4.xsd - -|2.10.3 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.10.3.xsd - -|2.10.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.10.2.xsd - -|2.10.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.10.1.xsd - -|2.10.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.10.0.xsd - -|2.9.8 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.9.8.xsd - -|2.9.7 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.9.7.xsd - -|2.9.6 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.9.6.xsd - -|2.9.5 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.9.5.xsd - -|2.9.4 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.9.4.xsd - -|2.9.3 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.9.3.xsd - -|2.9.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.9.2.xsd - -|2.9.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.9.1.xsd - -|2.9.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.9.0.xsd - -|2.8.6 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.8.6.xsd - -|2.8.5 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.8.5.xsd - -|2.8.4 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.8.4.xsd - -|2.8.3 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.8.3.xsd - -|2.8.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.8.2.xsd - -|2.8.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.8.1.xsd - -|2.8.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.8.0.xsd - -|2.7.5 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.7.5.xsd - -|2.7.4 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.7.4.xsd - -|2.7.3 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.7.3.xsd - -|2.7.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.7.2.xsd - -|2.7.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.7.1.xsd - -|2.7.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.7.0.xsd - -|2.6.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.6.0.xsd - -|2.5.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.5.0.xsd - -|2.4.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.4.0.xsd - -|2.3.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.3.0.xsd - -|2.2.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.2.0.xsd - -|2.1.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.1.0.xsd - -|2.0.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-2.0.0.xsd - -|1.6.4 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-1.6.4.xsd - -|1.6.3 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-1.6.3.xsd - -|1.6.2 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-1.6.2.xsd - -|1.6.1 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-1.6.1.xsd - -|1.6.0 -|http://camel.apache.org/schema/spring/integration/camel-spring-integration-1.6.0.xsd - -|1.5.0 -|http://activemq.apache.org/camel/schema/spring/integration/camel-spring-integration-1.5.0.xsd - -|1.4.0 -|http://activemq.apache.org/camel/schema/spring/integration/camel-spring-integration-1.4.0.xsd -|======================================================================= - -[[XMLReference-ReleasedSchemas-SpringSecurity]] -== Released Schemas - Spring Security - -[width="100%",cols="50%,50%",options="header",] -|======================================================================= -|Version |XML Schema -|2.20.2 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.20.2.xsd - -|2.20.1 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.20.1.xsd - -|2.20.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.20.0.xsd - -|2.19.4 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.19.4.xsd - -|2.19.3 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.19.3.xsd - -|2.19.2 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.19.2.xsd - -|2.19.1 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.19.1.xsd - -|2.19.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.19.0.xsd - -|2.18.5 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.18.5.xsd - -|2.18.4 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.18.4.xsd - -|2.18.3 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.18.3.xsd - -|2.18.2 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.18.2.xsd - -|2.18.1 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.18.1.xsd - -|2.18.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.18.0.xsd - -|2.17.7 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.17.7.xsd - -|2.17.6 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.17.6.xsd - -|2.17.5 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.17.5.xsd - -|2.17.4 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.17.4.xsd - -|2.17.3 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.17.3.xsd - -|2.17.2 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.17.2.xsd - -|2.17.1 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.17.1.xsd - -|2.17.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.17.0.xsd - -|2.16.4 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.16.4.xsd - -|2.16.3 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.16.3.xsd - -|2.16.2 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.16.2.xsd - -|2.16.1 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.16.1.xsd - -|2.16.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.16.0.xsd - -|2.15.6 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.15.6.xsd - -|2.15.5 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.15.5.xsd - -|2.15.4 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.15.4.xsd - -|2.15.3 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.15.3.xsd - -|2.15.2 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.15.2.xsd - -|2.15.1 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.15.1.xsd - -|2.15.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.15.0.xsd - -|2.14.4 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.14.4.xsd - -|2.14.3 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.14.3.xsd - -|2.14.2 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.14.2.xsd - -|2.14.1 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.14.1.xsd - -|2.14.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.14.0.xsd - -|2.13.3 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.13.4.xsd - -|2.13.3 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.13.3.xsd - -|2.13.2 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.13.2.xsd - -|2.13.1 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.13.1.xsd - -|2.13.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.13.0.xsd - -|2.12.5 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.12.5.xsd - -|2.12.4 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.12.4.xsd - -|2.12.3 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.12.3.xsd - -|2.12.2 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.12.2.xsd - -|2.12.1 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.12.1.xsd - -|2.12.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.12.0.xsd - -|2.11.4 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.11.4.xsd - -|2.11.3 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.11.3.xsd - -|2.11.2 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.11.2.xsd - -|2.11.1 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.11.1.xsd - -|2.11.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.11.0.xsd - -|2.10.7 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.10.7.xsd - -|2.10.6 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.10.6.xsd - -|2.10.5 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.10.5.xsd - -|2.10.4 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.10.4.xsd - -|2.10.3 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.10.3.xsd - -|2.10.2 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.10.2.xsd - -|2.10.1 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.10.1.xsd - -|2.10.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.10.0.xsd - -|2.9.8 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.9.8.xsd - -|2.9.7 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.9.7.xsd - -|2.9.6 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.9.6.xsd - -|2.9.5 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.9.5.xsd - -|2.9.4 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.9.4.xsd - -|2.9.3 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.9.3.xsd - -|2.9.2 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.9.2.xsd - -|2.9.1 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.9.1.xsd - -|2.9.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.9.0.xsd - -|2.8.6 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.8.6.xsd - -|2.8.5 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.8.5.xsd - -|2.8.4 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.8.4.xsd - -|2.8.3 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.8.3.xsd - -|2.8.2 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.8.2.xsd - -|2.8.1 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.8.1.xsd - -|2.8.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.8.0.xsd - -|2.7.5 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.7.5.xsd - -|2.7.4 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.7.4.xsd - -|2.7.3 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.7.3.xsd - -|2.7.2 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.7.2.xsd - -|2.7.1 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.7.1.xsd - -|2.7.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.7.0.xsd - -|2.6.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.6.0.xsd - -|2.5.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.5.0.xsd - -|2.4.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.4.0.xsd - -|2.3.0 -|http://camel.apache.org/schema/spring-security/camel-spring-security-2.3.0.xsd -|======================================================================= - -[[XMLReference-UsingtheXSDsinconfigurationfiles]] -== Using the XSDs in configuration files - -When you are using xref:components::spring-summary.adoc[Spring]'s 2.5 XML handling to parse -the XML then you need to refer to the XSD locations in your XML -document. - -You can refer to a specific version of the XSD in your XML as follows: - -[source,xml] ----- -<beans - xmlns="http://www.springframework.org/schema/beans" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation=" - http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd - http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring-2.13.1.xsd"> ----- - -Or if you prefer you can use a generic XSD without the version number: - -[source,xml] ----- -<beans - xmlns="http://www.springframework.org/schema/beans" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation=" - http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd - http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd"> ----- - -Your IDE won't be able to fetch this XSD, you'll have to manually -associate a specific release; however it does mean that you won't have -to upgrade your XML config file with each Camel release; as it will -resolve this XSD using the bundled XSD inside the `camel-spring.jar`.