Schema "core.xsd"
Target Namespace:
http://cxf.apache.org/core
Defined Components:
global elements, 6 local elements
Default Namespace-Qualified Form:
Local Elements: qualified; Local Attributes: unqualified
Schema Location:
http://cxf.apache.org/schemas/core.xsd; see XML source
Imports Schemas (3):
cxf-beans.xsd [src], parameterized-types.xsd [src], spring-beans.xsd [src]
Imported by Schema:
mule-cxf.xsd [src]
Annotation
This schema defines beans representing the CXF bus and its core features.
All Element Summary
bus
Type:
anonymous complexType
Content:
complex, 6 attributes, 6 elements
Defined:
globally; see XML source
Includes:
definitions of 2 attributes, 6 elements
Used:
never
fastinfoset The fastinfoset feature enables you to turn on using fastinfoset encoding of xml payloads.
Type:
anonymous complexType
Content:
empty, 1 attribute
Defined:
globally; see XML source
Includes:
definition of 1 attribute
Used:
never
features The list of features that are applied to the bus.
Type:
xsd:anyType
Content:
any
Defined:
locally witnin bus element; see XML source
inFaultInterceptors The list of interceptors that the bus contributes to all inbound fault interceptor chains.
Type:
xsd:anyType
Content:
any
Defined:
locally witnin bus element; see XML source
inInterceptors The list of interceptors that the bus contributes to all inbound message interceptor chains.
Type:
xsd:anyType
Content:
any
Defined:
locally witnin bus element; see XML source
logging The logging feature enables you to log the content of inbound and outbound messages and faults.
Type:
anonymous complexType
Content:
empty, 2 attributes
Defined:
globally; see XML source
Includes:
definitions of 2 attributes
Used:
never
outFaultInterceptors The list of interceptors that the bus contributes to all outbound fault interceptor chains.
Type:
xsd:anyType
Content:
any
Defined:
locally witnin bus element; see XML source
outInterceptors The list of interceptors that the bus contributes to all outbound message interceptor chains.
Type:
xsd:anyType
Content:
any
Defined:
locally witnin bus element; see XML source
properties Specifies a map of properties that are passed to the bus.
Type:
Content:
complex, 2 attributes, 2 elements
Defined:
locally witnin bus element; see XML source
workqueue Configuration for workqueues that CXF uses
Type:
anonymous complexType
Content:
empty, 6 attributes
Defined:
globally; see XML source
Includes:
definitions of 6 attributes
Used:
never
XML Source
<?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 attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://cxf.apache.org/core" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:cxf-beans="http://cxf.apache.org/configuration/beans" xmlns:ptp="http://cxf.apache.org/configuration/parameterized-types" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<xsd:annotation>
<xsd:documentation>
This schema defines beans representing the CXF bus and its core features.
</xsd:documentation>
</xsd:annotation>
<xsd:element name="logging">
<xsd:annotation>
<xsd:documentation>
The logging feature enables you to log the content of inbound and outbound messages and faults.
The content is logged by all log handlers configured in your java.util.logging configuration file,
provided the log level for classes org.apache.cxf.interceptor.LoggingInInterceptor and
org.apache.cxf.interceptor.LoggingOutInterceptor is at least INFO.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence/>
<xsd:attribute default="102400" name="limit" type="xsd:int" use="optional"/>
<xsd:attribute name="id" type="xsd:string" use="optional"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="fastinfoset">
<xsd:annotation>
<xsd:documentation>
The fastinfoset feature enables you to turn on using fastinfoset encoding of
xml payloads.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence/>
<xsd:attribute default="false" name="force" type="xsd:boolean" use="optional"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="workqueue">
<xsd:annotation>
<xsd:documentation>
Configuration for workqueues that CXF uses
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence/>
<xsd:attribute name="highWaterMark" type="ptp:ParameterizedInt" use="optional"/>
<xsd:attribute name="lowWaterMark" type="ptp:ParameterizedInt" use="optional"/>
<xsd:attribute name="initialSize" type="ptp:ParameterizedInt" use="optional"/>
<xsd:attribute name="queueSize" type="ptp:ParameterizedInt" use="optional"/>
<xsd:attribute name="name" type="xsd:string" use="required"/>
<xsd:attribute name="dequeueTimeout" type="ptp:ParameterizedLong" use="optional"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="bus">
<xsd:complexType>
<xsd:all>
<xsd:element minOccurs="0" name="features" type="xsd:anyType">
<xsd:annotation>
<xsd:documentation>
The list of features that are applied to the bus.
Child elements of this element must be beans whose bean class extends
org.apache.cxf.AbstractFeature, or references to such beans.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element minOccurs="0" name="inInterceptors" type="xsd:anyType">
<xsd:annotation>
<xsd:documentation>
The list of interceptors that the bus contributes to all inbound message interceptor chains.
Child elements of this element must be beans whose bean class implements
org.apache.cxf.Interceptor, or references to such beans.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element minOccurs="0" name="inFaultInterceptors" type="xsd:anyType">
<xsd:annotation>
<xsd:documentation>
The list of interceptors that the bus contributes to all inbound fault interceptor chains.
Child elements of this element must be beans whose bean class implements
org.apache.cxf.Interceptor, or references to such beans.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element minOccurs="0" name="outInterceptors" type="xsd:anyType">
<xsd:annotation>
<xsd:documentation>
The list of interceptors that the bus contributes to all outbound message interceptor chains.
Child elements of this element must be beans whose bean class implements
org.apache.cxf.Interceptor, or references to such beans.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element minOccurs="0" name="outFaultInterceptors" type="xsd:anyType">
<xsd:annotation>
<xsd:documentation>
The list of interceptors that the bus contributes to all outbound fault interceptor chains.
Child elements of this element must be beans whose bean class implements
org.apache.cxf.Interceptor, or references to such beans.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element minOccurs="0" name="properties" type="beans:mapType">
<xsd:annotation>
<xsd:documentation>
Specifies a map of properties that are passed to the bus.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:all>
<xsd:attributeGroup ref="cxf-beans:beanAttributes"/>
<xsd:attribute name="bus" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
Name of the bus that is being configured. Defaults to "cxf", but can
be used to specify a different bus to allow for multiple Bus instances
within an application.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="id" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
Unique identifier for the particular Bus instance. Mostly used by the
JMX management and OSGi service registry to provide some level of
persitent naming to the Bus instances. The default is "cxf" + random number.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:schema>

XML schema documentation generated with DocFlex/XML RE 1.8.5 using DocFlex/XML XSDDoc 2.5.0 template set. All content model diagrams generated by Altova XMLSpy via DocFlex/XML XMLSpy Integration.