david_williams | e073de1 | 2007-04-28 04:01:44 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Copyright 1999 Sun Microsystems, Inc. 901 San Antonio Road, |
| 3 | Palo Alto, CA 94303, U.S.A. All rights reserved. |
| 4 | |
| 5 | This product or document is protected by copyright and distributed |
| 6 | under licenses restricting its use, copying, distribution, and |
| 7 | decompilation. No part of this product or documentation may be |
| 8 | reproduced in any form by any means without prior written authorization |
| 9 | of Sun and its licensors, if any. |
| 10 | |
| 11 | Third party software, including font technology, is copyrighted and |
| 12 | licensed from Sun suppliers. |
| 13 | |
| 14 | Sun, Sun Microsystems, the Sun Logo, Solaris, Java, JavaServer Pages, Java |
| 15 | Naming and Directory Interface, JDBC, JDK, JavaMail and Enterprise JavaBeans, |
| 16 | are trademarks or registered trademarks of Sun Microsystems, Inc in the U.S. |
| 17 | and other countries. |
| 18 | |
| 19 | All SPARC trademarks are used under license and are trademarks |
| 20 | or registered trademarks of SPARC International, Inc. |
| 21 | in the U.S. and other countries. Products bearing SPARC |
| 22 | trademarks are based upon an architecture developed by Sun Microsystems, Inc. |
| 23 | |
| 24 | PostScript is a registered trademark of Adobe Systems, Inc. |
| 25 | |
| 26 | |
| 27 | Federal Acquisitions: Commercial Software - Government Users Subject to |
| 28 | Standard License Terms and Conditions. |
| 29 | |
| 30 | |
| 31 | |
| 32 | DOCUMENTATION IS PROVIDED "AS IS" AND ALL EXPRESS OR IMPLIED |
| 33 | CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY |
| 34 | IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR |
| 35 | PURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT |
| 36 | TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY |
| 37 | INVALID. |
| 38 | |
| 39 | _________________________________________________________________________ |
| 40 | Copyright 1999 Sun Microsystems, Inc., |
| 41 | 901 San Antonio Road, Palo Alto, CA 94303, Etats-Unis. |
| 42 | Tous droits re'serve's. |
| 43 | |
| 44 | |
| 45 | Ce produit ou document est prote'ge' par un copyright et distribue' avec |
| 46 | des licences qui en restreignent l'utilisation, la copie, la distribution, |
| 47 | et la de'compilation. Aucune partie de ce produit ou de sa documentation |
| 48 | associe'e ne peut e^tre reproduite sous aucune forme, par quelque moyen |
| 49 | que ce soit, sans l'autorisation pre'alable et e'crite de Sun et de ses |
| 50 | bailleurs de licence, s'il y en a. |
| 51 | |
| 52 | Le logiciel de'tenu par des tiers, et qui comprend la technologie |
| 53 | relative aux polices de caracte`res, est prote'ge' par un copyright |
| 54 | et licencie' par des fournisseurs de Sun. |
| 55 | |
| 56 | Sun, Sun Microsystems, le logo Sun, Solaris, Java, JavaServer Pages, Java |
| 57 | Naming and Directory Interface, JDBC, JDK, JavaMail, et Enterprise JavaBeans, |
| 58 | sont des marques de fabrique ou des marques de'pose'es de Sun |
| 59 | Microsystems, Inc. aux Etats-Unis et dans d'autres pays. |
| 60 | |
| 61 | Toutes les marques SPARC sont utilise'es sous licence et sont |
| 62 | des marques de fabrique ou des marques de'pose'es de SPARC |
| 63 | International, Inc. aux Etats-Unis et dans |
| 64 | d'autres pays. Les produits portant les marques SPARC sont |
| 65 | base's sur une architecture de'veloppe'e par Sun Microsystems, Inc. |
| 66 | |
| 67 | Postcript est une marque enregistre'e d'Adobe Systems Inc. |
| 68 | |
| 69 | LA DOCUMENTATION EST FOURNIE "EN L'ETAT" ET TOUTES AUTRES CONDITIONS, |
| 70 | DECLARATIONS ET GARANTIES EXPRESSES OU TACITES SONT FORMELLEMENT EXCLUES, |
| 71 | DANS LA MESURE AUTORISEE PAR LA LOI APPLICABLE, Y COMPRIS NOTAMMENT |
| 72 | TOUTE GARANTIE IMPLICITE RELATIVE A LA QUALITE MARCHANDE, A L'APTITUDE |
| 73 | A UNE UTILISATION PARTICULIERE OU A L'ABSENCE DE CONTREFACON. |
| 74 | --> |
| 75 | |
| 76 | <!-- |
| 77 | The web-app element is the root of the deployment descriptor for |
| 78 | a web application |
| 79 | --> |
| 80 | |
| 81 | <!ELEMENT web-app (icon?, display-name?, description?, distributable?, |
| 82 | context-param*, servlet*, servlet-mapping*, session-config?, |
| 83 | mime-mapping*, welcome-file-list?, error-page*, taglib*, |
| 84 | resource-ref*, security-constraint*, login-config?, security-role*, |
| 85 | env-entry*, ejb-ref*)> |
| 86 | |
| 87 | <!-- |
| 88 | The icon element contains a small-icon and a large-icon element |
| 89 | which specify the location within the web application for a small and |
| 90 | large image used to represent the web application in a GUI tool. At a |
| 91 | minimum, tools must accept GIF and JPEG format images. |
| 92 | --> |
| 93 | |
| 94 | <!ELEMENT icon (small-icon?, large-icon?)> |
| 95 | |
| 96 | <!-- |
| 97 | The small-icon element contains the location within the web |
| 98 | application of a file containing a small (16x16 pixel) icon image. |
| 99 | --> |
| 100 | |
| 101 | <!ELEMENT small-icon (#PCDATA)> |
| 102 | |
| 103 | <!-- |
| 104 | The large-icon element contains the location within the web |
| 105 | application of a file containing a large (32x32 pixel) icon image. |
| 106 | --> |
| 107 | |
| 108 | <!ELEMENT large-icon (#PCDATA)> |
| 109 | |
| 110 | <!-- |
| 111 | The display-name element contains a short name that is intended |
| 112 | to be displayed by GUI tools |
| 113 | --> |
| 114 | |
| 115 | <!ELEMENT display-name (#PCDATA)> |
| 116 | |
| 117 | <!-- |
| 118 | The description element is used to provide descriptive text about |
| 119 | the parent element. |
| 120 | --> |
| 121 | |
| 122 | <!ELEMENT description (#PCDATA)> |
| 123 | |
| 124 | <!-- |
| 125 | The distributable element, by its presence in a web application |
| 126 | deployment descriptor, indicates that this web application is |
| 127 | programmed appropriately to be deployed into a distributed servlet |
| 128 | container |
| 129 | --> |
| 130 | |
| 131 | <!ELEMENT distributable EMPTY> |
| 132 | |
| 133 | <!-- |
| 134 | The context-param element contains the declaration of a web |
| 135 | application's servlet context initialization parameters. |
| 136 | --> |
| 137 | |
| 138 | <!ELEMENT context-param (param-name, param-value, description?)> |
| 139 | |
| 140 | <!-- |
| 141 | The param-name element contains the name of a parameter. |
| 142 | --> |
| 143 | |
| 144 | <!ELEMENT param-name (#PCDATA)> |
| 145 | |
| 146 | <!-- |
| 147 | The param-value element contains the value of a parameter. |
| 148 | --> |
| 149 | |
| 150 | <!ELEMENT param-value (#PCDATA)> |
| 151 | |
| 152 | <!-- |
| 153 | The servlet element contains the declarative data of a |
| 154 | servlet. If a jsp-file is specified and the load-on-startup element is |
| 155 | present, then the JSP should be precompiled and loaded. |
| 156 | --> |
| 157 | |
| 158 | <!ELEMENT servlet (icon?, servlet-name, display-name?, description?, |
| 159 | (servlet-class|jsp-file), init-param*, load-on-startup?, security-role-ref*)> |
| 160 | |
| 161 | <!-- |
| 162 | The servlet-name element contains the canonical name of the |
| 163 | servlet. |
| 164 | --> |
| 165 | |
| 166 | <!ELEMENT servlet-name (#PCDATA)> |
| 167 | |
| 168 | <!-- |
| 169 | The servlet-class element contains the fully qualified class name |
| 170 | of the servlet. |
| 171 | --> |
| 172 | |
| 173 | <!ELEMENT servlet-class (#PCDATA)> |
| 174 | |
| 175 | <!-- |
| 176 | The jsp-file element contains the full path to a JSP file within |
| 177 | the web application. |
| 178 | --> |
| 179 | |
| 180 | <!ELEMENT jsp-file (#PCDATA)> |
| 181 | |
| 182 | <!-- |
| 183 | The init-param element contains a name/value pair as an |
| 184 | initialization param of the servlet |
| 185 | --> |
| 186 | |
| 187 | <!ELEMENT init-param (param-name, param-value, description?)> |
| 188 | |
| 189 | <!-- |
| 190 | The load-on-startup element indicates that this servlet should be |
| 191 | loaded on the startup of the web application. The optional contents of |
| 192 | these element must be a positive integer indicating the order in which |
| 193 | the servlet should be loaded. Lower integers are loaded before higher |
| 194 | integers. If no value is specified, or if the value specified is not a |
| 195 | positive integer, the container is free to load it at any time in the |
| 196 | startup sequence. |
| 197 | --> |
| 198 | |
| 199 | <!ELEMENT load-on-startup (#PCDATA)> |
| 200 | |
| 201 | <!-- |
| 202 | The servlet-mapping element defines a mapping between a servlet |
| 203 | and a url pattern |
| 204 | --> |
| 205 | |
| 206 | <!ELEMENT servlet-mapping (servlet-name, url-pattern)> |
| 207 | |
| 208 | <!-- |
| 209 | The url-pattern element contains the url pattern of the |
| 210 | mapping. Must follow the rules specified in Section 10 of the Servlet |
| 211 | API Specification. |
| 212 | --> |
| 213 | |
| 214 | <!ELEMENT url-pattern (#PCDATA)> |
| 215 | |
| 216 | <!-- |
| 217 | The session-config element defines the session parameters for |
| 218 | this web application. |
| 219 | --> |
| 220 | |
| 221 | <!ELEMENT session-config (session-timeout?)> |
| 222 | |
| 223 | <!-- |
| 224 | The session-timeout element defines the default session timeout |
| 225 | interval for all sessions created in this web application. The |
| 226 | specified timeout must be expressed in a whole number of minutes. |
| 227 | --> |
| 228 | |
| 229 | <!ELEMENT session-timeout (#PCDATA)> |
| 230 | |
| 231 | <!-- |
| 232 | The mime-mapping element defines a mapping between an extension |
| 233 | and a mime type. |
| 234 | --> |
| 235 | |
| 236 | <!ELEMENT mime-mapping (extension, mime-type)> |
| 237 | |
| 238 | <!-- |
| 239 | The extension element contains a string describing an |
| 240 | extension. example: "txt" |
| 241 | --> |
| 242 | |
| 243 | <!ELEMENT extension (#PCDATA)> |
| 244 | |
| 245 | <!-- |
| 246 | The mime-type element contains a defined mime type. example: |
| 247 | "text/plain" |
| 248 | --> |
| 249 | |
| 250 | <!ELEMENT mime-type (#PCDATA)> |
| 251 | |
| 252 | <!-- |
| 253 | The welcome-file-list contains an ordered list of welcome files |
| 254 | elements. |
| 255 | --> |
| 256 | |
| 257 | <!ELEMENT welcome-file-list (welcome-file+)> |
| 258 | |
| 259 | <!-- |
| 260 | The welcome-file element contains file name to use as a default |
| 261 | welcome file, such as index.html |
| 262 | --> |
| 263 | |
| 264 | <!ELEMENT welcome-file (#PCDATA)> |
| 265 | |
| 266 | <!-- |
| 267 | The taglib element is used to describe a JSP tag library. |
| 268 | --> |
| 269 | |
| 270 | <!ELEMENT taglib (taglib-uri, taglib-location)> |
| 271 | |
| 272 | <!-- |
| 273 | The taglib-uri element describes a URI, relative to the location |
| 274 | of the web.xml document, identifying a Tag Library used in the Web |
| 275 | Application. |
| 276 | --> |
| 277 | |
| 278 | <!ELEMENT taglib-uri (#PCDATA)> |
| 279 | |
| 280 | <!-- |
| 281 | the taglib-location element contains the location (as a resource |
| 282 | relative to the root of the web application) where to find the Tag |
| 283 | Libary Description file for the tag library. |
| 284 | --> |
| 285 | |
| 286 | <!ELEMENT taglib-location (#PCDATA)> |
| 287 | |
| 288 | <!-- |
| 289 | The error-page element contains a mapping between an error code |
| 290 | or exception type to the path of a resource in the web application |
| 291 | --> |
| 292 | |
| 293 | <!ELEMENT error-page ((error-code | exception-type), location)> |
| 294 | |
| 295 | <!-- |
| 296 | The error-code contains an HTTP error code, ex: 404 |
| 297 | --> |
| 298 | |
| 299 | <!ELEMENT error-code (#PCDATA)> |
| 300 | |
| 301 | <!-- |
| 302 | The exception type contains a fully qualified class name of a |
| 303 | Java exception type. |
| 304 | --> |
| 305 | |
| 306 | <!ELEMENT exception-type (#PCDATA)> |
| 307 | |
| 308 | <!-- |
| 309 | The location element contains the location of the resource in the |
| 310 | web application |
| 311 | --> |
| 312 | |
| 313 | <!ELEMENT location (#PCDATA)> |
| 314 | |
| 315 | <!-- |
| 316 | The resource-ref element contains a declaration of a Web |
| 317 | Application's reference to an external resource. |
| 318 | --> |
| 319 | |
| 320 | <!ELEMENT resource-ref (description?, res-ref-name, res-type, res-auth)> |
| 321 | |
| 322 | <!-- |
| 323 | The res-ref-name element specifies the name of the resource |
| 324 | factory reference name. |
| 325 | --> |
| 326 | |
| 327 | <!ELEMENT res-ref-name (#PCDATA)> |
| 328 | |
| 329 | <!-- |
| 330 | The res-type element specifies the (Java class) type of the data |
| 331 | source. |
| 332 | --> |
| 333 | |
| 334 | <!ELEMENT res-type (#PCDATA)> |
| 335 | |
| 336 | <!-- |
| 337 | The res-auth element indicates whether the application component |
| 338 | code performs resource signon programmatically or whether the |
| 339 | container signs onto the resource based on the principle mapping |
| 340 | information supplied by the deployer. Must be CONTAINER or SERVLET |
| 341 | --> |
| 342 | |
| 343 | <!ELEMENT res-auth (#PCDATA)> |
| 344 | |
| 345 | <!-- |
| 346 | The security-constraint element is used to associate security |
| 347 | constraints with one or more web resource collections |
| 348 | --> |
| 349 | |
| 350 | <!ELEMENT security-constraint (web-resource-collection+, |
| 351 | auth-constraint?, user-data-constraint?)> |
| 352 | |
| 353 | <!-- |
| 354 | The web-resource-collection element is used to identify a subset |
| 355 | of the resources and HTTP methods on those resources within a web |
| 356 | application to which a security constraint applies. If no HTTP methods |
| 357 | are specified, then the security constraint applies to all HTTP |
| 358 | methods. |
| 359 | --> |
| 360 | |
| 361 | <!ELEMENT web-resource-collection (web-resource-name, description?, |
| 362 | url-pattern*, http-method*)> |
| 363 | |
| 364 | <!-- |
| 365 | The web-resource-name contains the name of this web resource |
| 366 | collection |
| 367 | --> |
| 368 | |
| 369 | <!ELEMENT web-resource-name (#PCDATA)> |
| 370 | |
| 371 | <!-- |
| 372 | The http-method contains an HTTP method (GET | POST |...) |
| 373 | --> |
| 374 | |
| 375 | <!ELEMENT http-method (#PCDATA)> |
| 376 | |
| 377 | <!-- |
| 378 | The user-data-constraint element is used to indicate how data |
| 379 | communicated between the client and container should be protected |
| 380 | --> |
| 381 | |
| 382 | <!ELEMENT user-data-constraint (description?, transport-guarantee)> |
| 383 | |
| 384 | <!-- |
| 385 | The transport-guarantee element specifies that the communication |
| 386 | between client and server should be NONE, INTEGRAL, or |
| 387 | CONFIDENTIAL. NONE means that the application does not require any |
| 388 | transport guarantees. A value of INTEGRAL means that the application |
| 389 | requires that the data sent between the client and server be sent in |
| 390 | such a way that it can't be changed in transit. CONFIDENTIAL means |
| 391 | that the application requires that the data be transmitted in a |
| 392 | fashion that prevents other entities from observing the contents of |
| 393 | the transmission. In most cases, the presence of the INTEGRAL or |
| 394 | CONFIDENTIAL flag will indicate that the use of SSL is required. |
| 395 | --> |
| 396 | |
| 397 | <!ELEMENT transport-guarantee (#PCDATA)> |
| 398 | |
| 399 | <!-- |
| 400 | The auth-constraint element indicates the user roles that should |
| 401 | be permitted access to this resource collection. The role used here |
| 402 | must appear in a security-role-ref element. |
| 403 | --> |
| 404 | |
| 405 | <!ELEMENT auth-constraint (description?, role-name*)> |
| 406 | |
| 407 | <!-- |
| 408 | The role-name element contains the name of a security role. |
| 409 | --> |
| 410 | |
| 411 | <!ELEMENT role-name (#PCDATA)> |
| 412 | |
| 413 | <!-- |
| 414 | The login-config element is used to configure the authentication |
| 415 | method that should be used, the realm name that should be used for |
| 416 | this application, and the attributes that are needed by the form login |
| 417 | mechanism. |
| 418 | --> |
| 419 | |
| 420 | <!ELEMENT login-config (auth-method?, realm-name?, form-login-config?)> |
| 421 | |
| 422 | <!-- |
| 423 | The realm name element specifies the realm name to use in HTTP |
| 424 | Basic authorization |
| 425 | --> |
| 426 | |
| 427 | <!ELEMENT realm-name (#PCDATA)> |
| 428 | |
| 429 | <!-- |
| 430 | The form-login-config element specifies the login and error pages |
| 431 | that should be used in form based login. If form based authentication |
| 432 | is not used, these elements are ignored. |
| 433 | --> |
| 434 | |
| 435 | <!ELEMENT form-login-config (form-login-page, form-error-page)> |
| 436 | |
| 437 | <!-- |
| 438 | The form-login-page element defines the location in the web app |
| 439 | where the page that can be used for login can be found |
| 440 | --> |
| 441 | |
| 442 | <!ELEMENT form-login-page (#PCDATA)> |
| 443 | |
| 444 | <!-- |
| 445 | The form-error-page element defines the location in the web app |
| 446 | where the error page that is displayed when login is not successful |
| 447 | can be found |
| 448 | --> |
| 449 | |
| 450 | <!ELEMENT form-error-page (#PCDATA)> |
| 451 | |
| 452 | <!-- |
| 453 | The auth-method element is used to configure the authentication |
| 454 | mechanism for the web application. As a prerequisite to gaining access |
| 455 | to any web resources which are protected by an authorization |
| 456 | constraint, a user must have authenticated using the configured |
| 457 | mechanism. Legal values for this element are "BASIC", "DIGEST", |
| 458 | "FORM", or "CLIENT-CERT". |
| 459 | --> |
| 460 | |
| 461 | <!ELEMENT auth-method (#PCDATA)> |
| 462 | |
| 463 | <!-- |
| 464 | The security-role element contains the declaration of a security |
| 465 | role which is used in the security-constraints placed on the web |
| 466 | application. |
| 467 | --> |
| 468 | |
| 469 | <!ELEMENT security-role (description?, role-name)> |
| 470 | |
| 471 | <!-- |
| 472 | The role-name element contains the name of a role. This element |
| 473 | must contain a non-empty string. |
| 474 | --> |
| 475 | |
| 476 | <!ELEMENT security-role-ref (description?, role-name, role-link)> |
| 477 | |
| 478 | <!-- |
| 479 | The role-link element is used to link a security role reference |
| 480 | to a defined security role. The role-link element must contain the |
| 481 | name of one of the security roles defined in the security-role |
| 482 | elements. |
| 483 | --> |
| 484 | |
| 485 | <!ELEMENT role-link (#PCDATA)> |
| 486 | |
| 487 | <!-- |
| 488 | The env-entry element contains the declaration of an |
| 489 | application's environment entry. This element is required to be |
| 490 | honored on in J2EE compliant servlet containers. |
| 491 | --> |
| 492 | |
| 493 | <!ELEMENT env-entry (description?, env-entry-name, env-entry-value?, |
| 494 | env-entry-type)> |
| 495 | |
| 496 | <!-- |
| 497 | The env-entry-name contains the name of an application's |
| 498 | environment entry |
| 499 | --> |
| 500 | |
| 501 | <!ELEMENT env-entry-name (#PCDATA)> |
| 502 | |
| 503 | <!-- |
| 504 | The env-entry-value element contains the value of an |
| 505 | application's environment entry |
| 506 | --> |
| 507 | |
| 508 | <!ELEMENT env-entry-value (#PCDATA)> |
| 509 | |
| 510 | <!-- |
| 511 | The env-entry-type element contains the fully qualified Java type |
| 512 | of the environment entry value that is expected by the application |
| 513 | code. The following are the legal values of env-entry-type: |
| 514 | java.lang.Boolean, java.lang.String, java.lang.Integer, |
| 515 | java.lang.Double, java.lang.Float. |
| 516 | --> |
| 517 | |
| 518 | <!ELEMENT env-entry-type (#PCDATA)> |
| 519 | |
| 520 | <!-- |
| 521 | The ejb-ref element is used to declare a reference to an |
| 522 | enterprise bean. |
| 523 | --> |
| 524 | |
| 525 | <!ELEMENT ejb-ref (description?, ejb-ref-name, ejb-ref-type, home, remote, |
| 526 | ejb-link?)> |
| 527 | |
| 528 | <!-- |
| 529 | The ejb-ref-name element contains the name of an EJB |
| 530 | reference. This is the JNDI name that the servlet code uses to get a |
| 531 | reference to the enterprise bean. |
| 532 | --> |
| 533 | |
| 534 | <!ELEMENT ejb-ref-name (#PCDATA)> |
| 535 | |
| 536 | <!-- |
| 537 | The ejb-ref-type element contains the expected java class type of |
| 538 | the referenced EJB. |
| 539 | --> |
| 540 | |
| 541 | <!ELEMENT ejb-ref-type (#PCDATA)> |
| 542 | |
| 543 | <!-- |
| 544 | The ejb-home element contains the fully qualified name of the |
| 545 | EJB's home interface |
| 546 | --> |
| 547 | |
| 548 | <!ELEMENT home (#PCDATA)> |
| 549 | |
| 550 | <!-- |
| 551 | The ejb-remote element contains the fully qualified name of the |
| 552 | EJB's remote interface |
| 553 | --> |
| 554 | |
| 555 | <!ELEMENT remote (#PCDATA)> |
| 556 | |
| 557 | <!-- |
| 558 | The ejb-link element is used in the ejb-ref element to specify |
| 559 | that an EJB reference is linked to an EJB in an encompassing Java2 |
| 560 | Enterprise Edition (J2EE) application package. The value of the |
| 561 | ejb-link element must be the ejb-name of and EJB in the J2EE |
| 562 | application package. |
| 563 | --> |
| 564 | |
| 565 | <!ELEMENT ejb-link (#PCDATA)> |
| 566 | |
| 567 | <!-- |
| 568 | The ID mechanism is to allow tools to easily make tool-specific |
| 569 | references to the elements of the deployment descriptor. This allows |
| 570 | tools that produce additional deployment information (i.e information |
| 571 | beyond the standard deployment descriptor information) to store the |
| 572 | non-standard information in a separate file, and easily refer from |
| 573 | these tools-specific files to the information in the standard web-app |
| 574 | deployment descriptor. |
| 575 | --> |
| 576 | |
| 577 | <!ATTLIST web-app id ID #IMPLIED> |
| 578 | <!ATTLIST icon id ID #IMPLIED> |
| 579 | <!ATTLIST small-icon id ID #IMPLIED> |
| 580 | <!ATTLIST large-icon id ID #IMPLIED> |
| 581 | <!ATTLIST display-name id ID #IMPLIED> |
| 582 | <!ATTLIST description id ID #IMPLIED> |
| 583 | <!ATTLIST distributable id ID #IMPLIED> |
| 584 | <!ATTLIST context-param id ID #IMPLIED> |
| 585 | <!ATTLIST param-name id ID #IMPLIED> |
| 586 | <!ATTLIST param-value id ID #IMPLIED> |
| 587 | <!ATTLIST servlet id ID #IMPLIED> |
| 588 | <!ATTLIST servlet-name id ID #IMPLIED> |
| 589 | <!ATTLIST servlet-class id ID #IMPLIED> |
| 590 | <!ATTLIST jsp-file id ID #IMPLIED> |
| 591 | <!ATTLIST init-param id ID #IMPLIED> |
| 592 | <!ATTLIST load-on-startup id ID #IMPLIED> |
| 593 | <!ATTLIST servlet-mapping id ID #IMPLIED> |
| 594 | <!ATTLIST url-pattern id ID #IMPLIED> |
| 595 | <!ATTLIST session-config id ID #IMPLIED> |
| 596 | <!ATTLIST session-timeout id ID #IMPLIED> |
| 597 | <!ATTLIST mime-mapping id ID #IMPLIED> |
| 598 | <!ATTLIST extension id ID #IMPLIED> |
| 599 | <!ATTLIST mime-type id ID #IMPLIED> |
| 600 | <!ATTLIST welcome-file-list id ID #IMPLIED> |
| 601 | <!ATTLIST welcome-file id ID #IMPLIED> |
| 602 | <!ATTLIST taglib id ID #IMPLIED> |
| 603 | <!ATTLIST taglib-uri id ID #IMPLIED> |
| 604 | <!ATTLIST taglib-location id ID #IMPLIED> |
| 605 | <!ATTLIST error-page id ID #IMPLIED> |
| 606 | <!ATTLIST error-code id ID #IMPLIED> |
| 607 | <!ATTLIST exception-type id ID #IMPLIED> |
| 608 | <!ATTLIST location id ID #IMPLIED> |
| 609 | <!ATTLIST resource-ref id ID #IMPLIED> |
| 610 | <!ATTLIST res-ref-name id ID #IMPLIED> |
| 611 | <!ATTLIST res-type id ID #IMPLIED> |
| 612 | <!ATTLIST res-auth id ID #IMPLIED> |
| 613 | <!ATTLIST security-constraint id ID #IMPLIED> |
| 614 | <!ATTLIST web-resource-collection id ID #IMPLIED> |
| 615 | <!ATTLIST web-resource-name id ID #IMPLIED> |
| 616 | <!ATTLIST http-method id ID #IMPLIED> |
| 617 | <!ATTLIST user-data-constraint id ID #IMPLIED> |
| 618 | <!ATTLIST transport-guarantee id ID #IMPLIED> |
| 619 | <!ATTLIST auth-constraint id ID #IMPLIED> |
| 620 | <!ATTLIST role-name id ID #IMPLIED> |
| 621 | <!ATTLIST login-config id ID #IMPLIED> |
| 622 | <!ATTLIST realm-name id ID #IMPLIED> |
| 623 | <!ATTLIST form-login-config id ID #IMPLIED> |
| 624 | <!ATTLIST form-login-page id ID #IMPLIED> |
| 625 | <!ATTLIST form-error-page id ID #IMPLIED> |
| 626 | <!ATTLIST auth-method id ID #IMPLIED> |
| 627 | <!ATTLIST security-role id ID #IMPLIED> |
| 628 | <!ATTLIST security-role-ref id ID #IMPLIED> |
| 629 | <!ATTLIST role-link id ID #IMPLIED> |
| 630 | <!ATTLIST env-entry id ID #IMPLIED> |
| 631 | <!ATTLIST env-entry-name id ID #IMPLIED> |
| 632 | <!ATTLIST env-entry-value id ID #IMPLIED> |
| 633 | <!ATTLIST env-entry-type id ID #IMPLIED> |
| 634 | <!ATTLIST ejb-ref id ID #IMPLIED> |
| 635 | <!ATTLIST ejb-ref-name id ID #IMPLIED> |
| 636 | <!ATTLIST ejb-ref-type id ID #IMPLIED> |
| 637 | <!ATTLIST home id ID #IMPLIED> |
| 638 | <!ATTLIST remote id ID #IMPLIED> |
| 639 | <!ATTLIST ejb-link id ID #IMPLIED> |