application_1_2.dtd 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <!--
  2. Copyright 1999 Sun Microsystems, Inc. 901 San Antonio Road,
  3. Palo Alto, CA 94303, U.S.A. All rights reserved.
  4. This product or document is protected by copyright and distributed
  5. under licenses restricting its use, copying, distribution, and
  6. decompilation. No part of this product or documentation may be
  7. reproduced in any form by any means without prior written authorization
  8. of Sun and its licensors, if any.
  9. Third party software, including font technology, is copyrighted and
  10. licensed from Sun suppliers.
  11. Sun, Sun Microsystems, the Sun Logo, Solaris, Java, JavaServer Pages, Java
  12. Naming and Directory Interface, JDBC, JDK, JavaMail and Enterprise JavaBeans,
  13. are trademarks or registered trademarks of Sun Microsystems, Inc in the U.S.
  14. and other countries.
  15. All SPARC trademarks are used under license and are trademarks
  16. or registered trademarks of SPARC International, Inc.
  17. in the U.S. and other countries. Products bearing SPARC
  18. trademarks are based upon an architecture developed by Sun Microsystems, Inc.
  19. PostScript is a registered trademark of Adobe Systems, Inc.
  20. Federal Acquisitions: Commercial Software - Government Users Subject to
  21. Standard License Terms and Conditions.
  22. DOCUMENTATION IS PROVIDED "AS IS" AND ALL EXPRESS OR IMPLIED
  23. CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
  24. IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  25. PURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT
  26. TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY
  27. INVALID.
  28. _________________________________________________________________________
  29. Copyright 1999 Sun Microsystems, Inc.,
  30. 901 San Antonio Road, Palo Alto, CA 94303, Etats-Unis.
  31. Tous droits re'serve's.
  32. Ce produit ou document est prote'ge' par un copyright et distribue' avec
  33. des licences qui en restreignent l'utilisation, la copie, la distribution,
  34. et la de'compilation. Aucune partie de ce produit ou de sa documentation
  35. associe'e ne peut e^tre reproduite sous aucune forme, par quelque moyen
  36. que ce soit, sans l'autorisation pre'alable et e'crite de Sun et de ses
  37. bailleurs de licence, s'il y en a.
  38. Le logiciel de'tenu par des tiers, et qui comprend la technologie
  39. relative aux polices de caracte`res, est prote'ge' par un copyright
  40. et licencie' par des fournisseurs de Sun.
  41. Sun, Sun Microsystems, le logo Sun, Solaris, Java, JavaServer Pages, Java
  42. Naming and Directory Interface, JDBC, JDK, JavaMail, et Enterprise JavaBeans,
  43. sont des marques de fabrique ou des marques de'pose'es de Sun
  44. Microsystems, Inc. aux Etats-Unis et dans d'autres pays.
  45. Toutes les marques SPARC sont utilise'es sous licence et sont
  46. des marques de fabrique ou des marques de'pose'es de SPARC
  47. International, Inc. aux Etats-Unis et dans
  48. d'autres pays. Les produits portant les marques SPARC sont
  49. base's sur une architecture de'veloppe'e par Sun Microsystems, Inc.
  50. Postcript est une marque enregistre'e d'Adobe Systems Inc.
  51. LA DOCUMENTATION EST FOURNIE "EN L'ETAT" ET TOUTES AUTRES CONDITIONS,
  52. DECLARATIONS ET GARANTIES EXPRESSES OU TACITES SONT FORMELLEMENT EXCLUES,
  53. DANS LA MESURE AUTORISEE PAR LA LOI APPLICABLE, Y COMPRIS NOTAMMENT
  54. TOUTE GARANTIE IMPLICITE RELATIVE A LA QUALITE MARCHANDE, A L'APTITUDE
  55. A UNE UTILISATION PARTICULIERE OU A L'ABSENCE DE CONTREFACON.
  56. -->
  57. <!--
  58. The alt-dd element specifies an optional URI to the post-assembly version of the
  59. deployment descriptor file for a particular J2EE module. The URI must specify
  60. the full pathname of the deployment descriptor file relative to the
  61. application's root directory. If alt-dd is not specified, the deployer must read
  62. the deployment descriptor from the default location and file name required by
  63. the respective component specification.
  64. -->
  65. <!ELEMENT alt-dd (#PCDATA)>
  66. <!--
  67. The application element is the root element of a J2EE application deployment
  68. descriptor.
  69. -->
  70. <!ELEMENT application (icon?, display-name, description?, module+,
  71. security-role*)>
  72. <!--
  73. The context-root element specifies the context root of a web application
  74. -->
  75. <!ELEMENT context-root (#PCDATA)>
  76. <!--
  77. The description element provides a human readable description of the
  78. application. The description element should include any information that the
  79. application assembler wants to provide the deployer.
  80. -->
  81. <!ELEMENT description (#PCDATA)>
  82. <!--
  83. The display-name element specifies an application name.
  84. The application name is assigned to the application by the application assembler
  85. and is used to identify the application to the deployer at deployment time.
  86. -->
  87. <!ELEMENT display-name (#PCDATA)>
  88. <!--
  89. The ejb element specifies the URI of a ejb-jar, relative to the top level of the
  90. application package.
  91. -->
  92. <!ELEMENT ejb (#PCDATA)>
  93. <!--
  94. The icon element contains a small-icon and large-icon element which specify the
  95. URIs for a small and a large GIF or JPEG icon image to represent the application
  96. in a GUI.
  97. -->
  98. <!ELEMENT icon (small-icon?, large-icon?)>
  99. <!--
  100. The java element specifies the URI of a java application client module, relative
  101. to the top level of the application package.
  102. -->
  103. <!ELEMENT java (#PCDATA)>
  104. <!--
  105. The large-icon element specifies the URI for a large GIF or JPEG icon image to
  106. represent the application in a GUI.
  107. -->
  108. <!ELEMENT large-icon (#PCDATA)>
  109. <!--
  110. The module element represents a single J2EE module and contains an ejb, java, or
  111. web element, which indicates the module type and contains a path to the module
  112. file, and an optional alt-dd element, which specifies an optional URI to the
  113. post-assembly version of the deployment descriptor.
  114. The application deployment descriptor must have one module element for each J2EE
  115. module in the application package.
  116. -->
  117. <!ELEMENT module ((ejb | java | web), alt-dd?)>
  118. <!--
  119. The role-name element contains the name of a security role.
  120. -->
  121. <!ELEMENT role-name (#PCDATA)>
  122. <!--
  123. The security-role element contains the definition of a security role which is
  124. global to the application. The definition consists of a description of the
  125. security role, and the security role name. The descriptions at this level
  126. override those in the component level security-role definitions and must be the
  127. descriptions tool display to the deployer.
  128. -->
  129. <!ELEMENT security-role (description?, role-name)>
  130. <!--
  131. The small-icon element specifies the URI for a small GIF or JPEG icon image to
  132. represent the application in a GUI.
  133. -->
  134. <!ELEMENT small-icon (#PCDATA)>
  135. <!--
  136. The web element contains the web-uri and context-root of a web application
  137. module.
  138. -->
  139. <!ELEMENT web (web-uri, context-root)>
  140. <!--
  141. The web-uri element specifies the URI of a web application file, relative to the
  142. top level of the application package.
  143. -->
  144. <!ELEMENT web-uri (#PCDATA)>
  145. <!--
  146. The ID mechanism is to allow tools to easily make tool-specific references to
  147. the elements of the deployment descriptor.
  148. -->
  149. <!ATTLIST alt-dd id ID #IMPLIED>
  150. <!ATTLIST application id ID #IMPLIED>
  151. <!ATTLIST context-root id ID #IMPLIED>
  152. <!ATTLIST description id ID #IMPLIED>
  153. <!ATTLIST display-name id ID #IMPLIED>
  154. <!ATTLIST ejb id ID #IMPLIED>
  155. <!ATTLIST icon id ID #IMPLIED>
  156. <!ATTLIST java id ID #IMPLIED>
  157. <!ATTLIST large-icon id ID #IMPLIED>
  158. <!ATTLIST module id ID #IMPLIED>
  159. <!ATTLIST role-name id ID #IMPLIED>
  160. <!ATTLIST security-role id ID #IMPLIED>
  161. <!ATTLIST small-icon id ID #IMPLIED>
  162. <!ATTLIST web id ID #IMPLIED>
  163. <!ATTLIST web-uri id ID #IMPLIED>