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

📄 connector_1_0.dtd

📁 jsp开发 com.objectlearn.jdt.j2ee_3.0.1
💻 DTD
📖 第 1 页 / 共 2 页
字号:
security contract.The possible values are:   <credential-interface>javax.resource.spi.security.PasswordCredential        </credential-interface>   <credential-interface>javax.resource.spi.security.GenericCredential        </credential-interface>Used in: authentication-mechanism--><!ELEMENT credential-interface (#PCDATA)><!--The description element is used to provide text describing the parentelement.  The description element should include any information thatthe resource adapter rar file producer wants to provide to the consumer ofthe resource adapter rar file (i.e., to the Deployer). Typically, the toolsused by the resource adapter rar file consumer will display the descriptionwhen processing the parent element that contains the description.Used in: authentication-mechanism, config-property, connector, license,security-permission--><!ELEMENT description (#PCDATA)><!--The display-name element contains a short name that is intended to bedisplayed by tools.  The display name need not be unique.Used in: connectorExample:<display-name>Employee Self Service</display-name>--><!ELEMENT display-name (#PCDATA)><!--The element eis-type contains information about the type of theEIS. For example, the type of an EIS can be product name of EISindependent of any version info.This helps in identifying EIS instances that can be used withthis resource adapter.Used in: connector--><!ELEMENT eis-type (#PCDATA)><!--The icon element contains small-icon and large-icon elements thatspecify the file names for small and a large GIF or JPEG icon imagesused to represent the parent element in a GUI tool.Used in: connector--><!ELEMENT icon (small-icon?, large-icon?)><!--The large-icon element contains the name of a filecontaining a large (32 x 32) icon image. The filename is a relative path within the resource adapter'srar file.The image may be either in the JPEG or GIF format.The icon can be used by tools.Used in: iconExample:<large-icon>employee-service-icon32x32.jpg</large-icon>--><!ELEMENT large-icon (#PCDATA)><!--The element license specifies licensing requirements for the resourceadapter module. This element specifies whether a license is requiredto deploy and use this resource adapter, and an optional descriptionof the licensing terms (examples: duration of license, number ofconnection restrictions).Used in: connector--><!ELEMENT license (description?, license-required)><!--The element license-required specifies whether a license is requiredto deploy and use the resource adapter. This element must be one ofthe following:	<license-required>true</license-required>	<license-required>false</license-required>Used in: license--><!ELEMENT license-required (#PCDATA)><!--The element managedconnectionfactory-class specifies the fully qualifiedname of the Java class that implements the javax.resource.spi.Managed-ConnectionFactory interface. This Java class is provided as part ofresource adapter's implementation of connector architecture specifiedcontracts.Used in: resourceadapterExample:  <managedconnectionfactory-class>com.wombat.ManagedConnectionFactoryImpl  </managedconnectionfactory-class>--><!ELEMENT managedconnectionfactory-class (#PCDATA)><!--The element reauthentication-support specifies whether the resourceadapter implementation supports re-authentication of existing Managed-Connection instance. Note that this information is for the resourceadapter implementation and not for the underlying EIS instance.This element must be one of the following:        <reauthentication-support>true</reauthentication-support>        <reauthentication-support>false</reauthentication-support>Used in: resourceadapter--><!ELEMENT reauthentication-support (#PCDATA)><!--The element resourceadapter specifies information about the resourceadapter. The information includes fully-qualified names ofclass/interfaces required as part of the connector architecturespecified contracts, level of transaction support provided,configurable properties for ManagedConnectionFactory instances,one or more authentication mechanisms supported and additionalrequired security permissions.If there is no authentication-mechanism specified as part ofresource adapter element then the resource adapter does notsupport any standard security authentication mechanisms as partof security contract. The application server ignores the securitypart of the system contracts in this case.Used in: connector--><!ELEMENT resourceadapter (managedconnectionfactory-class, connectionfactory-interface,connectionfactory-impl-class, connection-interface,connection-impl-class, transaction-support, config-property*,authentication-mechanism*, reauthentication-support, security-permission*)><!--The element security permission specifies a security permission thatis required by the resource adapter code.The security permission listed in the deployment descriptor are onesthat are different from those required by the default permission setas specified in the connector specification. The optional descriptioncan mention specific reason that resource adapter requires a givensecurity permission.Used in: resourceadapter--><!ELEMENT security-permission (description?, security-permission-spec)><!--The element permission-spec specifies a security permission basedon the Security policy file syntax. Refer to the following URL forSun's implementation of the security permission specification:http://java.sun.com/products/jdk/1.3/docs/guide/security/PolicyFiles.html#FileSyntaxUsed in: security-permission--><!ELEMENT security-permission-spec (#PCDATA)><!--The small-icon element contains the name of a filecontaining a small (16 x 16) icon image. The filename is a relative path within the resource adapter'srar file.The image may be either in the JPEG or GIF format.The icon can be used by tools.Used in: iconExample:<small-icon>employee-service-icon16x16.jpg</small-icon>--><!ELEMENT small-icon (#PCDATA)><!--The element spec-version specifies the version of the connectorarchitecture specification that is supported by this resourceadapter. This information enables deployer to configure the resourceadapter to support deployment and runtime requirements of thecorresponding connector architecture specification.Used in: connectorExample:  <spec-version>1.0</spec-version>--><!ELEMENT spec-version (#PCDATA)><!--The transaction-support element specifies the level of transactionsupport provided by the resource adapter.The value of transaction-support must be one of the following: <transaction-support>NoTransaction</transaction-support> <transaction-support>LocalTransaction</transaction-support> <transaction-support>XATransaction</transaction-support>Used in: resourceadapter--><!ELEMENT transaction-support (#PCDATA)><!--The element vendor-name specifies the name of resource adapter providervendor.Used in: connectorExample:  <vendor-name>Wombat Corp.</vendor-name>--><!ELEMENT vendor-name (#PCDATA)><!--The element version specifies a string-based version of theresource adapter from the resource adapter provider.Used in: connectorExample:  <version>1.0</version>--><!ELEMENT version (#PCDATA)><!--The ID mechanism is to allow tools that produce additional deploymentinformation (i.e., information beyond the standard deploymentdescriptor information) to store the non-standard information in aseparate file, and easily refer from these tool-specific files to theinformation in the standard deployment descriptor.Tools are not allowed to add the non-standard information into thestandard deployment descriptor.--><!ATTLIST authentication-mechanism id ID #IMPLIED><!ATTLIST authentication-mechanism-type id ID #IMPLIED><!ATTLIST config-property id ID #IMPLIED><!ATTLIST config-property-name id ID #IMPLIED><!ATTLIST config-property-type id ID #IMPLIED><!ATTLIST config-property-value id ID #IMPLIED><!ATTLIST connection-impl-class id ID #IMPLIED><!ATTLIST connection-interface id ID #IMPLIED><!ATTLIST connectionfactory-impl-class id ID #IMPLIED><!ATTLIST connectionfactory-interface id ID #IMPLIED><!ATTLIST connector id ID #IMPLIED><!ATTLIST credential-interface id ID #IMPLIED><!ATTLIST description id ID #IMPLIED><!ATTLIST display-name id ID #IMPLIED><!ATTLIST eis-type id ID #IMPLIED><!ATTLIST icon id ID #IMPLIED><!ATTLIST large-icon id ID #IMPLIED><!ATTLIST license id ID #IMPLIED><!ATTLIST license-required id ID #IMPLIED><!ATTLIST managedconnectionfactory-class id ID #IMPLIED><!ATTLIST reauthentication-support id ID #IMPLIED><!ATTLIST resourceadapter id ID #IMPLIED><!ATTLIST security-permission id ID #IMPLIED><!ATTLIST security-permission-spec id ID #IMPLIED><!ATTLIST small-icon id ID #IMPLIED><!ATTLIST spec-version id ID #IMPLIED><!ATTLIST transaction-support id ID #IMPLIED><!ATTLIST vendor-name id ID #IMPLIED><!ATTLIST version id ID #IMPLIED>

⌨️ 快捷键说明

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