⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 application-client_1_2.dtd

📁 jsp开发 com.objectlearn.jdt.j2ee_3.0.1
💻 DTD
字号:
<!--Copyright 1999 Sun Microsystems, Inc. 901 San Antonio Road,Palo Alto, CA  94303, U.S.A.  All rights reserved. This product or document is protected by copyright and distributedunder licenses restricting its use, copying, distribution, anddecompilation.  No part of this product or documentation may bereproduced in any form by any means without prior written authorizationof Sun and its licensors, if any.  Third party software, including font technology, is copyrighted and licensed from Sun suppliers. Sun, Sun Microsystems, the Sun Logo, Solaris, Java, JavaServer Pages, Java Naming and Directory Interface, JDBC, JDK, JavaMail and Enterprise JavaBeans, are trademarks or registered trademarks of Sun Microsystems, Inc in the U.S. and other countries.All SPARC trademarks are used under license and are trademarksor registered trademarks of SPARC International, Inc.in the U.S. and other countries. Products bearing SPARCtrademarks are based upon an architecture developed by Sun Microsystems, Inc. PostScript is a registered trademark of Adobe Systems, Inc.  Federal Acquisitions: Commercial Software - Government Users Subject to Standard License Terms and Conditions. DOCUMENTATION IS PROVIDED "AS IS" AND ALL EXPRESS OR IMPLIEDCONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANYIMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULARPURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPTTO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLYINVALID._________________________________________________________________________Copyright 1999 Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, CA  94303, Etats-Unis. Tous droits re'serve's. Ce produit ou document est prote'ge' par un copyright et distribue' avec des licences qui en restreignent l'utilisation, la copie, la distribution,et la de'compilation.  Aucune partie de ce produit ou de sa documentationassocie'e ne peut e^tre reproduite sous aucune forme, par quelque moyen que ce soit, sans l'autorisation pre'alable et e'crite de Sun et de ses bailleurs de licence, s'il y en a.  Le logiciel de'tenu par des tiers, et qui comprend la technologie relative aux polices de caracte`res, est prote'ge' par un copyright et licencie' par des fournisseurs de Sun. Sun, Sun Microsystems, le logo Sun, Solaris, Java, JavaServer Pages, Java Naming and Directory Interface, JDBC, JDK, JavaMail, et Enterprise JavaBeans,  sont des marques de fabrique ou des marques de'pose'es de Sun Microsystems, Inc. aux Etats-Unis et dans d'autres pays. Toutes les marques SPARC sont utilise'es sous licence et sontdes marques de fabrique ou des marques de'pose'es de SPARCInternational, Inc. aux Etats-Unis et  dansd'autres pays. Les produits portant les marques SPARC sontbase's sur une architecture de'veloppe'e par Sun Microsystems, Inc.  Postcript est une marque enregistre'e d'Adobe Systems Inc.  LA DOCUMENTATION EST FOURNIE "EN L'ETAT" ET TOUTES AUTRES CONDITIONS,DECLARATIONS ET GARANTIES EXPRESSES OU TACITES SONT FORMELLEMENT EXCLUES,DANS LA MESURE AUTORISEE PAR LA LOI APPLICABLE, Y COMPRIS NOTAMMENTTOUTE GARANTIE IMPLICITE RELATIVE A LA QUALITE MARCHANDE, A L'APTITUDEA UNE UTILISATION PARTICULIERE OU A L'ABSENCE DE CONTREFACON.--><!--The application-client element is the root element of an application clientdeployment descriptor.The application client deployment descriptor describes the EJB components andexternal resources referenced by the application client.--><!ELEMENT application-client (icon?, display-name, description?, env-entry*,ejb-ref*, resource-ref*)><!--The description element is used to provide text describing the parent element.The description element should include any information that theapplication-client file producer wants to provide to the consumer of theapplication-client file (i.e., to the Deployer). Typically, the tools used bythe application-client file consumer will display the description whenprocessing the parent element that contains the description.--><!ELEMENT description (#PCDATA)><!--The display-name element contains a short name that is intended to be displayedby tools.--><!ELEMENT display-name (#PCDATA)><!--The ejb-link element is used in the ejb-ref element to specify that an EJBreference is linked to an enterprise bean in the encompassing J2EE Applicationpackage. The value of the ejb-link element must be the ejb-name of an enterprisebean in the same J2EE Application package. Used in: ejb-refExample: <ejb-link>EmployeeRecord</ejb-link>--><!ELEMENT ejb-link (#PCDATA)><!--The ejb-ref element is used for the declaration of a reference to an enterprisebean's home. The declaration consists of an optional description; the EJBreference name used in the code of the referencing application client; theexpected type of the referenced enterprise bean; the expected home and remoteinterfaces of the referenced enterprise bean; and an optional ejb-linkinformation. The optional ejb-link element is used to specify the referencedenterprise bean.--><!ELEMENT ejb-ref (description?, ejb-ref-name, ejb-ref-type, home, remote,ejb-link?)><!--The ejb-ref-name element contains the name of an EJB reference. The EJBreference is an entry in the application client's environment. It is recommendedthat name is prefixed with "ejb/". Used in: ejb-refExample: <ejb-ref-name>ejb/Payroll</ejb-ref-name>--><!ELEMENT ejb-ref-name (#PCDATA)><!--The ejb-ref-type element contains the expected type of the referenced enterprisebean. The ejb-ref-type element must be one of the following:<ejb-ref-type>Entity</ejb-ref-type><ejb-ref-type>Session</ejb-ref-type>Used in: ejb-ref--><!ELEMENT ejb-ref-type (#PCDATA)><!--The env-entry element contains the declaration of an application client'senvironment entries. The declaration consists of an optional description, thename of the environment entry, and an optional value.--><!ELEMENT env-entry (description?, env-entry-name, env-entry-type,env-entry-value?)><!--The env-entry-name element contains the name of an application client'senvironment entry. Used in: env-entryExample: <env-entry-name>EmployeeAppDB</env-entry-name>--><!ELEMENT env-entry-name (#PCDATA)><!--The env-entry-type element contains the fully-qualified Java type of theenvironment entry value that is expected by the application client's code. Thefollowing are the legal values of env-entry-type: java.lang.Boolean,java.lang.String, java.lang.Integer, java.lang.Double, java.lang.Byte,java.lang.Short, java.lang.Long, and java.lang.Float.Used in: env-entryExample:<env-entry-type>java.lang.Boolean</env-entry-type>--><!ELEMENT env-entry-type (#PCDATA)><!--The env-entry-value element contains the value of an application client'senvironment entry. The value must be a String that is valid for the constructorof the specified type that takes a single String parameter.Used in: env-entryExample:<env-entry-value>/datasources/MyDatabase</env-entry-value>--><!ELEMENT env-entry-value (#PCDATA)><!--The home element contains the fully-qualified name of the enterprise bean's homeinterface.Used in: ejb-refExample: <home>com.aardvark.payroll.PayrollHome</home>--><!ELEMENT home (#PCDATA)><!--The icon element contains a small-icon and large-icon element which specify theURIs for a small and a large GIF or JPEG icon image used to represent theapplication client in a GUI tool.--><!ELEMENT icon (small-icon?, large-icon?)><!--The large-icon element contains the name of a file containing a large (32 x 32)icon image. The file name is a relative path within the application-client jarfile. The image must be either in the JPEG or GIF format, and the file name mustend with the suffix ".jpg" or ".gif" respectively. The icon can be used bytools.Example:<large-icon>lib/images/employee-service-icon32x32.jpg</large-icon>--><!ELEMENT large-icon (#PCDATA)><!--The remote element contains the fully-qualified name of the enterprise bean'sremote interface.Used in: ejb-refExample:<remote>com.wombat.empl.EmployeeService</remote>--><!ELEMENT remote (#PCDATA)><!--The res-auth element specifies whether the enterprise bean code signs onprogrammatically to the resource manager, or whether the Container will sign onto the resource manager on behalf of the bean. In the latter case, the Containeruses information that is supplied by the Deployer.The value of this element must be one of the two following:<res-auth>Application</res-auth><res-auth>Container</res-auth>--><!ELEMENT res-auth (#PCDATA)><!--The res-ref-name element specifies the name of the resource factory referencename. The resource factory reference name is the name of the applicationclient's environment entry whose value contains the JNDI name of the datasource.Used in: resource-ref--><!ELEMENT res-ref-name (#PCDATA)><!--The res-type element specifies the type of the data source. The type isspecified by the Java interface (or class) expected to be implemented by thedata source.Used in: resource-ref--><!ELEMENT res-type (#PCDATA)><!--The resource-ref element contains a declaration of application clients'sreference to an external resource. It consists of an optional description, theresource factory reference name, the indication of the resource factory typeexpected by the application client's code, and the type of authentication (beanor container).Example:<resource-ref><res-ref-name>EmployeeAppDB</res-ref-name><res-type>javax.sql.DataSource</res-type><res-auth>Container</res-auth></resource-ref>--><!ELEMENT resource-ref (description?, res-ref-name, res-type, res-auth)><!--The small-icon element contains the name of a file containing a small (16 x 16)icon image. The file name is a relative path within the application-client jarfile. The image must be either in the JPEG or GIF format, and the file name mustend with the suffix ".jpg" or ".gif" respectively. The icon can be used bytools.Example:<small-icon>lib/images/employee-service-icon16x16.jpg</small-icon>--><!ELEMENT small-icon (#PCDATA)><!--The ID mechanism is to allow tools to easily make tool-specific references tothe elements of the deployment descriptor. --><!ATTLIST application-client id ID #IMPLIED><!ATTLIST description id ID #IMPLIED><!ATTLIST display-name id ID #IMPLIED><!ATTLIST ejb-link id ID #IMPLIED><!ATTLIST ejb-ref id ID #IMPLIED><!ATTLIST ejb-ref-name id ID #IMPLIED><!ATTLIST ejb-ref-type id ID #IMPLIED><!ATTLIST env-entry id ID #IMPLIED><!ATTLIST env-entry-name id ID #IMPLIED><!ATTLIST env-entry-type id ID #IMPLIED><!ATTLIST env-entry-value id ID #IMPLIED><!ATTLIST home id ID #IMPLIED><!ATTLIST icon id ID #IMPLIED><!ATTLIST large-icon id ID #IMPLIED><!ATTLIST remote id ID #IMPLIED><!ATTLIST res-auth id ID #IMPLIED><!ATTLIST res-ref-name id ID #IMPLIED><!ATTLIST res-type id ID #IMPLIED><!ATTLIST resource-ref id ID #IMPLIED><!ATTLIST small-icon id ID #IMPLIED>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -