ibm-application-ext_1_0.xsd 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsd:schema targetNamespace="http://websphere.ibm.com/xml/ns/javaee"
  3. xmlns="http://websphere.ibm.com/xml/ns/javaee"
  4. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  5. elementFormDefault="qualified" attributeFormDefault="unqualified"
  6. version="1.0">
  7. <!-- ******************************************************* -->
  8. <xsd:annotation>
  9. <xsd:documentation>
  10. Copyright (c) 2010 IBM Corporation and others.
  11. All rights reserved. This program and the accompanying materials
  12. are made available under the terms of the Eclipse Public License v1.0
  13. which accompanies this distribution, and is available at
  14. http://www.eclipse.org/legal/epl-v10.html
  15. Contributors:
  16. IBM Corporation - initial API and implementation
  17. </xsd:documentation>
  18. </xsd:annotation>
  19. <!-- ******************************************************* -->
  20. <xsd:element name="application-ext" type="application-extType">
  21. <xsd:annotation>
  22. <xsd:documentation>
  23. The root of the application-ext deployment descriptor.
  24. </xsd:documentation>
  25. </xsd:annotation>
  26. </xsd:element>
  27. <!-- ******************************************************* -->
  28. <xsd:complexType name="application-extType">
  29. <xsd:sequence>
  30. <xsd:element name="module-extension" type="module-extensionType" minOccurs="0" maxOccurs="unbounded"/>
  31. <xsd:element name="reload-interval" minOccurs="0" maxOccurs="1">
  32. <xsd:complexType>
  33. <xsd:attribute name="value" type="xsd:string"/>
  34. </xsd:complexType>
  35. </xsd:element>
  36. <xsd:element name="shared-session-context" minOccurs="0" maxOccurs="1">
  37. <xsd:complexType>
  38. <xsd:attribute name="value" type="xsd:boolean"/>
  39. </xsd:complexType>
  40. </xsd:element>
  41. </xsd:sequence>
  42. <xsd:attribute name="version" type="xsd:string" fixed="1.0" use="required" />
  43. <xsd:attribute name="id" type="xsd:ID" />
  44. </xsd:complexType>
  45. <!-- ******************************************************* -->
  46. <xsd:complexType name="module-extensionType">
  47. <xsd:sequence>
  48. <xsd:element name="alt-bindings" minOccurs="0" maxOccurs="1">
  49. <xsd:complexType>
  50. <xsd:attribute name="uri" type="xsd:string"/>
  51. </xsd:complexType>
  52. </xsd:element>
  53. <xsd:element name="alt-extensions" minOccurs="0" maxOccurs="1">
  54. <xsd:complexType>
  55. <xsd:attribute name="uri" type="xsd:string"/>
  56. </xsd:complexType>
  57. </xsd:element>
  58. <xsd:element name="alt-root" minOccurs="0" maxOccurs="1">
  59. <xsd:complexType>
  60. <xsd:attribute name="uri" type="xsd:string"/>
  61. </xsd:complexType>
  62. </xsd:element>
  63. <!-- This element is for internal use only. -->
  64. <xsd:element name="absolute-path" minOccurs="0" maxOccurs="1">
  65. <xsd:complexType>
  66. <xsd:attribute name="path" type="xsd:string"/>
  67. </xsd:complexType>
  68. </xsd:element>
  69. </xsd:sequence>
  70. <xsd:attribute name="name" type="xsd:string" />
  71. <xsd:attribute name="id" type="xsd:ID" />
  72. </xsd:complexType>
  73. </xsd:schema>