Modified: websites/production/camel/content/schema/blueprint/camel-blueprint.xsd ============================================================================== --- websites/production/camel/content/schema/blueprint/camel-blueprint.xsd (original) +++ websites/production/camel/content/schema/blueprint/camel-blueprint.xsd Sun Jan 6 15:02:29 2013 @@ -5,10 +5,14 @@ <xs:element name="aop" type="tns:aopDefinition"/> + <xs:element name="avro" type="tns:avroDataFormat"/> + <xs:element name="batchResequencerConfig" type="tns:batchResequencerConfig"/> <xs:element name="bean" type="tns:beanDefinition"/> + <xs:element name="beanio" type="tns:beanioDataFormat"/> + <xs:element name="bindy" type="tns:bindyDataFormat"/> <xs:element name="camelContext" type="tns:camelContextFactoryBean"/> @@ -271,6 +275,8 @@ <xs:element name="xmlBeans" type="tns:xmlBeansDataFormat"/> + <xs:element name="xmljson" type="tns:xmlJsonDataFormat"/> + <xs:element name="xpath" type="tns:xPathExpression"/> <xs:element name="xquery" type="tns:xQueryExpression"/> @@ -350,6 +356,7 @@ <xs:attribute name="autoStartup" type="xs:string"/> <xs:attribute name="useMDCLogging" type="xs:string"/> <xs:attribute name="useBreadcrumb" type="xs:string"/> + <xs:attribute name="managementNamePattern" type="xs:string"/> <xs:attribute name="useBlueprintPropertyResolver" type="xs:boolean"/> <xs:attribute name="shutdownRoute" type="tns:shutdownRoute"/> <xs:attribute name="shutdownRunningTask" type="tns:shutdownRunningTask"/> @@ -383,6 +390,8 @@ <xs:extension base="tns:identifiedType"> <xs:sequence/> <xs:attribute name="location" type="xs:string" use="required"/> + <xs:attribute name="cache" type="xs:boolean"/> + <xs:attribute name="ignoreMissingLocation" type="xs:boolean"/> <xs:attribute name="propertiesResolverRef" type="xs:string"/> <xs:attribute name="propertiesParserRef" type="xs:string"/> <xs:attribute name="propertyPrefix" type="xs:string"/> @@ -579,6 +588,7 @@ <xs:attribute name="maxQueueSize" type="xs:string"/> <xs:attribute name="rejectedPolicy" type="tns:threadPoolRejectedPolicy"/> <xs:attribute name="threadName" type="xs:string" use="required"/> + <xs:attribute name="scheduled" type="xs:boolean"/> </xs:extension> </xs:complexContent> </xs:complexType> @@ -605,6 +615,8 @@ <xs:complexType name="dataFormatsDefinition"> <xs:sequence> <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:element ref="tns:avro"/> + <xs:element ref="tns:beanio"/> <xs:element ref="tns:bindy"/> <xs:element ref="tns:castor"/> <xs:element ref="tns:crypto"/> @@ -625,6 +637,7 @@ <xs:element ref="tns:syslog"/> <xs:element ref="tns:tidyMarkup"/> <xs:element ref="tns:xmlBeans"/> + <xs:element ref="tns:xmljson"/> <xs:element ref="tns:xstream"/> <xs:element ref="tns:pgp"/> <xs:element ref="tns:zip"/> @@ -632,17 +645,11 @@ </xs:sequence> </xs:complexType> - <xs:complexType name="bindyDataFormat"> + <xs:complexType name="avroDataFormat"> <xs:complexContent> <xs:extension base="tns:dataFormat"> <xs:sequence/> - <xs:attribute name="type" type="tns:bindyType" use="required"/> - <xs:attribute name="packages" use="required"> - <xs:simpleType> - <xs:list itemType="xs:string"/> - </xs:simpleType> - </xs:attribute> - <xs:attribute name="locale" type="xs:string"/> + <xs:attribute name="instanceClassName" type="xs:string"/> </xs:extension> </xs:complexContent> </xs:complexType> @@ -655,6 +662,36 @@ </xs:complexContent> </xs:complexType> + <xs:complexType name="beanioDataFormat"> + <xs:complexContent> + <xs:extension base="tns:dataFormat"> + <xs:sequence/> + <xs:attribute name="mapping" type="xs:string" use="required"/> + <xs:attribute name="streamName" type="xs:string" use="required"/> + <xs:attribute name="ignoreUnidentifiedRecords" type="xs:boolean"/> + <xs:attribute name="ignoreUnexpectedRecords" type="xs:boolean"/> + <xs:attribute name="ignoreInvalidRecords" type="xs:boolean"/> + <xs:attribute name="encoding" type="xs:string"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + + <xs:complexType name="bindyDataFormat"> + <xs:complexContent> + <xs:extension base="tns:dataFormat"> + <xs:sequence/> + <xs:attribute name="type" type="tns:bindyType" use="required"/> + <xs:attribute name="packages"> + <xs:simpleType> + <xs:list itemType="xs:string"/> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="classType" type="xs:string"/> + <xs:attribute name="locale" type="xs:string"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + <xs:complexType name="castorDataFormat"> <xs:complexContent> <xs:extension base="tns:dataFormat"> @@ -697,7 +734,11 @@ <xs:complexContent> <xs:extension base="tns:dataFormat"> <xs:sequence/> + <xs:attribute name="autogenColumns" type="xs:boolean"/> <xs:attribute name="delimiter" type="xs:string"/> + <xs:attribute name="configRef" type="xs:string"/> + <xs:attribute name="strategyRef" type="xs:string"/> + <xs:attribute name="skipFirstLine" type="xs:boolean"/> </xs:extension> </xs:complexContent> </xs:complexType> @@ -800,6 +841,7 @@ <xs:attribute name="keyCipherAlgorithm" type="xs:string"/> <xs:attribute name="recipientKeyAlias" type="xs:string"/> <xs:attribute name="keyOrTrustStoreParametersId" type="xs:string"/> + <xs:attribute name="keyPassword" type="xs:string"/> </xs:extension> </xs:complexContent> </xs:complexType> @@ -819,6 +861,7 @@ <xs:attribute name="contextPath" type="xs:string" use="required"/> <xs:attribute name="encoding" type="xs:string"/> <xs:attribute name="elementNameStrategyRef" type="xs:string"/> + <xs:attribute name="version" type="xs:string"/> </xs:extension> </xs:complexContent> </xs:complexType> @@ -858,6 +901,30 @@ </xs:complexContent> </xs:complexType> + <xs:complexType name="xmlJsonDataFormat"> + <xs:complexContent> + <xs:extension base="tns:dataFormat"> + <xs:sequence/> + <xs:attribute name="encoding" type="xs:string"/> + <xs:attribute name="elementName" type="xs:string"/> + <xs:attribute name="arrayName" type="xs:string"/> + <xs:attribute name="forceTopLevelObject" type="xs:boolean"/> + <xs:attribute name="namespaceLenient" type="xs:boolean"/> + <xs:attribute name="rootName" type="xs:string"/> + <xs:attribute name="skipWhitespace" type="xs:boolean"/> + <xs:attribute name="trimSpaces" type="xs:boolean"/> + <xs:attribute name="skipNamespaces" type="xs:boolean"/> + <xs:attribute name="removeNamespacePrefixes" type="xs:boolean"/> + <xs:attribute name="expandableProperties"> + <xs:simpleType> + <xs:list itemType="xs:string"/> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="typeHints" type="xs:string"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + <xs:complexType name="xStreamDataFormat"> <xs:complexContent> <xs:extension base="tns:dataFormat"> @@ -1175,6 +1242,7 @@ <xs:simpleContent> <xs:extension base="xs:string"> <xs:attribute name="id" type="xs:ID"/> + <xs:attribute name="trim" type="xs:boolean"/> </xs:extension> </xs:simpleContent> </xs:complexType> @@ -1495,6 +1563,10 @@ </xs:complexContent> </xs:complexType> + <xs:complexType name="patternBasedPackageScanFilter"> + <xs:sequence/> + </xs:complexType> + <xs:complexType name="abstractJsseUtilFactoryBean" abstract="true"> <xs:complexContent> <xs:extension base="tns:abstractCamelFactoryBean"> @@ -2086,6 +2158,8 @@ <xs:extension base="tns:noOutputDefinition"> <xs:sequence> <xs:choice minOccurs="0"> + <xs:element ref="tns:avro"/> + <xs:element ref="tns:beanio"/> <xs:element ref="tns:bindy"/> <xs:element ref="tns:castor"/> <xs:element ref="tns:crypto"/> @@ -2106,6 +2180,7 @@ <xs:element ref="tns:syslog"/> <xs:element ref="tns:tidyMarkup"/> <xs:element ref="tns:xmlBeans"/> + <xs:element ref="tns:xmljson"/> <xs:element ref="tns:xstream"/> <xs:element ref="tns:pgp"/> <xs:element ref="tns:zip"/> @@ -2169,6 +2244,7 @@ <xs:attribute name="ref" type="xs:string"/> <xs:attribute name="timeout" type="xs:long"/> <xs:attribute name="strategyRef" type="xs:string"/> + <xs:attribute name="pollMultiple" type="xs:boolean"/> <xs:anyAttribute namespace="##other" processContents="skip"/> </xs:extension> </xs:complexContent> @@ -2591,6 +2667,8 @@ <xs:extension base="tns:noOutputDefinition"> <xs:sequence> <xs:choice minOccurs="0"> + <xs:element ref="tns:avro"/> + <xs:element ref="tns:beanio"/> <xs:element ref="tns:bindy"/> <xs:element ref="tns:castor"/> <xs:element ref="tns:crypto"/> @@ -2611,6 +2689,7 @@ <xs:element ref="tns:syslog"/> <xs:element ref="tns:tidyMarkup"/> <xs:element ref="tns:xmlBeans"/> + <xs:element ref="tns:xmljson"/> <xs:element ref="tns:xstream"/> <xs:element ref="tns:pgp"/> <xs:element ref="tns:zip"/> @@ -2631,6 +2710,15 @@ </xs:complexContent> </xs:complexType> + <xs:complexType name="whenSkipSendToEndpointDefinition"> + <xs:complexContent> + <xs:extension base="tns:whenDefinition"> + <xs:sequence/> + <xs:anyAttribute namespace="##other" processContents="skip"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + <xs:complexType name="wireTapDefinition"> <xs:complexContent> <xs:extension base="tns:noOutputDefinition"> @@ -2782,6 +2870,7 @@ <xs:attribute name="regex" type="xs:boolean"/> <xs:attribute name="xml" type="xs:boolean"/> <xs:attribute name="includeTokens" type="xs:boolean"/> + <xs:attribute name="group" type="xs:int"/> </xs:extension> </xs:simpleContent> </xs:complexType> @@ -2790,6 +2879,10 @@ <xs:simpleContent> <xs:extension base="tns:namespaceAwareExpression"> <xs:attribute name="resultType" type="xs:string"/> + <xs:attribute name="saxon" type="xs:boolean"/> + <xs:attribute name="factoryRef" type="xs:string"/> + <xs:attribute name="objectModel" type="xs:string"/> + <xs:attribute name="logNamespaces" type="xs:boolean"/> </xs:extension> </xs:simpleContent> </xs:complexType> @@ -2964,6 +3057,7 @@ <xs:restriction base="xs:string"> <xs:enumeration value="XStream"/> <xs:enumeration value="Jackson"/> + <xs:enumeration value="Gson"/> </xs:restriction> </xs:simpleType> </xs:schema>
Added: websites/production/camel/content/schema/cxf/camel-cxf-2.10.2-blueprint.xsd ============================================================================== --- websites/production/camel/content/schema/cxf/camel-cxf-2.10.2-blueprint.xsd (added) +++ websites/production/camel/content/schema/cxf/camel-cxf-2.10.2-blueprint.xsd Sun Jan 6 15:02:29 2013 @@ -0,0 +1,176 @@ +<?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. +--> +<xsd:schema xmlns="http://camel.apache.org/schema/blueprint/cxf" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:beans="http://www.osgi.org/xmlns/blueprint/v1.0.0" + xmlns:cxf-beans="http://cxf.apache.org/configuration/beans" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + targetNamespace="http://camel.apache.org/schema/blueprint/cxf" + elementFormDefault="qualified" + attributeFormDefault="unqualified" + xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd"> + + <xsd:import namespace="http://www.osgi.org/xmlns/blueprint/v1.0.0" schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd"/> + <xsd:import namespace="http://cxf.apache.org/configuration/beans" schemaLocation="http://cxf.apache.org/schemas/configuration/cxf-beans.xsd"/> + + <xsd:element name="cxfEndpoint"> + <xsd:complexType> + <xsd:complexContent> + <xsd:extension base="beans:Tcomponent"> + <xsd:all> + <xsd:element name="binding" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="dataBinding" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="features" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="handlers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="properties" type="beans:Tmap" minOccurs="0"/> + <xsd:element name="schemaLocations" type="schemasType" minOccurs="0"/> + <xsd:element name="serviceBean" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="serviceFactory" type="xsd:anyType" minOccurs="0"/> + </xsd:all> + <!-- xsd:attributeGroup ref="cxf-beans:beanAttributes"/--> + <xsd:attribute name="address" type="xsd:string"/> + <xsd:attribute name="bindingId" type="xsd:string"/> + <xsd:attribute name="bus" type="xsd:string"/> + <xsd:attribute name="serviceClass" type="xsd:string"/> + <xsd:attribute name="transportId" type="xsd:string"/> + <xsd:attribute name="wsdlURL" type="xsd:string"/> + <xsd:attribute name="endpointName" type="xsd:QName"/> + <xsd:attribute name="serviceName" type="xsd:QName"/> + <xsd:attribute name="loggingFeatureEnabled" type="xsd:boolean"/> + <xsd:attribute name="loggingSizeLimit" type="xsd:integer" /> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + </xsd:element> + + <xsd:element name="rsServer"> + <xsd:complexType> + <xsd:complexContent> + <xsd:extension base="beans:Tcomponent"> + <xsd:all> + <xsd:element name="executor" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="features" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="binding" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="invoker" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="properties" type="beans:Tmap" minOccurs="0"/> + <xsd:element name="serviceBeans" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="modelBeans" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="model" type="model" minOccurs="0"/> + <xsd:element name="providers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="extensionMappings" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="languageMappings" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="schemaLocations" type="schemasType" minOccurs="0"/> + </xsd:all> + <!-- xsd:attributeGroup ref="cxf-beans:beanAttributes"/--> + <xsd:attribute name="address" type="xsd:string"/> + <xsd:attribute name="bus" type="xsd:string"/> + <xsd:attribute name="serviceClass" type="xsd:string"/> + <xsd:attribute name="transportId" type="xsd:string"/> + <xsd:attribute name="modelRef" type="xsd:string"/> + <xsd:attribute name="bindingId" type="xsd:string"/> + <xsd:attribute name="staticSubresourceResolution" type="xsd:boolean"/> + <xsd:attribute name="loggingFeatureEnabled" type="xsd:boolean"/> + <xsd:attribute name="loggingSizeLimit" type="xsd:integer" /> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + </xsd:element> + + <xsd:element name="rsClient"> + <xsd:complexType> + <xsd:complexContent> + <xsd:extension base="beans:Tcomponent"> + <xsd:all> + <xsd:element name="executor" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="features" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="binding" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="properties" type="beans:Tmap" minOccurs="0"/> + <xsd:element name="providers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="modelBeans" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="model" type="model" minOccurs="0"/> + <xsd:element name="headers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="schemaLocations" type="schemasType" minOccurs="0"/> + </xsd:all> + <!-- xsd:attributeGroup ref="cxf-beans:beanAttributes"/--> + <xsd:attribute name="address" type="xsd:string"/> + <xsd:attribute name="serviceClass" type="xsd:string"/> + <xsd:attribute name="inheritHeaders" type="xsd:boolean"/> + <xsd:attribute name="bus" type="xsd:string"/> + <xsd:attribute name="transportId" type="xsd:string"/> + <xsd:attribute name="bindingId" type="xsd:string"/> + <xsd:attribute name="modelRef" type="xsd:string"/> + <xsd:attribute name="username" type="xsd:string"/> + <xsd:attribute name="password" type="xsd:string"/> + <xsd:attribute name="loggingFeatureEnabled" type="xsd:boolean"/> + <xsd:attribute name="loggingSizeLimit" type="xsd:integer" /> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + </xsd:element> + + <xsd:complexType name="schemasType"> + <xsd:sequence> + <xsd:element name="schemaLocation" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="model"> + <xsd:sequence> + <xsd:element name="resource" minOccurs="0" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="operation" minOccurs="0" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="param" minOccurs="0" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="type" type="xsd:string"/> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="path" type="xsd:string"/> + <xsd:attribute name="verb" type="xsd:string"/> + <xsd:attribute name="consumes" type="xsd:string"/> + <xsd:attribute name="produces" type="xsd:string"/> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="path" type="xsd:string"/> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="id" type="xsd:string"/> + </xsd:complexType> +</xsd:schema> \ No newline at end of file Added: websites/production/camel/content/schema/cxf/camel-cxf-2.10.2-spring.xsd ============================================================================== --- websites/production/camel/content/schema/cxf/camel-cxf-2.10.2-spring.xsd (added) +++ websites/production/camel/content/schema/cxf/camel-cxf-2.10.2-spring.xsd Sun Jan 6 15:02:29 2013 @@ -0,0 +1,174 @@ +<?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. +--> +<xsd:schema xmlns="http://camel.apache.org/schema/cxf" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:beans="http://www.springframework.org/schema/beans" + xmlns:cxf-beans="http://cxf.apache.org/configuration/beans" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + targetNamespace="http://camel.apache.org/schema/cxf" + elementFormDefault="qualified" + attributeFormDefault="unqualified"> + + <xsd:import namespace="http://www.springframework.org/schema/beans" schemaLocation="http://www.springframework.org/schema/beans/spring-beans.xsd"/> + <xsd:import namespace="http://cxf.apache.org/configuration/beans" schemaLocation="http://cxf.apache.org/schemas/configuration/cxf-beans.xsd"/> + + <xsd:element name="cxfEndpoint"> + <xsd:complexType> + <xsd:complexContent> + <xsd:extension base="beans:identifiedType"> + <xsd:all> + <xsd:element name="binding" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="dataBinding" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="features" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="handlers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="properties" type="beans:mapType" minOccurs="0"/> + <xsd:element name="schemaLocations" type="schemasType" minOccurs="0"/> + <xsd:element name="serviceFactory" type="xsd:anyType" minOccurs="0"/> + </xsd:all> + <xsd:attributeGroup ref="cxf-beans:beanAttributes"/> + <xsd:attribute name="address" type="xsd:string" /> + <xsd:attribute name="bindingId" type="xsd:string" /> + <xsd:attribute name="bus" type="xsd:string" /> + <xsd:attribute name="serviceClass" type="xsd:string"/> + <xsd:attribute name="transportId" type="xsd:string"/> + <xsd:attribute name="wsdlURL" type="xsd:string" /> + <xsd:attribute name="endpointName" type="xsd:string" /> + <xsd:attribute name="serviceName" type="xsd:string" /> + <xsd:attribute name="loggingFeatureEnabled" type="xsd:boolean"/> + <xsd:attribute name="loggingSizeLimit" type="xsd:integer" /> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + </xsd:element> + + <xsd:element name="rsServer"> + <xsd:complexType> + <xsd:complexContent> + <xsd:extension base="beans:identifiedType"> + <xsd:all> + <xsd:element name="executor" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="features" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="binding" type="xsd:anyType" minOccurs="0" /> + <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="invoker" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="properties" type="beans:mapType" minOccurs="0"/> + <xsd:element name="serviceBeans" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="modelBeans" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="model" type="model" minOccurs="0"/> + <xsd:element name="providers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="extensionMappings" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="languageMappings" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="schemaLocations" type="schemasType" minOccurs="0"/> + </xsd:all> + <xsd:attributeGroup ref="cxf-beans:beanAttributes"/> + <xsd:attribute name="address" type="xsd:string" /> + <xsd:attribute name="bus" type="xsd:string" /> + <xsd:attribute name="serviceClass" type="xsd:string"/> + <xsd:attribute name="transportId" type="xsd:string"/> + <xsd:attribute name="modelRef" type="xsd:string" /> + <xsd:attribute name="bindingId" type="xsd:string" /> + <xsd:attribute name="staticSubresourceResolution" type="xsd:boolean" /> + <xsd:attribute name="loggingFeatureEnabled" type="xsd:boolean"/> + <xsd:attribute name="loggingSizeLimit" type="xsd:integer" /> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + </xsd:element> + + <xsd:element name="rsClient"> + <xsd:complexType> + <xsd:complexContent> + <xsd:extension base="beans:identifiedType"> + <xsd:all> + <xsd:element name="executor" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="features" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="binding" type="xsd:anyType" minOccurs="0" /> + <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="properties" type="beans:mapType" minOccurs="0"/> + <xsd:element name="providers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="modelBeans" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="model" type="model" minOccurs="0"/> + <xsd:element name="headers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="schemaLocations" type="schemasType" minOccurs="0"/> + </xsd:all> + <xsd:attributeGroup ref="cxf-beans:beanAttributes"/> + <xsd:attribute name="address" type="xsd:string" /> + <xsd:attribute name="serviceClass" type="xsd:string"/> + <xsd:attribute name="inheritHeaders" type="xsd:boolean"/> + <xsd:attribute name="bus" type="xsd:string" /> + <xsd:attribute name="transportId" type="xsd:string"/> + <xsd:attribute name="bindingId" type="xsd:string" /> + <xsd:attribute name="modelRef" type="xsd:string" /> + <xsd:attribute name="username" type="xsd:string"/> + <xsd:attribute name="password" type="xsd:string"/> + <xsd:attribute name="loggingFeatureEnabled" type="xsd:boolean"/> + <xsd:attribute name="loggingSizeLimit" type="xsd:integer" /> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + </xsd:element> + + <xsd:complexType name="schemasType"> + <xsd:sequence> + <xsd:element name="schemaLocation" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="model"> + <xsd:sequence> + <xsd:element name="resource" minOccurs="0" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="operation" minOccurs="0" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="param" minOccurs="0" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="type" type="xsd:string"/> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="path" type="xsd:string"/> + <xsd:attribute name="verb" type="xsd:string"/> + <xsd:attribute name="consumes" type="xsd:string"/> + <xsd:attribute name="produces" type="xsd:string"/> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="path" type="xsd:string"/> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="id" type="xsd:string"/> + </xsd:complexType> +</xsd:schema> Added: websites/production/camel/content/schema/cxf/camel-cxf-2.9.4-blueprint.xsd ============================================================================== --- websites/production/camel/content/schema/cxf/camel-cxf-2.9.4-blueprint.xsd (added) +++ websites/production/camel/content/schema/cxf/camel-cxf-2.9.4-blueprint.xsd Sun Jan 6 15:02:29 2013 @@ -0,0 +1,176 @@ +<?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. +--> +<xsd:schema xmlns="http://camel.apache.org/schema/blueprint/cxf" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:beans="http://www.osgi.org/xmlns/blueprint/v1.0.0" + xmlns:cxf-beans="http://cxf.apache.org/configuration/beans" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + targetNamespace="http://camel.apache.org/schema/blueprint/cxf" + elementFormDefault="qualified" + attributeFormDefault="unqualified" + xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd"> + + <xsd:import namespace="http://www.osgi.org/xmlns/blueprint/v1.0.0" schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd"/> + <xsd:import namespace="http://cxf.apache.org/configuration/beans" schemaLocation="http://cxf.apache.org/schemas/configuration/cxf-beans.xsd"/> + + <xsd:element name="cxfEndpoint"> + <xsd:complexType> + <xsd:complexContent> + <xsd:extension base="beans:Tcomponent"> + <xsd:all> + <xsd:element name="binding" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="dataBinding" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="features" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="handlers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="properties" type="beans:Tmap" minOccurs="0"/> + <xsd:element name="schemaLocations" type="schemasType" minOccurs="0"/> + <xsd:element name="serviceBean" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="serviceFactory" type="xsd:anyType" minOccurs="0"/> + </xsd:all> + <!-- xsd:attributeGroup ref="cxf-beans:beanAttributes"/--> + <xsd:attribute name="address" type="xsd:string"/> + <xsd:attribute name="bindingId" type="xsd:string"/> + <xsd:attribute name="bus" type="xsd:string"/> + <xsd:attribute name="serviceClass" type="xsd:string"/> + <xsd:attribute name="transportId" type="xsd:string"/> + <xsd:attribute name="wsdlURL" type="xsd:string"/> + <xsd:attribute name="endpointName" type="xsd:QName"/> + <xsd:attribute name="serviceName" type="xsd:QName"/> + <xsd:attribute name="loggingFeatureEnabled" type="xsd:boolean"/> + <xsd:attribute name="loggingSizeLimit" type="xsd:integer" /> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + </xsd:element> + + <xsd:element name="rsServer"> + <xsd:complexType> + <xsd:complexContent> + <xsd:extension base="beans:Tcomponent"> + <xsd:all> + <xsd:element name="executor" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="features" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="binding" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="invoker" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="properties" type="beans:Tmap" minOccurs="0"/> + <xsd:element name="serviceBeans" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="modelBeans" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="model" type="model" minOccurs="0"/> + <xsd:element name="providers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="extensionMappings" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="languageMappings" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="schemaLocations" type="schemasType" minOccurs="0"/> + </xsd:all> + <!-- xsd:attributeGroup ref="cxf-beans:beanAttributes"/--> + <xsd:attribute name="address" type="xsd:string"/> + <xsd:attribute name="bus" type="xsd:string"/> + <xsd:attribute name="serviceClass" type="xsd:string"/> + <xsd:attribute name="transportId" type="xsd:string"/> + <xsd:attribute name="modelRef" type="xsd:string"/> + <xsd:attribute name="bindingId" type="xsd:string"/> + <xsd:attribute name="staticSubresourceResolution" type="xsd:boolean"/> + <xsd:attribute name="loggingFeatureEnabled" type="xsd:boolean"/> + <xsd:attribute name="loggingSizeLimit" type="xsd:integer" /> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + </xsd:element> + + <xsd:element name="rsClient"> + <xsd:complexType> + <xsd:complexContent> + <xsd:extension base="beans:Tcomponent"> + <xsd:all> + <xsd:element name="executor" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="features" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="binding" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="properties" type="beans:Tmap" minOccurs="0"/> + <xsd:element name="providers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="modelBeans" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="model" type="model" minOccurs="0"/> + <xsd:element name="headers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="schemaLocations" type="schemasType" minOccurs="0"/> + </xsd:all> + <!-- xsd:attributeGroup ref="cxf-beans:beanAttributes"/--> + <xsd:attribute name="address" type="xsd:string"/> + <xsd:attribute name="serviceClass" type="xsd:string"/> + <xsd:attribute name="inheritHeaders" type="xsd:boolean"/> + <xsd:attribute name="bus" type="xsd:string"/> + <xsd:attribute name="transportId" type="xsd:string"/> + <xsd:attribute name="bindingId" type="xsd:string"/> + <xsd:attribute name="modelRef" type="xsd:string"/> + <xsd:attribute name="username" type="xsd:string"/> + <xsd:attribute name="password" type="xsd:string"/> + <xsd:attribute name="loggingFeatureEnabled" type="xsd:boolean"/> + <xsd:attribute name="loggingSizeLimit" type="xsd:integer" /> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + </xsd:element> + + <xsd:complexType name="schemasType"> + <xsd:sequence> + <xsd:element name="schemaLocation" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="model"> + <xsd:sequence> + <xsd:element name="resource" minOccurs="0" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="operation" minOccurs="0" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="param" minOccurs="0" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="type" type="xsd:string"/> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="path" type="xsd:string"/> + <xsd:attribute name="verb" type="xsd:string"/> + <xsd:attribute name="consumes" type="xsd:string"/> + <xsd:attribute name="produces" type="xsd:string"/> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="path" type="xsd:string"/> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="id" type="xsd:string"/> + </xsd:complexType> +</xsd:schema> \ No newline at end of file Added: websites/production/camel/content/schema/cxf/camel-cxf-2.9.4-spring.xsd ============================================================================== --- websites/production/camel/content/schema/cxf/camel-cxf-2.9.4-spring.xsd (added) +++ websites/production/camel/content/schema/cxf/camel-cxf-2.9.4-spring.xsd Sun Jan 6 15:02:29 2013 @@ -0,0 +1,174 @@ +<?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. +--> +<xsd:schema xmlns="http://camel.apache.org/schema/cxf" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:beans="http://www.springframework.org/schema/beans" + xmlns:cxf-beans="http://cxf.apache.org/configuration/beans" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + targetNamespace="http://camel.apache.org/schema/cxf" + elementFormDefault="qualified" + attributeFormDefault="unqualified"> + + <xsd:import namespace="http://www.springframework.org/schema/beans" schemaLocation="http://www.springframework.org/schema/beans/spring-beans.xsd"/> + <xsd:import namespace="http://cxf.apache.org/configuration/beans" schemaLocation="http://cxf.apache.org/schemas/configuration/cxf-beans.xsd"/> + + <xsd:element name="cxfEndpoint"> + <xsd:complexType> + <xsd:complexContent> + <xsd:extension base="beans:identifiedType"> + <xsd:all> + <xsd:element name="binding" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="dataBinding" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="features" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="handlers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="properties" type="beans:mapType" minOccurs="0"/> + <xsd:element name="schemaLocations" type="schemasType" minOccurs="0"/> + <xsd:element name="serviceFactory" type="xsd:anyType" minOccurs="0"/> + </xsd:all> + <xsd:attributeGroup ref="cxf-beans:beanAttributes"/> + <xsd:attribute name="address" type="xsd:string" /> + <xsd:attribute name="bindingId" type="xsd:string" /> + <xsd:attribute name="bus" type="xsd:string" /> + <xsd:attribute name="serviceClass" type="xsd:string"/> + <xsd:attribute name="transportId" type="xsd:string"/> + <xsd:attribute name="wsdlURL" type="xsd:string" /> + <xsd:attribute name="endpointName" type="xsd:string" /> + <xsd:attribute name="serviceName" type="xsd:string" /> + <xsd:attribute name="loggingFeatureEnabled" type="xsd:boolean"/> + <xsd:attribute name="loggingSizeLimit" type="xsd:integer" /> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + </xsd:element> + + <xsd:element name="rsServer"> + <xsd:complexType> + <xsd:complexContent> + <xsd:extension base="beans:identifiedType"> + <xsd:all> + <xsd:element name="executor" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="features" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="binding" type="xsd:anyType" minOccurs="0" /> + <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="invoker" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="properties" type="beans:mapType" minOccurs="0"/> + <xsd:element name="serviceBeans" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="modelBeans" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="model" type="model" minOccurs="0"/> + <xsd:element name="providers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="extensionMappings" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="languageMappings" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="schemaLocations" type="schemasType" minOccurs="0"/> + </xsd:all> + <xsd:attributeGroup ref="cxf-beans:beanAttributes"/> + <xsd:attribute name="address" type="xsd:string" /> + <xsd:attribute name="bus" type="xsd:string" /> + <xsd:attribute name="serviceClass" type="xsd:string"/> + <xsd:attribute name="transportId" type="xsd:string"/> + <xsd:attribute name="modelRef" type="xsd:string" /> + <xsd:attribute name="bindingId" type="xsd:string" /> + <xsd:attribute name="staticSubresourceResolution" type="xsd:boolean" /> + <xsd:attribute name="loggingFeatureEnabled" type="xsd:boolean"/> + <xsd:attribute name="loggingSizeLimit" type="xsd:integer" /> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + </xsd:element> + + <xsd:element name="rsClient"> + <xsd:complexType> + <xsd:complexContent> + <xsd:extension base="beans:identifiedType"> + <xsd:all> + <xsd:element name="executor" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="features" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="binding" type="xsd:anyType" minOccurs="0" /> + <xsd:element name="inInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="inFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="outFaultInterceptors" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="properties" type="beans:mapType" minOccurs="0"/> + <xsd:element name="providers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="modelBeans" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="model" type="model" minOccurs="0"/> + <xsd:element name="headers" type="xsd:anyType" minOccurs="0"/> + <xsd:element name="schemaLocations" type="schemasType" minOccurs="0"/> + </xsd:all> + <xsd:attributeGroup ref="cxf-beans:beanAttributes"/> + <xsd:attribute name="address" type="xsd:string" /> + <xsd:attribute name="serviceClass" type="xsd:string"/> + <xsd:attribute name="inheritHeaders" type="xsd:boolean"/> + <xsd:attribute name="bus" type="xsd:string" /> + <xsd:attribute name="transportId" type="xsd:string"/> + <xsd:attribute name="bindingId" type="xsd:string" /> + <xsd:attribute name="modelRef" type="xsd:string" /> + <xsd:attribute name="username" type="xsd:string"/> + <xsd:attribute name="password" type="xsd:string"/> + <xsd:attribute name="loggingFeatureEnabled" type="xsd:boolean"/> + <xsd:attribute name="loggingSizeLimit" type="xsd:integer" /> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + </xsd:element> + + <xsd:complexType name="schemasType"> + <xsd:sequence> + <xsd:element name="schemaLocation" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="model"> + <xsd:sequence> + <xsd:element name="resource" minOccurs="0" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="operation" minOccurs="0" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="param" minOccurs="0" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="type" type="xsd:string"/> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="path" type="xsd:string"/> + <xsd:attribute name="verb" type="xsd:string"/> + <xsd:attribute name="consumes" type="xsd:string"/> + <xsd:attribute name="produces" type="xsd:string"/> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string"/> + <xsd:attribute name="path" type="xsd:string"/> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="id" type="xsd:string"/> + </xsd:complexType> +</xsd:schema> Added: websites/production/camel/content/schema/spring-security/camel-spring-security-2.10.2.xsd ============================================================================== --- websites/production/camel/content/schema/spring-security/camel-spring-security-2.10.2.xsd (added) +++ websites/production/camel/content/schema/spring-security/camel-spring-security-2.10.2.xsd Sun Jan 6 15:02:29 2013 @@ -0,0 +1,44 @@ +<?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. +--> +<xsd:schema xmlns="http://camel.apache.org/schema/spring-security" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:beans="http://www.springframework.org/schema/beans" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:camel-spring="http://camel.apache.org/schema/spring" + targetNamespace="http://camel.apache.org/schema/spring-security" + elementFormDefault="qualified" + attributeFormDefault="unqualified"> + + <xsd:import namespace="http://www.springframework.org/schema/beans" schemaLocation="http://www.springframework.org/schema/beans/spring-beans.xsd"/> + <xsd:import namespace="http://camel.apache.org/schema/spring" schemaLocation="http://camel.apache.org/schema/spring/camel-spring.xsd"/> + + <xsd:element name="authorizationPolicy"> + <xsd:complexType> + <xsd:attribute name="id" type="xsd:ID" use="required" /> + <xsd:attribute name="access" type="xsd:string" /> + <xsd:attribute name="accessDecisionManager" type="xsd:string" /> + <xsd:attribute name="authenticationAdapter" type="xsd:string" /> + <xsd:attribute name="authenticationManager" type="xsd:string" /> + <xsd:attribute name="useThreadSecurityContext" type="xsd:boolean" default="true"/> + <xsd:attribute name="alwaysReauthenticate" type="xsd:boolean" default="false"/> + </xsd:complexType> + </xsd:element> + +</xsd:schema> Added: websites/production/camel/content/schema/spring-security/camel-spring-security-2.9.4.xsd ============================================================================== --- websites/production/camel/content/schema/spring-security/camel-spring-security-2.9.4.xsd (added) +++ websites/production/camel/content/schema/spring-security/camel-spring-security-2.9.4.xsd Sun Jan 6 15:02:29 2013 @@ -0,0 +1,44 @@ +<?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. +--> +<xsd:schema xmlns="http://camel.apache.org/schema/spring-security" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:beans="http://www.springframework.org/schema/beans" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:camel-spring="http://camel.apache.org/schema/spring" + targetNamespace="http://camel.apache.org/schema/spring-security" + elementFormDefault="qualified" + attributeFormDefault="unqualified"> + + <xsd:import namespace="http://www.springframework.org/schema/beans" schemaLocation="http://www.springframework.org/schema/beans/spring-beans.xsd"/> + <xsd:import namespace="http://camel.apache.org/schema/spring" schemaLocation="http://camel.apache.org/schema/spring/camel-spring.xsd"/> + + <xsd:element name="authorizationPolicy"> + <xsd:complexType> + <xsd:attribute name="id" type="xsd:ID" use="required" /> + <xsd:attribute name="access" type="xsd:string" /> + <xsd:attribute name="accessDecisionManager" type="xsd:string" /> + <xsd:attribute name="authenticationAdapter" type="xsd:string" /> + <xsd:attribute name="authenticationManager" type="xsd:string" /> + <xsd:attribute name="useThreadSecurityContext" type="xsd:boolean" default="true"/> + <xsd:attribute name="alwaysReauthenticate" type="xsd:boolean" default="false"/> + </xsd:complexType> + </xsd:element> + +</xsd:schema>