glassfish 0.1.1-universal-java-1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/COPYRIGHT +33 -0
- data/LICENSE.txt +263 -0
- data/README +12 -0
- data/bin/asadmin +7 -0
- data/bin/asadmin.bat +8 -0
- data/bin/glassfish_rails +40 -0
- data/config/asadminenv.conf +6 -0
- data/config/asenv.bat +28 -0
- data/config/asenv.conf +27 -0
- data/config/glassfish.container +4 -0
- data/domains/domain1/config/admin-keyfile +3 -0
- data/domains/domain1/config/cacerts.jks +0 -0
- data/domains/domain1/config/default-web.xml +906 -0
- data/domains/domain1/config/domain-passwords +0 -0
- data/domains/domain1/config/domain.xml +208 -0
- data/domains/domain1/config/keyfile +6 -0
- data/domains/domain1/config/keystore.jks +0 -0
- data/domains/domain1/config/logging.properties +82 -0
- data/domains/domain1/config/login.conf +18 -0
- data/domains/domain1/config/server.policy +160 -0
- data/domains/domain1/config/sun-acc.xml +40 -0
- data/domains/domain1/config/wss-server-config-1.0.xml +86 -0
- data/domains/domain1/config/wss-server-config-2.0.xml +94 -0
- data/domains/domain1/docroot/favicon.gif +0 -0
- data/domains/domain1/docroot/index.html +87 -0
- data/domains/domain1/master-password +0 -0
- data/lib/appclient/appclientlogin.conf +10 -0
- data/lib/appclient/client.policy +79 -0
- data/lib/appclient/wss-client-config-1.0.xml +84 -0
- data/lib/appclient/wss-client-config-2.0.xml +96 -0
- data/lib/dtds/application-client_1_2.dtd +292 -0
- data/lib/dtds/application-client_1_3.dtd +506 -0
- data/lib/dtds/application_1_2.dtd +197 -0
- data/lib/dtds/application_1_3.dtd +312 -0
- data/lib/dtds/connector_1_0.dtd +561 -0
- data/lib/dtds/ejb-jar_1_1.dtd +894 -0
- data/lib/dtds/ejb-jar_2_0.dtd +1671 -0
- data/lib/dtds/sun-application-client-container_1_0.dtd +123 -0
- data/lib/dtds/sun-application-client-container_1_1.dtd +264 -0
- data/lib/dtds/sun-application-client-container_1_2.dtd +267 -0
- data/lib/dtds/sun-application-client_1_3-0.dtd +57 -0
- data/lib/dtds/sun-application-client_1_4-0.dtd +182 -0
- data/lib/dtds/sun-application-client_1_4-1.dtd +431 -0
- data/lib/dtds/sun-application-client_5_0-0.dtd +495 -0
- data/lib/dtds/sun-application_1_3-0.dtd +30 -0
- data/lib/dtds/sun-application_1_4-0.dtd +44 -0
- data/lib/dtds/sun-application_5_0-0.dtd +51 -0
- data/lib/dtds/sun-cmp-mapping_1_0.dtd +100 -0
- data/lib/dtds/sun-cmp-mapping_1_1.dtd +99 -0
- data/lib/dtds/sun-cmp-mapping_1_2.dtd +106 -0
- data/lib/dtds/sun-connector_1_0-0.dtd +66 -0
- data/lib/dtds/sun-connector_1_5-0.dtd +62 -0
- data/lib/dtds/sun-domain_1_0.dtd +2007 -0
- data/lib/dtds/sun-domain_1_1.dtd +3080 -0
- data/lib/dtds/sun-domain_1_2.dtd +3697 -0
- data/lib/dtds/sun-domain_1_3.dtd +3867 -0
- data/lib/dtds/sun-ejb-jar_2_0-0.dtd +449 -0
- data/lib/dtds/sun-ejb-jar_2_0-1.dtd +454 -0
- data/lib/dtds/sun-ejb-jar_2_1-0.dtd +756 -0
- data/lib/dtds/sun-ejb-jar_2_1-1.dtd +1085 -0
- data/lib/dtds/sun-ejb-jar_3_0-0.dtd +1113 -0
- data/lib/dtds/sun-loadbalancer_1_0.dtd +156 -0
- data/lib/dtds/sun-loadbalancer_1_1.dtd +172 -0
- data/lib/dtds/sun-resources_1_0.dtd +650 -0
- data/lib/dtds/sun-resources_1_1.dtd +650 -0
- data/lib/dtds/sun-resources_1_2.dtd +662 -0
- data/lib/dtds/sun-resources_1_3.dtd +732 -0
- data/lib/dtds/sun-server_1_0.dtd +1056 -0
- data/lib/dtds/sun-web-app_2_3-0.dtd +230 -0
- data/lib/dtds/sun-web-app_2_3-1.dtd +230 -0
- data/lib/dtds/sun-web-app_2_4-0.dtd +466 -0
- data/lib/dtds/sun-web-app_2_4-1.dtd +742 -0
- data/lib/dtds/sun-web-app_2_5-0.dtd +789 -0
- data/lib/dtds/web-app_2_2.dtd +639 -0
- data/lib/dtds/web-app_2_3.dtd +1063 -0
- data/lib/dtds/web-jsptaglibrary_1_1.dtd +265 -0
- data/lib/dtds/web-jsptaglibrary_1_2.dtd +468 -0
- data/lib/package-appclient.xml +185 -0
- data/lib/processLauncher.properties +25 -0
- data/lib/processLauncher.xml +189 -0
- data/lib/schemas/XMLSchema.dtd +402 -0
- data/lib/schemas/application-client_1_4.xsd +267 -0
- data/lib/schemas/application-client_5.xsd +304 -0
- data/lib/schemas/application_1_4.xsd +315 -0
- data/lib/schemas/application_5.xsd +336 -0
- data/lib/schemas/connector_1_5.xsd +1036 -0
- data/lib/schemas/datatypes.dtd +203 -0
- data/lib/schemas/ejb-jar_2_1.xsd +2208 -0
- data/lib/schemas/ejb-jar_3_0.xsd +2706 -0
- data/lib/schemas/j2ee_1_4.xsd +1608 -0
- data/lib/schemas/j2ee_jaxrpc_mapping_1_1.xsd +886 -0
- data/lib/schemas/j2ee_web_services_1_1.xsd +491 -0
- data/lib/schemas/j2ee_web_services_client_1_1.xsd +345 -0
- data/lib/schemas/javaee_5.xsd +2096 -0
- data/lib/schemas/javaee_web_services_1_2.xsd +747 -0
- data/lib/schemas/javaee_web_services_client_1_2.xsd +578 -0
- data/lib/schemas/jax-rpc-ri-config.xsd +416 -0
- data/lib/schemas/jsp_2_0.xsd +308 -0
- data/lib/schemas/jsp_2_1.xsd +343 -0
- data/lib/schemas/orm_1_0.xsd +1516 -0
- data/lib/schemas/persistence_1_0.xsd +260 -0
- data/lib/schemas/web-app_2_4.xsd +1234 -0
- data/lib/schemas/web-app_2_5.xsd +1271 -0
- data/lib/schemas/web-jsptaglibrary_2_0.xsd +1010 -0
- data/lib/schemas/web-jsptaglibrary_2_1.xsd +1144 -0
- data/lib/schemas/xml.xsd +82 -0
- data/modules/admin-cli-10.0-SNAPSHOT.jar +0 -0
- data/modules/auto-depends-0.2-SNAPSHOT.jar +0 -0
- data/modules/cli-framework-10.0-SNAPSHOT.jar +0 -0
- data/modules/common-ee-util-10.0-SNAPSHOT.jar +0 -0
- data/modules/common-util-10.0-SNAPSHOT.jar +0 -0
- data/modules/config-0.2-SNAPSHOT.jar +0 -0
- data/modules/config-api-10.0-SNAPSHOT.jar +0 -0
- data/modules/gf-jruby-connector-10.0-SNAPSHOT.jar +0 -0
- data/modules/glassfish-10.0-SNAPSHOT.jar +0 -0
- data/modules/glassfish-api-10.0-SNAPSHOT.jar +0 -0
- data/modules/glassfish.rb +10 -0
- data/modules/grizzly-framework-1.7.1.jar +0 -0
- data/modules/grizzly-http-1.7.1.jar +0 -0
- data/modules/grizzly-http-utils-1.7.1.jar +0 -0
- data/modules/grizzly-jruby-1.7.0.jar +0 -0
- data/modules/grizzly-jruby-module-1.7.0.jar +0 -0
- data/modules/grizzly-module-1.7.1.jar +0 -0
- data/modules/grizzly-portunif-1.7.1.jar +0 -0
- data/modules/grizzly-rcm-1.7.1.jar +0 -0
- data/modules/hk2-0.2-SNAPSHOT.jar +0 -0
- data/modules/hk2-core-0.2-SNAPSHOT.jar +0 -0
- data/modules/junit-4.3.1.jar +0 -0
- data/modules/kernel-10.0-SNAPSHOT.jar +0 -0
- data/modules/persistence-api-1.0b.jar +0 -0
- data/modules/servlet-api-2.5.jar +0 -0
- data/modules/sjsxp-1.0.jar +0 -0
- data/modules/stax-api-1.0-2.jar +0 -0
- data/modules/tiger-types-1.0.jar +0 -0
- metadata +206 -0
|
@@ -0,0 +1,561 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
Copyright (c) 2000 Sun Microsystems, Inc.,
|
|
3
|
+
901 San Antonio Road,
|
|
4
|
+
Palo Alto, California 94303, U.S.A.
|
|
5
|
+
All rights reserved.
|
|
6
|
+
|
|
7
|
+
Sun Microsystems, Inc. has intellectual property rights relating to
|
|
8
|
+
technology embodied in the product that is described in this document.
|
|
9
|
+
In particular, and without limitation, these intellectual property
|
|
10
|
+
rights may include one or more of the U.S. patents listed at
|
|
11
|
+
http://www.sun.com/patents and one or more additional patents or
|
|
12
|
+
pending patent applications in the U.S. and in other countries.
|
|
13
|
+
|
|
14
|
+
This document and the product to which it pertains are distributed
|
|
15
|
+
under licenses restricting their use, copying, distribution, and
|
|
16
|
+
decompilation. This document may be reproduced and distributed but may
|
|
17
|
+
not be changed without prior written authorization of Sun and its
|
|
18
|
+
licensors, if any.
|
|
19
|
+
|
|
20
|
+
Third-party software, including font technology, is copyrighted and
|
|
21
|
+
licensed from Sun suppliers.
|
|
22
|
+
|
|
23
|
+
Sun, Sun Microsystems, the Sun logo, Java, JavaServer Pages, Java
|
|
24
|
+
Naming and Directory Interface, JDBC, JDK, JavaMail and and
|
|
25
|
+
Enterprise JavaBeans are trademarks or registered trademarks of Sun
|
|
26
|
+
Microsystems, Inc. in the U.S. and other countries.
|
|
27
|
+
|
|
28
|
+
Federal Acquisitions: Commercial Software - Government Users Subject to
|
|
29
|
+
Standard License Terms and Conditions.
|
|
30
|
+
|
|
31
|
+
DOCUMENTATION IS PROVIDED "AS IS" AND ALL EXPRESS OR IMPLIED
|
|
32
|
+
CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED
|
|
33
|
+
WARRANTY OF MERCHANTABILITY, FITNESS FOR FOR A PARTICULAR PURPOSE OR
|
|
34
|
+
NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH
|
|
35
|
+
DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
_________________________________________________________________________
|
|
39
|
+
|
|
40
|
+
Copyright (c) 2000 Sun Microsystems, Inc.,
|
|
41
|
+
901 San Antonio Road,
|
|
42
|
+
Palo Alto, California 94303, E'tats-Unis.
|
|
43
|
+
Tous droits re'serve's.
|
|
44
|
+
|
|
45
|
+
Sun Microsystems, Inc. a les droits de proprie'te' intellectuels
|
|
46
|
+
relatants a` la technologie incorpore'e dans le produit qui est de'crit
|
|
47
|
+
dans ce document. En particulier, et sans la limitation, ces droits de
|
|
48
|
+
proprie'te' intellectuels peuvent inclure un ou plus des brevets
|
|
49
|
+
ame'ricains e'nume're's a` http://www.sun.com/patents et un ou les
|
|
50
|
+
brevets plus supple'mentaires ou les applications de brevet en attente
|
|
51
|
+
dans les E'tats-Unis et dans les autres pays.
|
|
52
|
+
|
|
53
|
+
Ce produit ou document est prote'ge' par un copyright et distribue'
|
|
54
|
+
avec des licences qui en restreignent l'utilisation, la copie, la
|
|
55
|
+
distribution, et la de'compilation. Ce documention associe n peut
|
|
56
|
+
e^tre reproduite et distribuer, par quelque moyen que ce soit, sans
|
|
57
|
+
l'autorisation pre'alable et e'crite de Sun et de ses bailleurs de
|
|
58
|
+
licence, le cas e'che'ant.
|
|
59
|
+
|
|
60
|
+
Le logiciel de'tenu par des tiers, et qui comprend la technologie
|
|
61
|
+
relative aux polices de caracte`res, est prote'ge' par un copyright et
|
|
62
|
+
licencie' par des fournisseurs de Sun.
|
|
63
|
+
|
|
64
|
+
Sun, Sun Microsystems, le logo Sun, Java, JavaServer Pages, Java
|
|
65
|
+
Naming and Directory Interface, JDBC, JDK, JavaMail et and
|
|
66
|
+
Enterprise JavaBeans sont des marques de fabrique ou des marques
|
|
67
|
+
de'pose'es de Sun Microsystems, Inc. aux E'tats-Unis et dans d'autres
|
|
68
|
+
pays.
|
|
69
|
+
|
|
70
|
+
LA DOCUMENTATION EST FOURNIE "EN L'E'TAT" ET TOUTES AUTRES CONDITIONS,
|
|
71
|
+
DECLARATIONS ET GARANTIES EXPRESSES OU TACITES SONT FORMELLEMENT
|
|
72
|
+
EXCLUES, DANS LA MESURE AUTORISEE PAR LA LOI APPLICABLE, Y COMPRIS
|
|
73
|
+
NOTAMMENT TOUTE GARANTIE IMPLICITE RELATIVE A LA QUALITE MARCHANDE, A
|
|
74
|
+
L'APTITUDE A UNE UTILISATION PARTICULIERE OU A L'ABSENCE DE
|
|
75
|
+
CONTREFAC,ON.
|
|
76
|
+
-->
|
|
77
|
+
|
|
78
|
+
<!--
|
|
79
|
+
This is the XML DTD for the Connector 1.0 deployment descriptor.
|
|
80
|
+
All Connector 1.0 deployment descriptors must include a DOCTYPE
|
|
81
|
+
of the following form:
|
|
82
|
+
|
|
83
|
+
<!DOCTYPE connector PUBLIC
|
|
84
|
+
"-//Sun Microsystems, Inc.//DTD Connector 1.0//EN"
|
|
85
|
+
"http://java.sun.com/dtd/connector_1_0.dtd">
|
|
86
|
+
|
|
87
|
+
-->
|
|
88
|
+
|
|
89
|
+
<!--
|
|
90
|
+
The following conventions apply to all J2EE deployment descriptor
|
|
91
|
+
elements unless indicated otherwise.
|
|
92
|
+
|
|
93
|
+
- In elements that contain PCDATA, leading and trailing whitespace
|
|
94
|
+
in the data may be ignored.
|
|
95
|
+
|
|
96
|
+
- In elements whose value is an "enumerated type", the value is
|
|
97
|
+
case sensitive.
|
|
98
|
+
|
|
99
|
+
- In elements that specify a pathname to a file within the same
|
|
100
|
+
JAR file, relative filenames (i.e., those not starting with "/")
|
|
101
|
+
are considered relative to the root of the JAR file's namespace.
|
|
102
|
+
Absolute filenames (i.e., those starting with "/") also specify
|
|
103
|
+
names in the root of the JAR file's namespace. In general, relative
|
|
104
|
+
names are preferred. The exception is .war files where absolute
|
|
105
|
+
names are preferred for consistency with the servlet API.
|
|
106
|
+
-->
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
<!--
|
|
110
|
+
The connector element is the root element of the deployment descriptor
|
|
111
|
+
for the resource adapter. This element includes general information - vendor
|
|
112
|
+
name, version, specification version supported, icon - about the
|
|
113
|
+
resource adapter module. It also includes information specific to the
|
|
114
|
+
implementation of the resource adapter library as specified through
|
|
115
|
+
the element resourceadapter.
|
|
116
|
+
-->
|
|
117
|
+
<!ELEMENT connector (display-name?, description?, icon?, vendor-name,
|
|
118
|
+
spec-version, eis-type, version, license?, resourceadapter)>
|
|
119
|
+
|
|
120
|
+
<!--
|
|
121
|
+
The element authentication-mechanism specifies an authentication mechanism
|
|
122
|
+
supported by the resource adapter. Note that this support is for
|
|
123
|
+
the resource adapter and not for the underlying EIS instance. The
|
|
124
|
+
optional description specifies any resource adapter specific requirement
|
|
125
|
+
for the support of security contract and authentication mechanism.
|
|
126
|
+
|
|
127
|
+
Note that BasicPassword mechanism type should support the
|
|
128
|
+
javax.resource.spi.security.PasswordCredential interface.
|
|
129
|
+
The Kerbv5 mechanism type should support the
|
|
130
|
+
javax.resource.spi.security.GenericCredential interface.
|
|
131
|
+
|
|
132
|
+
Used in: resourceadapter
|
|
133
|
+
-->
|
|
134
|
+
<!ELEMENT authentication-mechanism (
|
|
135
|
+
description?, authentication-mechanism-type, credential-interface)>
|
|
136
|
+
|
|
137
|
+
<!--
|
|
138
|
+
The element authentication-mechanism-type specifies type of an authentication
|
|
139
|
+
mechanism.
|
|
140
|
+
|
|
141
|
+
The example values are:
|
|
142
|
+
<authentication-mechanism-type>BasicPassword
|
|
143
|
+
</authentication-mechanism-type>
|
|
144
|
+
<authentication-mechanism-type>Kerbv5
|
|
145
|
+
</authentication-mechanism-type>
|
|
146
|
+
|
|
147
|
+
Any additional security mechanisms are outside the scope of the
|
|
148
|
+
Connector architecture specification.
|
|
149
|
+
|
|
150
|
+
Used in: authentication-mechanism
|
|
151
|
+
-->
|
|
152
|
+
<!ELEMENT authentication-mechanism-type (#PCDATA)>
|
|
153
|
+
|
|
154
|
+
<!--
|
|
155
|
+
The element config-property contains a declaration of a single
|
|
156
|
+
configuration property for a ManagedConnectionFactory instance.
|
|
157
|
+
|
|
158
|
+
Each ManagedConnectionFactory instance creates connections to a
|
|
159
|
+
specific EIS instance based on the properties configured on the
|
|
160
|
+
ManagedConnectionFactory instance. The configurable properties are
|
|
161
|
+
specified only once in the deployment descriptor, even though a
|
|
162
|
+
resource adapter can be used to configure multiple ManagedConnnection-
|
|
163
|
+
Factory instances (that create connections to different instances of
|
|
164
|
+
the same EIS).
|
|
165
|
+
|
|
166
|
+
The declaration consists of an optional description, name, type
|
|
167
|
+
and an optional value of the configuration property. If the resource
|
|
168
|
+
adapter provider does not specify a value than the deployer is
|
|
169
|
+
responsible for providing a valid value for a configuration property.
|
|
170
|
+
|
|
171
|
+
Any bounds or well-defined values of properties should be described
|
|
172
|
+
in the description element.
|
|
173
|
+
|
|
174
|
+
Used in: resourceadapter
|
|
175
|
+
-->
|
|
176
|
+
<!ELEMENT config-property (description?, config-property-name,
|
|
177
|
+
config-property-type, config-property-value?)>
|
|
178
|
+
|
|
179
|
+
<!--
|
|
180
|
+
The element config-property-name contains the name of a configuration
|
|
181
|
+
property.
|
|
182
|
+
|
|
183
|
+
The connector architecture defines a set of well-defined properties
|
|
184
|
+
all of type java.lang.String. These are as follows:
|
|
185
|
+
<config-property-name>ServerName</config-property-name>
|
|
186
|
+
<config-property-name>PortNumber</config-property-name>
|
|
187
|
+
<config-property-name>UserName</config-property-name>
|
|
188
|
+
<config-property-name>Password</config-property-name>
|
|
189
|
+
<config-property-name>ConnectionURL</config-property-name>
|
|
190
|
+
|
|
191
|
+
A resource adapter provider can extend this property set to include
|
|
192
|
+
properties specific to the resource adapter and its underlying EIS.
|
|
193
|
+
|
|
194
|
+
Used in: config-property
|
|
195
|
+
|
|
196
|
+
Example: <config-property-name>ServerName</config-property-name>
|
|
197
|
+
-->
|
|
198
|
+
<!ELEMENT config-property-name (#PCDATA)>
|
|
199
|
+
|
|
200
|
+
<!--
|
|
201
|
+
The element config-property-type contains the fully qualified Java
|
|
202
|
+
type of a configuration property as required by ManagedConnection-
|
|
203
|
+
Factory instance.
|
|
204
|
+
|
|
205
|
+
The following are the legal values of config-property-type:
|
|
206
|
+
java.lang.Boolean, java.lang.String, java.lang.Integer,
|
|
207
|
+
java.lang.Double, java.lang.Byte, java.lang.Short,
|
|
208
|
+
java.lang.Long, java.lang.Float, java.lang.Character
|
|
209
|
+
|
|
210
|
+
Used in: config-property
|
|
211
|
+
|
|
212
|
+
Example: <config-property-type>java.lang.String</config-property-type>
|
|
213
|
+
-->
|
|
214
|
+
<!ELEMENT config-property-type (#PCDATA)>
|
|
215
|
+
|
|
216
|
+
<!--
|
|
217
|
+
The element config-property-value contains the value of a configuration
|
|
218
|
+
entry.
|
|
219
|
+
|
|
220
|
+
Used in: config-property
|
|
221
|
+
|
|
222
|
+
Example: <config-property-value>WombatServer</config-property-value>
|
|
223
|
+
-->
|
|
224
|
+
<!ELEMENT config-property-value (#PCDATA)>
|
|
225
|
+
|
|
226
|
+
<!--
|
|
227
|
+
The element connection-impl-class specifies the fully-qualified
|
|
228
|
+
name of the Connection class that implements resource adapter
|
|
229
|
+
specific Connection interface.
|
|
230
|
+
|
|
231
|
+
Used in: resourceadapter
|
|
232
|
+
|
|
233
|
+
Example: <connection-impl-class>com.wombat.ConnectionImpl
|
|
234
|
+
</connection-impl-class>
|
|
235
|
+
-->
|
|
236
|
+
<!ELEMENT connection-impl-class (#PCDATA)>
|
|
237
|
+
|
|
238
|
+
<!--
|
|
239
|
+
The element connection-interface specifies the fully-qualified
|
|
240
|
+
name of the Connection interface supported by the resource
|
|
241
|
+
adapter.
|
|
242
|
+
|
|
243
|
+
Used in: resourceadapter
|
|
244
|
+
|
|
245
|
+
Example: <connection-interface>javax.resource.cci.Connection
|
|
246
|
+
</connection-interface>
|
|
247
|
+
-->
|
|
248
|
+
<!ELEMENT connection-interface (#PCDATA)>
|
|
249
|
+
|
|
250
|
+
<!--
|
|
251
|
+
The element connectionfactory-impl-class specifies the fully-qualified
|
|
252
|
+
name of the ConnectionFactory class that implements resource adapter
|
|
253
|
+
specific ConnectionFactory interface.
|
|
254
|
+
|
|
255
|
+
Used in: resourceadapter
|
|
256
|
+
|
|
257
|
+
Example: <connectionfactory-impl-class>com.wombat.ConnectionFactoryImpl
|
|
258
|
+
</connectionfactory-impl-class>
|
|
259
|
+
-->
|
|
260
|
+
<!ELEMENT connectionfactory-impl-class (#PCDATA)>
|
|
261
|
+
|
|
262
|
+
<!--
|
|
263
|
+
The element connectionfactory-interface specifies the fully-qualified
|
|
264
|
+
name of the ConnectionFactory interface supported by the resource
|
|
265
|
+
adapter.
|
|
266
|
+
|
|
267
|
+
Used in: resourceadapter
|
|
268
|
+
|
|
269
|
+
Example: <connectionfactory-interface>com.wombat.ConnectionFactory
|
|
270
|
+
</connectionfactory-interface>
|
|
271
|
+
OR
|
|
272
|
+
<connectionfactory-interface>javax.resource.cci.ConnectionFactory
|
|
273
|
+
</connectionfactory-interface>
|
|
274
|
+
-->
|
|
275
|
+
<!ELEMENT connectionfactory-interface (#PCDATA)>
|
|
276
|
+
|
|
277
|
+
<!--
|
|
278
|
+
The element credential-interface specifies the interface that the
|
|
279
|
+
resource adapter implementation supports for the representation
|
|
280
|
+
of the credentials. This element should be used by application server
|
|
281
|
+
to find out the Credential interface it should use as part of the
|
|
282
|
+
security contract.
|
|
283
|
+
|
|
284
|
+
The possible values are:
|
|
285
|
+
<credential-interface>javax.resource.spi.security.PasswordCredential
|
|
286
|
+
</credential-interface>
|
|
287
|
+
<credential-interface>javax.resource.spi.security.GenericCredential
|
|
288
|
+
</credential-interface>
|
|
289
|
+
|
|
290
|
+
Used in: authentication-mechanism
|
|
291
|
+
-->
|
|
292
|
+
<!ELEMENT credential-interface (#PCDATA)>
|
|
293
|
+
|
|
294
|
+
<!--
|
|
295
|
+
The description element is used to provide text describing the parent
|
|
296
|
+
element. The description element should include any information that
|
|
297
|
+
the resource adapter rar file producer wants to provide to the consumer of
|
|
298
|
+
the resource adapter rar file (i.e., to the Deployer). Typically, the tools
|
|
299
|
+
used by the resource adapter rar file consumer will display the description
|
|
300
|
+
when processing the parent element that contains the description.
|
|
301
|
+
|
|
302
|
+
Used in: authentication-mechanism, config-property, connector, license,
|
|
303
|
+
security-permission
|
|
304
|
+
-->
|
|
305
|
+
<!ELEMENT description (#PCDATA)>
|
|
306
|
+
|
|
307
|
+
<!--
|
|
308
|
+
The display-name element contains a short name that is intended to be
|
|
309
|
+
displayed by tools. The display name need not be unique.
|
|
310
|
+
|
|
311
|
+
Used in: connector
|
|
312
|
+
|
|
313
|
+
Example:
|
|
314
|
+
|
|
315
|
+
<display-name>Employee Self Service</display-name>
|
|
316
|
+
-->
|
|
317
|
+
<!ELEMENT display-name (#PCDATA)>
|
|
318
|
+
|
|
319
|
+
<!--
|
|
320
|
+
The element eis-type contains information about the type of the
|
|
321
|
+
EIS. For example, the type of an EIS can be product name of EIS
|
|
322
|
+
independent of any version info.
|
|
323
|
+
|
|
324
|
+
This helps in identifying EIS instances that can be used with
|
|
325
|
+
this resource adapter.
|
|
326
|
+
|
|
327
|
+
Used in: connector
|
|
328
|
+
-->
|
|
329
|
+
<!ELEMENT eis-type (#PCDATA)>
|
|
330
|
+
|
|
331
|
+
<!--
|
|
332
|
+
The icon element contains small-icon and large-icon elements that
|
|
333
|
+
specify the file names for small and a large GIF or JPEG icon images
|
|
334
|
+
used to represent the parent element in a GUI tool.
|
|
335
|
+
|
|
336
|
+
Used in: connector
|
|
337
|
+
-->
|
|
338
|
+
<!ELEMENT icon (small-icon?, large-icon?)>
|
|
339
|
+
|
|
340
|
+
<!--
|
|
341
|
+
The large-icon element contains the name of a file
|
|
342
|
+
containing a large (32 x 32) icon image. The file
|
|
343
|
+
name is a relative path within the resource adapter's
|
|
344
|
+
rar file.
|
|
345
|
+
|
|
346
|
+
The image may be either in the JPEG or GIF format.
|
|
347
|
+
The icon can be used by tools.
|
|
348
|
+
|
|
349
|
+
Used in: icon
|
|
350
|
+
|
|
351
|
+
Example:
|
|
352
|
+
|
|
353
|
+
<large-icon>employee-service-icon32x32.jpg</large-icon>
|
|
354
|
+
-->
|
|
355
|
+
<!ELEMENT large-icon (#PCDATA)>
|
|
356
|
+
|
|
357
|
+
<!--
|
|
358
|
+
The element license specifies licensing requirements for the resource
|
|
359
|
+
adapter module. This element specifies whether a license is required
|
|
360
|
+
to deploy and use this resource adapter, and an optional description
|
|
361
|
+
of the licensing terms (examples: duration of license, number of
|
|
362
|
+
connection restrictions).
|
|
363
|
+
|
|
364
|
+
Used in: connector
|
|
365
|
+
-->
|
|
366
|
+
<!ELEMENT license (description?, license-required)>
|
|
367
|
+
|
|
368
|
+
<!--
|
|
369
|
+
The element license-required specifies whether a license is required
|
|
370
|
+
to deploy and use the resource adapter. This element must be one of
|
|
371
|
+
the following:
|
|
372
|
+
|
|
373
|
+
<license-required>true</license-required>
|
|
374
|
+
<license-required>false</license-required>
|
|
375
|
+
|
|
376
|
+
Used in: license
|
|
377
|
+
-->
|
|
378
|
+
<!ELEMENT license-required (#PCDATA)>
|
|
379
|
+
|
|
380
|
+
<!--
|
|
381
|
+
The element managedconnectionfactory-class specifies the fully qualified
|
|
382
|
+
name of the Java class that implements the javax.resource.spi.Managed-
|
|
383
|
+
ConnectionFactory interface. This Java class is provided as part of
|
|
384
|
+
resource adapter's implementation of connector architecture specified
|
|
385
|
+
contracts.
|
|
386
|
+
|
|
387
|
+
Used in: resourceadapter
|
|
388
|
+
|
|
389
|
+
Example:
|
|
390
|
+
<managedconnectionfactory-class>com.wombat.ManagedConnectionFactoryImpl
|
|
391
|
+
</managedconnectionfactory-class>
|
|
392
|
+
-->
|
|
393
|
+
<!ELEMENT managedconnectionfactory-class (#PCDATA)>
|
|
394
|
+
|
|
395
|
+
<!--
|
|
396
|
+
The element reauthentication-support specifies whether the resource
|
|
397
|
+
adapter implementation supports re-authentication of existing Managed-
|
|
398
|
+
Connection instance. Note that this information is for the resource
|
|
399
|
+
adapter implementation and not for the underlying EIS instance.
|
|
400
|
+
|
|
401
|
+
This element must be one of the following:
|
|
402
|
+
<reauthentication-support>true</reauthentication-support>
|
|
403
|
+
<reauthentication-support>false</reauthentication-support>
|
|
404
|
+
Used in: resourceadapter
|
|
405
|
+
-->
|
|
406
|
+
<!ELEMENT reauthentication-support (#PCDATA)>
|
|
407
|
+
|
|
408
|
+
<!--
|
|
409
|
+
The element resourceadapter specifies information about the resource
|
|
410
|
+
adapter. The information includes fully-qualified names of
|
|
411
|
+
class/interfaces required as part of the connector architecture
|
|
412
|
+
specified contracts, level of transaction support provided,
|
|
413
|
+
configurable properties for ManagedConnectionFactory instances,
|
|
414
|
+
one or more authentication mechanisms supported and additional
|
|
415
|
+
required security permissions.
|
|
416
|
+
|
|
417
|
+
If there is no authentication-mechanism specified as part of
|
|
418
|
+
resource adapter element then the resource adapter does not
|
|
419
|
+
support any standard security authentication mechanisms as part
|
|
420
|
+
of security contract. The application server ignores the security
|
|
421
|
+
part of the system contracts in this case.
|
|
422
|
+
|
|
423
|
+
Used in: connector
|
|
424
|
+
-->
|
|
425
|
+
<!ELEMENT resourceadapter (
|
|
426
|
+
managedconnectionfactory-class, connectionfactory-interface,
|
|
427
|
+
connectionfactory-impl-class, connection-interface,
|
|
428
|
+
connection-impl-class, transaction-support, config-property*,
|
|
429
|
+
authentication-mechanism*, reauthentication-support, security-permission*
|
|
430
|
+
)>
|
|
431
|
+
|
|
432
|
+
<!--
|
|
433
|
+
The element security permission specifies a security permission that
|
|
434
|
+
is required by the resource adapter code.
|
|
435
|
+
|
|
436
|
+
The security permission listed in the deployment descriptor are ones
|
|
437
|
+
that are different from those required by the default permission set
|
|
438
|
+
as specified in the connector specification. The optional description
|
|
439
|
+
can mention specific reason that resource adapter requires a given
|
|
440
|
+
security permission.
|
|
441
|
+
|
|
442
|
+
Used in: resourceadapter
|
|
443
|
+
-->
|
|
444
|
+
<!ELEMENT security-permission (description?, security-permission-spec)>
|
|
445
|
+
|
|
446
|
+
<!--
|
|
447
|
+
The element permission-spec specifies a security permission based
|
|
448
|
+
on the Security policy file syntax. Refer to the following URL for
|
|
449
|
+
Sun's implementation of the security permission specification:
|
|
450
|
+
|
|
451
|
+
http://java.sun.com/products/jdk/1.3/docs/guide/security/PolicyFiles.html#FileSyntax
|
|
452
|
+
|
|
453
|
+
Used in: security-permission
|
|
454
|
+
-->
|
|
455
|
+
<!ELEMENT security-permission-spec (#PCDATA)>
|
|
456
|
+
|
|
457
|
+
<!--
|
|
458
|
+
The small-icon element contains the name of a file
|
|
459
|
+
containing a small (16 x 16) icon image. The file
|
|
460
|
+
name is a relative path within the resource adapter's
|
|
461
|
+
rar file.
|
|
462
|
+
|
|
463
|
+
The image may be either in the JPEG or GIF format.
|
|
464
|
+
The icon can be used by tools.
|
|
465
|
+
|
|
466
|
+
Used in: icon
|
|
467
|
+
|
|
468
|
+
Example:
|
|
469
|
+
|
|
470
|
+
<small-icon>employee-service-icon16x16.jpg</small-icon>
|
|
471
|
+
-->
|
|
472
|
+
<!ELEMENT small-icon (#PCDATA)>
|
|
473
|
+
|
|
474
|
+
<!--
|
|
475
|
+
The element spec-version specifies the version of the connector
|
|
476
|
+
architecture specification that is supported by this resource
|
|
477
|
+
adapter. This information enables deployer to configure the resource
|
|
478
|
+
adapter to support deployment and runtime requirements of the
|
|
479
|
+
corresponding connector architecture specification.
|
|
480
|
+
|
|
481
|
+
Used in: connector
|
|
482
|
+
|
|
483
|
+
Example:
|
|
484
|
+
<spec-version>1.0</spec-version>
|
|
485
|
+
-->
|
|
486
|
+
<!ELEMENT spec-version (#PCDATA)>
|
|
487
|
+
|
|
488
|
+
<!--
|
|
489
|
+
The transaction-support element specifies the level of transaction
|
|
490
|
+
support provided by the resource adapter.
|
|
491
|
+
The value of transaction-support must be one of the following:
|
|
492
|
+
<transaction-support>NoTransaction</transaction-support>
|
|
493
|
+
<transaction-support>LocalTransaction</transaction-support>
|
|
494
|
+
<transaction-support>XATransaction</transaction-support>
|
|
495
|
+
|
|
496
|
+
Used in: resourceadapter
|
|
497
|
+
-->
|
|
498
|
+
<!ELEMENT transaction-support (#PCDATA)>
|
|
499
|
+
|
|
500
|
+
<!--
|
|
501
|
+
The element vendor-name specifies the name of resource adapter provider
|
|
502
|
+
vendor.
|
|
503
|
+
|
|
504
|
+
Used in: connector
|
|
505
|
+
|
|
506
|
+
Example:
|
|
507
|
+
<vendor-name>Wombat Corp.</vendor-name>
|
|
508
|
+
-->
|
|
509
|
+
<!ELEMENT vendor-name (#PCDATA)>
|
|
510
|
+
|
|
511
|
+
<!--
|
|
512
|
+
The element version specifies a string-based version of the
|
|
513
|
+
resource adapter from the resource adapter provider.
|
|
514
|
+
|
|
515
|
+
Used in: connector
|
|
516
|
+
|
|
517
|
+
Example:
|
|
518
|
+
<version>1.0</version>
|
|
519
|
+
-->
|
|
520
|
+
<!ELEMENT version (#PCDATA)>
|
|
521
|
+
|
|
522
|
+
<!--
|
|
523
|
+
The ID mechanism is to allow tools that produce additional deployment
|
|
524
|
+
information (i.e., information beyond the standard deployment
|
|
525
|
+
descriptor information) to store the non-standard information in a
|
|
526
|
+
separate file, and easily refer from these tool-specific files to the
|
|
527
|
+
information in the standard deployment descriptor.
|
|
528
|
+
|
|
529
|
+
Tools are not allowed to add the non-standard information into the
|
|
530
|
+
standard deployment descriptor.
|
|
531
|
+
-->
|
|
532
|
+
|
|
533
|
+
<!ATTLIST authentication-mechanism id ID #IMPLIED>
|
|
534
|
+
<!ATTLIST authentication-mechanism-type id ID #IMPLIED>
|
|
535
|
+
<!ATTLIST config-property id ID #IMPLIED>
|
|
536
|
+
<!ATTLIST config-property-name id ID #IMPLIED>
|
|
537
|
+
<!ATTLIST config-property-type id ID #IMPLIED>
|
|
538
|
+
<!ATTLIST config-property-value id ID #IMPLIED>
|
|
539
|
+
<!ATTLIST connection-impl-class id ID #IMPLIED>
|
|
540
|
+
<!ATTLIST connection-interface id ID #IMPLIED>
|
|
541
|
+
<!ATTLIST connectionfactory-impl-class id ID #IMPLIED>
|
|
542
|
+
<!ATTLIST connectionfactory-interface id ID #IMPLIED>
|
|
543
|
+
<!ATTLIST connector id ID #IMPLIED>
|
|
544
|
+
<!ATTLIST credential-interface id ID #IMPLIED>
|
|
545
|
+
<!ATTLIST description id ID #IMPLIED>
|
|
546
|
+
<!ATTLIST display-name id ID #IMPLIED>
|
|
547
|
+
<!ATTLIST eis-type id ID #IMPLIED>
|
|
548
|
+
<!ATTLIST icon id ID #IMPLIED>
|
|
549
|
+
<!ATTLIST large-icon id ID #IMPLIED>
|
|
550
|
+
<!ATTLIST license id ID #IMPLIED>
|
|
551
|
+
<!ATTLIST license-required id ID #IMPLIED>
|
|
552
|
+
<!ATTLIST managedconnectionfactory-class id ID #IMPLIED>
|
|
553
|
+
<!ATTLIST reauthentication-support id ID #IMPLIED>
|
|
554
|
+
<!ATTLIST resourceadapter id ID #IMPLIED>
|
|
555
|
+
<!ATTLIST security-permission id ID #IMPLIED>
|
|
556
|
+
<!ATTLIST security-permission-spec id ID #IMPLIED>
|
|
557
|
+
<!ATTLIST small-icon id ID #IMPLIED>
|
|
558
|
+
<!ATTLIST spec-version id ID #IMPLIED>
|
|
559
|
+
<!ATTLIST transaction-support id ID #IMPLIED>
|
|
560
|
+
<!ATTLIST vendor-name id ID #IMPLIED>
|
|
561
|
+
<!ATTLIST version id ID #IMPLIED>
|