[ https://issues.apache.org/jira/browse/CAMEL-3452?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13011541#comment-13011541 ]
Edstrom Johan commented on CAMEL-3452: -------------------------------------- The schemas for the CXF stuff. This is less complex than what is used in CXF. <!-- 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:cxf-beans="http://cxf.apache.org/configuration/beans" targetNamespace="http://camel.apache.org/schema/blueprint/cxf" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xsd:import namespace="http://cxf.apache.org/configuration/beans" schemaLocation="http://cxf.apache.org/schemas/configuration/cxf-beans.xsd"/> <xsd:complexType name="identifiedType" abstract="true"> <xsd:attribute name="id" type="xsd:ID"> </xsd:attribute> </xsd:complexType> <xsd:complexType name="Map"> <xsd:sequence minOccurs="0" maxOccurs="unbounded"> <xsd:element name="entry" type="entryType"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="entryType"> <xsd:sequence/> <xsd:attribute name="key" type="xsd:string"> <xsd:annotation> <xsd:documentation><![CDATA[ Each map element must specify its key as attribute or as child element. A key attribute is always a String value. ]]></xsd:documentation> </xsd:annotation> </xsd:attribute> <xsd:attribute name="key-ref" type="xsd:string"> <xsd:annotation> <xsd:documentation><![CDATA[ A short-cut alternative to a to a "key" element with a nested "<ref bean='...'/>". ]]></xsd:documentation> </xsd:annotation> </xsd:attribute> <xsd:attribute name="value" type="xsd:string"> <xsd:annotation> <xsd:documentation><![CDATA[ A short-cut alternative to a nested "<value>...</value>" element. ]]></xsd:documentation> </xsd:annotation> </xsd:attribute> <xsd:attribute name="value-ref" type="xsd:string"> <xsd:annotation> <xsd:documentation><![CDATA[ A short-cut alternative to a nested "<ref bean='...'/>". ]]></xsd:documentation> </xsd:annotation> </xsd:attribute> </xsd:complexType> <xsd:element name="cxfEndpoint"> <xsd:complexType> <xsd:complexContent> <xsd:extension base="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="Map" 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:extension> </xsd:complexContent> </xsd:complexType> </xsd:element> <xsd:element name="rsServer"> <xsd:complexType> <xsd:complexContent> <xsd:extension base="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="Map" 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:extension> </xsd:complexContent> </xsd:complexType> </xsd:element> <xsd:element name="rsClient"> <xsd:complexType> <xsd:complexContent> <xsd:extension base="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="Map" 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: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> > camel-cxf - Add support for blueprint namespace parser for the camel-cxf.xsd > schema > ----------------------------------------------------------------------------------- > > Key: CAMEL-3452 > URL: https://issues.apache.org/jira/browse/CAMEL-3452 > Project: Camel > Issue Type: New Feature > Components: camel-blueprint, camel-cxf > Affects Versions: 2.5.0 > Reporter: Claus Ibsen > Assignee: Edstrom Johan > Fix For: 2.8.0 > > > The schema for camel-cxf > http://camel.apache.org/schema/cxf/camel-cxf.xsd > Needs a blueprint namepsace parser so we can use CXF in blueprint XML files. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira