12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsd:schema targetNamespace="http://websphere.ibm.com/xml/ns/javaee"
- xmlns="http://websphere.ibm.com/xml/ns/javaee"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- elementFormDefault="qualified" attributeFormDefault="unqualified"
- version="1.0">
- <!-- ******************************************************* -->
- <xsd:annotation>
- <xsd:documentation>
- Copyright (c) 2010 IBM Corporation and others.
- All rights reserved. This program and the accompanying materials
- are made available under the terms of the Eclipse Public License v1.0
- which accompanies this distribution, and is available at
- http://www.eclipse.org/legal/epl-v10.html
- Contributors:
- IBM Corporation - initial API and implementation
- </xsd:documentation>
- </xsd:annotation>
- <!-- ******************************************************* -->
- <xsd:element name="application-ext" type="application-extType">
- <xsd:annotation>
- <xsd:documentation>
- The root of the application-ext deployment descriptor.
- </xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <!-- ******************************************************* -->
- <xsd:complexType name="application-extType">
- <xsd:sequence>
- <xsd:element name="module-extension" type="module-extensionType" minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element name="reload-interval" minOccurs="0" maxOccurs="1">
- <xsd:complexType>
- <xsd:attribute name="value" type="xsd:string"/>
- </xsd:complexType>
- </xsd:element>
- <xsd:element name="shared-session-context" minOccurs="0" maxOccurs="1">
- <xsd:complexType>
- <xsd:attribute name="value" type="xsd:boolean"/>
- </xsd:complexType>
- </xsd:element>
- </xsd:sequence>
- <xsd:attribute name="version" type="xsd:string" fixed="1.0" use="required" />
- <xsd:attribute name="id" type="xsd:ID" />
- </xsd:complexType>
- <!-- ******************************************************* -->
- <xsd:complexType name="module-extensionType">
- <xsd:sequence>
- <xsd:element name="alt-bindings" minOccurs="0" maxOccurs="1">
- <xsd:complexType>
- <xsd:attribute name="uri" type="xsd:string"/>
- </xsd:complexType>
- </xsd:element>
- <xsd:element name="alt-extensions" minOccurs="0" maxOccurs="1">
- <xsd:complexType>
- <xsd:attribute name="uri" type="xsd:string"/>
- </xsd:complexType>
- </xsd:element>
- <xsd:element name="alt-root" minOccurs="0" maxOccurs="1">
- <xsd:complexType>
- <xsd:attribute name="uri" type="xsd:string"/>
- </xsd:complexType>
- </xsd:element>
- <!-- This element is for internal use only. -->
- <xsd:element name="absolute-path" minOccurs="0" maxOccurs="1">
- <xsd:complexType>
- <xsd:attribute name="path" type="xsd:string"/>
- </xsd:complexType>
- </xsd:element>
- </xsd:sequence>
- <xsd:attribute name="name" type="xsd:string" />
- <xsd:attribute name="id" type="xsd:ID" />
- </xsd:complexType>
- </xsd:schema>
|