Schema "mule-jetty.xsd"
Target Namespace:
http://www.mulesoft.org/schema/mule/jetty
Defined Components:
global elements, 1 local element, 4 complexTypes
Default Namespace-Qualified Form:
Local Elements: qualified; Local Attributes: unqualified
Schema Location:
http://www.mulesoft.org/schema/mule/jetty/3.3/mule-jetty.xsd; see XML source
Imports Schemas (4):
mule-http.xsd [src], mule-schemadoc.xsd [src], mule.xsd [src], xml.xsd [src]
Imported by Schemas (2):
_mule-all-included.xsd, mule-jetty-ssl.xsd [src]
Annotation
The Jetty transport provides support for exposing services over HTTP by embedding a light-weight Jetty server. You can only define inbound endpoints with this transport.
All Element Summary
connector Allows Mule to expose Mule Services over HTTP using a Jetty HTTP server.
Type:
Content:
complex, 4 attributes, attr. wildcard, 2 elements
Subst.Gr:
may substitute for element mule:abstract-connector
Defined:
globally; see XML source
Used:
never
endpoint Allows users to configure a global Jetty HTTP endpoint.
Type:
Content:
complex, 20 attributes, attr. wildcard, 16 elements
Subst.Gr:
may substitute for element mule:abstract-global-endpoint
Defined:
globally; see XML source
Used:
never
inbound-endpoint Allows a Mule service to receive requests over HTTP using a Jetty server.
Type:
Content:
complex, 19 attributes, attr. wildcard, 16 elements
Subst.Gr:
may substitute for element mule:abstract-inbound-endpoint
Defined:
globally; see XML source
Used:
never
webapps Allows configuring of a directory which contains WAR files to be served out by Jetty.
Type:
Content:
empty, 5 attributes
Defined:
locally witnin jettyConnectorType complexType; see XML source
Complex Type Summary
Content:
complex, 20 attributes, attr. wildcard, 16 elements
Defined:
globally; see XML source
Used:
Content:
complex, 19 attributes, attr. wildcard, 16 elements
Defined:
globally; see XML source
Used:
Content:
complex, 4 attributes, attr. wildcard, 2 elements
Defined:
globally; see XML source
Includes:
definitions of 3 attributes, 1 element
Used:
Content:
empty, 5 attributes
Defined:
globally; see XML source
Includes:
definitions of 5 attributes
Used:
XML Source
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xsd:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.mulesoft.org/schema/mule/jetty" xmlns="http://www.mulesoft.org/schema/mule/jetty" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:mule="http://www.mulesoft.org/schema/mule/core" xmlns:schemadoc="http://www.mulesoft.org/schema/mule/schemadoc" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
<xsd:annotation>
<xsd:documentation>
The Jetty transport provides support for exposing services over HTTP by embedding a light-weight Jetty server. You can only define inbound endpoints with this transport.
</xsd:documentation>
<xsd:appinfo>
<schemadoc:short-name>Jetty</schemadoc:short-name>
<schemadoc:page-title>Jetty Transport</schemadoc:page-title>
<schemadoc:transport-features dispatchEvents="false" receiveEvents="true" requestEvents="true" streaming="true" transactions="false">
<schemadoc:MEPs default="request-response" supported="one-way, request-response"/>
</schemadoc:transport-features>
</xsd:appinfo>
</xsd:annotation>
<xsd:element name="connector" substitutionGroup="mule:abstract-connector" type="jettyConnectorType">
<xsd:annotation>
<xsd:documentation>
Allows Mule to expose Mule Services over HTTP using a Jetty HTTP server. A single Jetty server is created for each connector instance. One connector can serve many endpoints. Users should rarely need to have more than one Jetty connector. The Jetty connector can be configured using a Jetty XML config file, but the default configuration is sufficient for most scenarios.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="jettyConnectorType">
<xsd:complexContent>
<xsd:extension base="mule:abstractConnectorType">
<xsd:sequence>
<xsd:element maxOccurs="1" minOccurs="0" name="webapps" type="webappsType">
<xsd:annotation>
<xsd:documentation>
Allows configuring of a directory which contains WAR files to be
served out by Jetty.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="configFile" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
The location of the Jetty config file to configure this connector with.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="useContinuations" type="mule:substitutableBoolean">
<xsd:annotation>
<xsd:documentation>
Whether to use continuations to free up connections in high load situations.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="resourceBase" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation>
Specifies a local path where files will be served from. The local path gets mapped directly to the path on the 'serverUrl'.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="webappsType">
<xsd:attribute name="port" type="mule:substitutablePortNumber">
<xsd:annotation>
<xsd:documentation>
The port of the Jetty instance. Default: 8585
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="host" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
The host of the Jetty instance. Default: 0.0.0.0 (all network interfaces)
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="directory" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
The directory where webapps can be found. Default: ${app.home}/webapps
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="serverClasses" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
A comma delimited list of classes which cannot be seen by webapp context classloaders but can be overridden by the webapp.
Defaults to: org.mortbay.jetty.plus.jaas., org.mortbay.jetty., org.slf4j.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="systemClasses" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
A comma delimited list of classes which cannot be overridden by webapp classloaders.
Defaults to: java., javax.servlet., javax.xml., org.mortbay., org.xml.,org.w3c., org.apache.commons.logging., org.apache.log4j.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:element name="inbound-endpoint" substitutionGroup="mule:abstract-inbound-endpoint" type="inboundEndpointType">
<xsd:annotation>
<xsd:documentation>
Allows a Mule service to receive requests over HTTP using a Jetty server.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="inboundEndpointType">
<xsd:complexContent>
<xsd:extension base="http:inboundEndpointType"/>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="endpoint" substitutionGroup="mule:abstract-global-endpoint" type="globalEndpointType">
<xsd:annotation>
<xsd:documentation>
Allows users to configure a global Jetty HTTP endpoint. Note that this can only be used as an inbound-endpoint reference.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="globalEndpointType">
<xsd:complexContent>
<xsd:extension base="http:globalEndpointType"/>
</xsd:complexContent>
</xsd:complexType>
</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.