123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ~ JBoss, Home of Professional Open Source.
- ~ Copyright 2011, Red Hat, Inc., and individual contributors
- ~ as indicated by the @author tags. See the copyright.txt file in the
- ~ distribution for a full listing of individual contributors.
- ~
- ~ This is free software; you can redistribute it and/or modify it
- ~ under the terms of the GNU Lesser General Public License as
- ~ published by the Free Software Foundation; either version 2.1 of
- ~ the License, or (at your option) any later version.
- ~
- ~ This software is distributed in the hope that it will be useful,
- ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
- ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- ~ Lesser General Public License for more details.
- ~
- ~ You should have received a copy of the GNU Lesser General Public
- ~ License along with this software; if not, write to the Free
- ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- -->
- <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ex="http://www.w3.org/2001/XMLSchema"
- targetNamespace="urn:jboss:deployment-structure:1.2"
- xmlns="urn:jboss:deployment-structure:1.2"
- elementFormDefault="unqualified"
- attributeFormDefault="unqualified"
- version="1.2">
- <!-- Root element -->
- <xsd:element name="jboss-deployment-structure" type="jbossStructureType">
- <xsd:annotation>
- <xsd:documentation>
- Root element for a a jboss-structure file.
- </xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:complexType name="jbossStructureType">
- <xsd:annotation>
- <xsd:documentation>
- The jboss structure declaration type; contains deployments and additional modules.
- </xsd:documentation>
- </xsd:annotation>
- <xsd:sequence minOccurs="0" maxOccurs="unbounded">
- <xsd:element name="ear-subdeployments-isolated" type="xsd:boolean" minOccurs="0" maxOccurs="1">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Flag indicating whether each of the subdeployments within a .ear can access classes belonging to
- another subdeployment within the same .ear. Setting this to false, allows the subdeployments to
- see classes belonging to other subdeployments within the .ear.
- For example:
- myapp.ear
- |
- |--- web.war
- |
- |--- ejb1.jar
- |
- |--- ejb2.jar
- If the ear-subdeployments-isolated is set to false, then the classes in web.war can access
- classes
- belonging to ejb1.jar and ejb2.jar. Similarly, classes from ejb1.jar can access classes from
- ejb2.jar
- (and vice-versa).
- *Note that this flag, has no effect on the isolated classloader of the .war file(s). i.e.
- irrespective
- of whether this flag is set to true or false, the .war within a .ear will have a isolated
- classloader
- and other subdeployments within that .ear will not be able to access classes from that .war.
- This is
- as per spec*
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="deployment" type="deploymentType" minOccurs="0" maxOccurs="1">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Element that corresponds to a deployment. This is used to customise
- class loading for a deployment or a sub deployment.
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="sub-deployment" type="subDeploymentType" minOccurs="0" maxOccurs="unbounded">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Element that corresponds to a deployment. This is used to customise
- class loading for a deployment or a sub deployment.
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="module" type="moduleType" minOccurs="0" maxOccurs="unbounded">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Additional module declaration. This can be used to create additional modules
- from resource roots inside or outside the deployment.
- </documentation>
- </annotation>
- </xsd:element>
- </xsd:sequence>
- </xsd:complexType>
- <xsd:complexType name="deploymentType">
- <xsd:annotation>
- <xsd:documentation>
- The declaration type; contains additional dependencies and resources.
- </xsd:documentation>
- </xsd:annotation>
- <xsd:all>
- <xsd:element name="module-alias" type="moduleAliasType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Element for a module alias declaration.
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="exports" type="filterType" minOccurs="0">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Lists filter expressions to apply to the export filter of the local resources of this module
- (optional). By default, everything is exported. If filter expressions are provided, the default
- action is to accept all paths if no filters match.
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="dependencies" type="dependenciesType" minOccurs="0">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Lists the dependencies of this module (optional).
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="exclusions" type="exclusionsType" minOccurs="0">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Lists the excluded module dependencies.
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="resources" type="resourcesType" minOccurs="0">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Lists the resource roots of this module (optional).
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="transformers" type="transformerSetType" minOccurs="0">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Lists the class file transformers that should be applied for classes loaded by this module.
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="local-last" type="localLast" minOccurs="0" maxOccurs="1">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- If this is true then local resources will have the lowest priority in the dependency list.
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="exclude-subsystems" type="exclude-subsystemsType" minOccurs="0" maxOccurs="1">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- List of subsystems to be excluded. If this is specified for the top level it will be inherited by
- sub deployments, unless the sub deployments specify their own (possibly empty) list.
- </documentation>
- </annotation>
- </xsd:element>
- </xsd:all>
- </xsd:complexType>
- <xsd:complexType name="subDeploymentType">
- <xsd:complexContent>
- <xsd:extension base="deploymentType">
- <xsd:attribute name="name" type="xsd:string" use="required">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The deployment name.
- </documentation>
- </annotation>
- </xsd:attribute>
- </xsd:extension>
- </xsd:complexContent>
- </xsd:complexType>
- <xsd:complexType name="moduleType">
- <xsd:annotation>
- <xsd:documentation>
- The module declaration type; contains dependencies and resources.
- </xsd:documentation>
- </xsd:annotation>
- <xsd:all>
- <xsd:element name="module-alias" type="moduleAliasType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Element for a module alias declaration.
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="exports" type="filterType" minOccurs="0">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Lists filter expressions to apply to the export filter of the local resources of this module
- (optional). By default, everything is exported. If filter expressions are provided, the default
- action is to accept all paths if no filters match.
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="dependencies" type="dependenciesType" minOccurs="0">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Lists the dependencies of this module (optional).
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="resources" type="resourcesType" minOccurs="0">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Lists the resource roots of this module (optional).
- </documentation>
- </annotation>
- </xsd:element>
- </xsd:all>
- <xsd:attribute name="name" type="moduleNameType" use="required">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The name of this module (required).
- </documentation>
- </annotation>
- </xsd:attribute>
- <xsd:attribute name="slot" type="moduleSlotType" use="optional">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The version slot of this module (optional).
- </documentation>
- </annotation>
- </xsd:attribute>
- </xsd:complexType>
- <xsd:simpleType name="moduleNameType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A module name, which consists of one or more dot (.)-separated segments. Each segment must begin and end
- with an alphanumeric or underscore (_), and may otherwise contain alphanumerics, underscores, and
- hyphens
- (-).
- </documentation>
- </annotation>
- <xsd:restriction base="xsd:string">
- <xsd:pattern
- value="[a-zA-Z0-9_]([-a-zA-Z0-9_]*[a-zA-Z0-9_])?(\.[a-zA-Z0-9_]([-a-zA-Z0-9_]*[a-zA-Z0-9_])?)*"/>
- </xsd:restriction>
- </xsd:simpleType>
- <xsd:simpleType name="moduleSlotType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A module version slot. A slot may consist of one or more alphanumerics, hyphens (-), underscores (_),
- plus signs (+), asterisks (*), or dots (.).
- </documentation>
- </annotation>
- <xsd:restriction base="xsd:string">
- <xsd:pattern value="[-a-zA-Z0-9_+*.]+"/>
- </xsd:restriction>
- </xsd:simpleType>
- <xsd:complexType name="dependenciesType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A list of zero or more module dependencies.
- </documentation>
- </annotation>
- <xsd:choice minOccurs="0" maxOccurs="unbounded">
- <xsd:element name="module" type="moduleDependencyType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A specified module dependency.
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="system" type="systemDependencyType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A dependency on the system (or embedding) class loader.
- </documentation>
- </annotation>
- </xsd:element>
- </xsd:choice>
- </xsd:complexType>
- <xsd:complexType name="moduleDependencyType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A single module dependency expression.
- </documentation>
- </annotation>
- <xsd:choice minOccurs="0" maxOccurs="unbounded">
- <xsd:element name="exports" type="filterType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A filter used to restrict what packages or directories from this dependency are re-exported by
- this module. See also the "export" and "services" attributes. The default action of this filter
- list is controlled by the value of the "export" attribute. Regardless of the setting of these
- attributes, this filter always behaves as if it has a final entry which rejects META-INF and
- all of its subdirectories.
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="imports" type="filterType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A filter used to restrict what packages or directories from this dependency are visible to this
- module. See also the "services" attribute. The default action of this filter list is to reject
- a path if not matched.
- </documentation>
- </annotation>
- </xsd:element>
- </xsd:choice>
- <xsd:attribute name="name" type="moduleNameType" use="required">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The dependency module name (required).
- </documentation>
- </annotation>
- </xsd:attribute>
- <xsd:attribute name="slot" type="moduleSlotType" use="optional">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The dependency module version slot (optional).
- </documentation>
- </annotation>
- </xsd:attribute>
- <xsd:attribute name="export" type="xsd:boolean" use="optional" default="false">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Specifies whether this module dependency is re-exported by default (default is "false"). Setting
- this attribute to true sets the default action for the export filter list to "accept"; leaving it
- as false sets the default action to "reject". Thus you can still export dependency resources even
- if this attribute is false by listing explicit paths for the export list.
- </documentation>
- </annotation>
- </xsd:attribute>
- <xsd:attribute name="services" type="serviceDispositionType" use="optional" default="none">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Specifies whether and how services found in this dependency are used (default is "none"). Specifying
- a value of "import" for this attribute is equivalent to adding a filter at the end of the import
- filter list which includes the META-INF/services path from the dependency module. Setting a value
- of "export" for this attribute is equivalent to the same action on the export filter list.
- </documentation>
- </annotation>
- </xsd:attribute>
- <xsd:attribute name="optional" type="xsd:boolean" use="optional" default="false">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Specifies whether this dependency is optional (defaults to false). An optional dependency will not
- cause the module to fail to load if not found; however if the module is added later, it will not be
- retroactively linked into this module's dependency list.
- </documentation>
- </annotation>
- </xsd:attribute>
- <xsd:attribute name="annotations" type="xsd:boolean" use="optional" default="false">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Specifies whether annotation indexes found in the dependency should be imported.
- </documentation>
- </annotation>
- </xsd:attribute>
- <xsd:attribute name="meta-inf" type="metaInfDispositionType" use="optional" default="none">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Specifies whether and how META-INF entries in this dependency are used (default is "none").
- Specifying
- a value of "import" for this attribute is equivalent to adding a filter at the end of the import
- filter list which includes the META-INF/** path from the dependency module. Setting a value
- of "export" for this attribute is equivalent to the same action on the export filter list.
- </documentation>
- </annotation>
- </xsd:attribute>
- </xsd:complexType>
- <xsd:complexType name="systemDependencyType">
- <xsd:all>
- <xsd:element name="paths" type="pathSetType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The list of paths which are applicable for this system dependency.
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="exports" type="filterType" minOccurs="0">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A filter used to restrict what packages or directories from this dependency are re-exported by
- this module. See also the "export" and "services" attributes. The default action of this filter
- list is controlled by the value of the "export" attribute. Regardless of the setting of these
- attributes, this filter always behaves as if it has a final entry which rejects META-INF and
- all of its subdirectories.
- </documentation>
- </annotation>
- </xsd:element>
- </xsd:all>
- <xsd:attribute name="export" type="xsd:boolean" use="optional" default="false">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Specifies whether this module dependency is re-exported by default (default is "false"). Setting
- this attribute to true sets the default action for the export filter list to "accept"; leaving it
- as false sets the default action to "reject". Thus you can still export dependency resources even
- if this attribute is false by listing explicit paths for the export list.
- </documentation>
- </annotation>
- </xsd:attribute>
- </xsd:complexType>
- <xsd:complexType name="exclusionsType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A list of zero or more excluded module dependencies.
- </documentation>
- </annotation>
- <xsd:choice minOccurs="0" maxOccurs="unbounded">
- <xsd:element name="module" type="moduleExclusionType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A specified module exclusion.
- </documentation>
- </annotation>
- </xsd:element>
- </xsd:choice>
- </xsd:complexType>
- <xsd:complexType name="moduleExclusionType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A single module dependency exclusion.
- </documentation>
- </annotation>
- <xsd:attribute name="name" type="moduleNameType" use="required">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The excluded module name (required).
- </documentation>
- </annotation>
- </xsd:attribute>
- <xsd:attribute name="slot" type="moduleSlotType" use="optional">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The excluded module version slot (optional).
- </documentation>
- </annotation>
- </xsd:attribute>
- </xsd:complexType>
- <xsd:simpleType name="serviceDispositionType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The requested behavior for service handling on a dependency.
- </documentation>
- </annotation>
- <xsd:restriction base="xsd:token">
- <xsd:enumeration value="none">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Do not import or export services from this dependency.
- </documentation>
- </annotation>
- </xsd:enumeration>
- <xsd:enumeration value="import">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Import, but do not re-export, services from this dependency.
- </documentation>
- </annotation>
- </xsd:enumeration>
- <xsd:enumeration value="export">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Import and re-export services found in this dependency.
- </documentation>
- </annotation>
- </xsd:enumeration>
- </xsd:restriction>
- </xsd:simpleType>
- <xsd:simpleType name="metaInfDispositionType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The requested behavior for META-INF handling on a dependency.
- </documentation>
- </annotation>
- <xsd:restriction base="xsd:token">
- <xsd:enumeration value="none">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Do not import or export META-INF items from this dependency.
- </documentation>
- </annotation>
- </xsd:enumeration>
- <xsd:enumeration value="import">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Import, but do not re-export, META-INF items from this dependency.
- </documentation>
- </annotation>
- </xsd:enumeration>
- <xsd:enumeration value="export">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- Import and re-export META-INF items found in this dependency.
- </documentation>
- </annotation>
- </xsd:enumeration>
- </xsd:restriction>
- </xsd:simpleType>
- <xsd:complexType name="classNameType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A class name.
- </documentation>
- </annotation>
- <xsd:attribute name="name" type="xsd:string" use="required">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The class name.
- </documentation>
- </annotation>
- </xsd:attribute>
- </xsd:complexType>
- <xsd:complexType name="pathType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A filesystem path name.
- </documentation>
- </annotation>
- <xsd:attribute name="name" type="xsd:string" use="required">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The path name.
- </documentation>
- </annotation>
- </xsd:attribute>
- </xsd:complexType>
- <xsd:complexType name="resourcesType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A list of zero or more resource roots for this deployment.
- </documentation>
- </annotation>
- <xsd:choice minOccurs="0" maxOccurs="unbounded">
- <xsd:element name="resource-root" type="resourceType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A resource root within this deployment.
- </documentation>
- </annotation>
- </xsd:element>
- </xsd:choice>
- </xsd:complexType>
- <xsd:complexType name="resourceType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A resource root within a deployment.
- </documentation>
- </annotation>
- <xsd:all>
- <xsd:element name="filter" type="filterType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A path filter specification for this resource root (optional). By default all paths are
- accepted.
- </documentation>
- </annotation>
- </xsd:element>
- </xsd:all>
- <xsd:attribute name="name" type="xsd:string" use="optional">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The name of this resource root (optional). If not specified, defaults to the value of the path
- attribute.
- </documentation>
- </annotation>
- </xsd:attribute>
- <xsd:attribute name="path" type="xsd:string" use="required">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The path of this resource root, relative to the path in which the module.xml file is found.
- </documentation>
- </annotation>
- </xsd:attribute>
- <xsd:attribute name="use-physical-code-source" type="xsd:boolean" default="false" use="optional">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A boolean which signifies how the code source URL for this resource should be established.
- If true, the physical location of the deployment is used; if false, the VFS location of the
- deployment is used. Default is false.
- </documentation>
- </annotation>
- </xsd:attribute>
- </xsd:complexType>
- <xsd:complexType name="filterType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A filter specification, consisting of zero or more filter items.
- </documentation>
- </annotation>
- <xsd:choice minOccurs="0" maxOccurs="unbounded">
- <xsd:element name="include" type="pathSpecType" minOccurs="0">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A path to include. The path value can be a path name or a "glob" which may include the special
- wildcards "*", "**", and "?".
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="exclude" type="pathSpecType" minOccurs="0">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A path to exclude. The path value can be a path name or a "glob" which may include the special
- wildcards "*", "**", and "?".
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="include-set" type="pathSetType" minOccurs="0">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A set of literal path names to include. Wildcards are not supported.
- </documentation>
- </annotation>
- </xsd:element>
- <xsd:element name="exclude-set" type="pathSetType" minOccurs="0">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A set of literal path names to exclude. Wildcards are not supported.
- </documentation>
- </annotation>
- </xsd:element>
- </xsd:choice>
- </xsd:complexType>
- <xsd:complexType name="pathSpecType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A path specification type, which may include wildcards.
- </documentation>
- </annotation>
- <xsd:attribute name="path" type="xsd:string" use="required">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The path name, which can be a literal path name or it may include the special wildcards "*", "**",
- and "?".
- </documentation>
- </annotation>
- </xsd:attribute>
- </xsd:complexType>
- <xsd:complexType name="pathSetType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A set of literal path names which can be used for efficient matching against multiple possible values.
- </documentation>
- </annotation>
- <xsd:choice minOccurs="0" maxOccurs="unbounded">
- <xsd:element name="path" type="pathType" minOccurs="0">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The path name to include in the set.
- </documentation>
- </annotation>
- </xsd:element>
- </xsd:choice>
- </xsd:complexType>
- <xsd:complexType name="transformerSetType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A list of java.lang.instrument.ClassFileTransformer implementations that will be applied at classloading
- </documentation>
- </annotation>
- <xsd:choice minOccurs="0" maxOccurs="unbounded">
- <xsd:element name="transformer" type="transformerType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The transformer class to include in the set.
- </documentation>
- </annotation>
- </xsd:element>
- </xsd:choice>
- </xsd:complexType>
- <xsd:complexType name="transformerType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A java.lang.instrument.ClassFileTransformer that will be applied at classloading
- </documentation>
- </annotation>
- <xsd:attribute name="class" type="xsd:string" use="required">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The class name of the transformer
- </documentation>
- </annotation>
- </xsd:attribute>
- </xsd:complexType>
- <xsd:complexType name="localLast">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- If set to true the modules local content will have the lowest priority in the
- dependency list.
- </documentation>
- </annotation>
- <xsd:attribute name="value" type="xsd:boolean" use="required">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- </annotation>
- </xsd:attribute>
- </xsd:complexType>
- <xsd:complexType name="moduleAliasType">
- <xsd:attribute name="name" type="moduleNameType" use="required">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The name of this module alias (required).
- </documentation>
- </annotation>
- </xsd:attribute>
- <xsd:attribute name="slot" type="moduleSlotType" use="optional">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The version slot of this module alias (optional).
- </documentation>
- </annotation>
- </xsd:attribute>
- </xsd:complexType>
- <xsd:complexType name="exclude-subsystemsType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A list of zero or more subsystems that should not have their DeploymentUnitProcessor's run.
- </documentation>
- </annotation>
- <xsd:sequence>
- <ex:element name="subsystem" type="subsystemType" minOccurs="0" maxOccurs="unbounded" />
- </xsd:sequence>
- </xsd:complexType>
- <xsd:complexType name="subsystemType">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- A subsystem that should be excluded from processing the deployment.
- </documentation>
- </annotation>
- <xsd:attribute name="name" type="xsd:string" use="required">
- <annotation xmlns="http://www.w3.org/2001/XMLSchema">
- <documentation>
- The name of this subsystem (required).
- </documentation>
- </annotation>
- </xsd:attribute>
- </xsd:complexType>
- </xsd:schema>
|