You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by sh...@apache.org on 2008/03/13 12:36:13 UTC

svn commit: r636723 [5/13] - in /geronimo/devtools/eclipse-plugin/trunk/plugins: org.apache.geronimo.deployment.v11.jaxbmodel/ org.apache.geronimo.deployment.v11.jaxbmodel/META-INF/ org.apache.geronimo.deployment.v11.jaxbmodel/src/main/resources/ org.a...

Modified: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.deployment.v21.jaxbmodel/src/main/resources/geronimo-application-2.0.xsd
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.deployment.v21.jaxbmodel/src/main/resources/geronimo-application-2.0.xsd?rev=636723&r1=636722&r2=636723&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.deployment.v21.jaxbmodel/src/main/resources/geronimo-application-2.0.xsd (original)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.deployment.v21.jaxbmodel/src/main/resources/geronimo-application-2.0.xsd Thu Mar 13 04:36:06 2008
@@ -1,373 +1,373 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-    
-        http://www.apache.org/licenses/LICENSE-2.0
-    
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-
-<xs:schema
-    xmlns:geronimo="http://geronimo.apache.org/xml/ns/j2ee/application-2.0"
-    targetNamespace="http://geronimo.apache.org/xml/ns/j2ee/application-2.0"
-    xmlns:sys="http://geronimo.apache.org/xml/ns/deployment-1.2"
-    xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
-    attributeFormDefault="unqualified" version="1.0">
-
-    <xs:annotation>
-        <xs:documentation>
-            This is an XML Schema Definition for Geronimo enterprise application
-            deployment plan. In case the enterprise application deployment plan
-            is provided internally in the enterprise archive, it should be
-            located under META-INF/geronimo-application.xml. In case the
-            enterprise application deployment plan is provided externally, the
-            deployment descriptor can be named anything and provided as an
-            argument to the deploy tool. All the enterprise application
-            deployment plan must specify the top level element as application
-            with namespace specified as xmlns =
-            "http://geronimo.apache.org/xml/ns/j2ee/application-2.0". The
-            default location for this document is
-            http://geronimo.apache.org/schemas-1.2/geronimo-application-2.0.xsd
-        </xs:documentation>
-    </xs:annotation>
-
-    <xs:import namespace="http://geronimo.apache.org/xml/ns/deployment-1.2"
-        schemaLocation="geronimo-module-1.2.xsd">
-        <xs:annotation>
-            <xs:documentation>
-                Import Geronimo Services deployment plans. The imported plan
-                includes complex types like moduleType, environmentType,
-                dependenciesType, etc. required by this plan schema.
-            </xs:documentation>
-        </xs:annotation>
-    </xs:import>
-
-    <xs:element name="application" type="geronimo:applicationType">
-        <xs:annotation>
-            <xs:documentation>
-                The root element for Geronimo web application deployment plan.
-                This element should always exist in instance documents. Note
-                that the sub-elements of this element should be as in the given
-                order in the sequence.
-            </xs:documentation>
-        </xs:annotation>
-    </xs:element>
-    <xs:complexType name="applicationType">
-        <xs:annotation>
-            <xs:documentation>
-                The complex type for root element, it defines the elements of
-                root element for Geronimo enterprise application deployment
-                plan. Basically it is a sequence of elements environment,
-                module, ext-module, security, and services.
-            </xs:documentation>
-        </xs:annotation>
-        <xs:sequence>
-            <xs:element ref="sys:environment">
-                <xs:annotation>
-                    <xs:documentation>
-                        Reference to environment element defined in imported
-                        "geronimo-module-1.2.xsd"
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-            <xs:element name="module" type="geronimo:moduleType" minOccurs="0"
-                maxOccurs="unbounded">
-                <xs:annotation>
-                    <xs:documentation>
-                        An optional module element which defines various
-                        modules included in the enterprise application archive.
-                        It mirrors the moduleType defined by application_1_4.xsd
-                        and adds an optional alt-dd element defining a Geronimo
-                        specific deployment descriptor.
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-            <xs:element name="ext-module" type="geronimo:ext-moduleType"
-                minOccurs="0" maxOccurs="unbounded">
-                <xs:annotation>
-                    <xs:documentation>
-                        It is used to define modules included in this
-                        application externally and these module could be
-                        included in the archive, or they may reside in Geronimo
-                        repository. It defines optional internal-path or
-                        external-path to module/repository element being
-                        referenced.
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-
-            <xs:element ref="geronimo:security" minOccurs="0">
-                <xs:annotation>
-                    <xs:documentation>
-                        Reference to security element defined in this schema. If
-                        this optional element is present, all web and EJB
-                        modules must make the appropriate access checks as
-                        outlined in the JACC spec. This element groups the
-                        security role mapping settings for the application.
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-            <xs:element ref="sys:service" minOccurs="0" maxOccurs="unbounded">
-                <xs:annotation>
-                    <xs:documentation>
-                        Reference to service element defined in imported
-                        "geronimo-module-1.2.xsd".
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-        </xs:sequence>
-
-        <!--TODO application name should be settable using name-key in the environment.  Does this work? -->
-        <xs:attribute name="application-name" type="xs:string" use="optional">
-            <xs:annotation>
-                <xs:documentation>
-                    An optional attribute used to define the application name
-                    for main parent enterprise application defined in ear
-                    module.
-                </xs:documentation>
-            </xs:annotation>
-        </xs:attribute>
-    </xs:complexType>
-
-    <xs:complexType name="moduleType">
-        <xs:annotation>
-            <xs:documentation>
-                Mirrors the moduleType defined by application_1_4.xsd and adds
-                an optional alt-dd element defining a Geronimo specific
-                deployment descriptor for J2EE connector, ejb, web, or java
-                client modules.
-            </xs:documentation>
-        </xs:annotation>
-        <xs:sequence>
-            <xs:choice>
-                <xs:element name="connector" type="geronimo:pathType">
-                    <xs:annotation>
-                        <xs:documentation>
-                            The presence of this element is indicative of J2EE
-                            module type to be resource adapter module, and the
-                            value of this element provides URI of resource
-                            adapter archive file path relative to the enterprise
-                            application package main directory.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-                <xs:element name="ejb" type="geronimo:pathType">
-                    <xs:annotation>
-                        <xs:documentation>
-                            The presence of this element is indicative of J2EE
-                            module type to be EJB module, and the value of this
-                            element provides URI of EJB archive file path
-                            relative to the enterprise application package main
-                            directory.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-                <xs:element name="java" type="geronimo:pathType">
-                    <xs:annotation>
-                        <xs:documentation>
-                            The presence of this element is indicative of J2EE
-                            module type to be Java Application client module,
-                            and the value of this element provides URI of
-                            application client java archive file path relative
-                            to the enterprise application package main
-                            directory.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-                <xs:element name="web" type="geronimo:pathType">
-                    <xs:annotation>
-                        <xs:documentation>
-                            The presence of this element is indicative of Web
-                            module type to be EJB module, and the value of this
-                            element provides URI of Web archive file path
-                            relative to the enterprise application package main
-                            directory.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-            </xs:choice>
-            <xs:choice>
-                <xs:element name="alt-dd" type="geronimo:pathType">
-                    <xs:annotation>
-                        <xs:documentation>
-                            Specifies an optional URI to the post-assembly
-                            version of the Geronimo specific deployment
-                            descriptor file for a particular J2EE module
-                            relative to the enterprise application package main
-                            directory.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-                <xs:any namespace="##other" processContents="lax">
-                    <xs:annotation>
-                        <xs:documentation>
-                            This option element contains the alternate geronimo
-                            deployment plan for included modules.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:any>
-            </xs:choice>
-        </xs:sequence>
-    </xs:complexType>
-
-    <xs:element name="security" type="geronimo:abstract-securityType">
-        <xs:annotation>
-            <xs:documentation>
-                If this optional element is present, all web and EJB modules
-                must make the appropriate access checks as outlined in the JACC
-                spec. This element groups the security role mapping settings for
-                the application.
-            </xs:documentation>
-        </xs:annotation>
-    </xs:element>
-
-    <xs:complexType name="abstract-securityType" abstract="true">
-        <xs:annotation>
-            <xs:documentation>
-                An abstract abstract-securityType used to indicate, all web and
-                EJB modules must make the appropriate access checks as outlined
-                in the JACC spec. This type will be extended and implemented by
-                geronimo-security-2.0.xsd file.
-            </xs:documentation>
-        </xs:annotation>
-        <xs:sequence></xs:sequence>
-    </xs:complexType>
-
-    <xs:element name="clustering" type="geronimo:abstract-clusteringType">
-        <xs:annotation>
-            <xs:documentation>
-                An abstract clustering used to provide clustering informtation
-                for this application.
-            </xs:documentation>
-        </xs:annotation>
-    </xs:element>
-
-    <xs:complexType name="abstract-clusteringType" abstract="true">
-        <xs:sequence></xs:sequence>
-    </xs:complexType>
-
-    <xs:complexType name="ext-moduleType">
-        <xs:annotation>
-            <xs:documentation>
-                It is used to define modules included in this application
-                externally and is not a part of the archive. It defines optional
-                internal-path or external-path to module/repository element
-                being referenced.
-            </xs:documentation>
-        </xs:annotation>
-        <xs:sequence>
-            <xs:choice>
-                <xs:element name="connector" type="geronimo:pathType">
-                    <xs:annotation>
-                        <xs:documentation>
-                            The presence of this element is indicative of J2EE
-                            module type to be resource adapter module, and the
-                            value of this element provides URI of resource
-                            adapter archive file path relative to the enterprise
-                            application package main directory.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-                <xs:element name="ejb" type="geronimo:pathType">
-                    <xs:annotation>
-                        <xs:documentation>
-                            The presence of this element is indicative of J2EE
-                            module type to be EJB module, and the value of this
-                            element provides URI of EJB archive file path
-                            relative to the enterprise application package main
-                            directory.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-                <xs:element name="java" type="geronimo:pathType">
-                    <xs:annotation>
-                        <xs:documentation>
-                            The presence of this element is indicative of J2EE
-                            module type to be Java Application client module,
-                            and the value of this element provides URI of
-                            application client java archive file path relative
-                            to the enterprise application package main
-                            directory.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-                <xs:element name="web" type="geronimo:pathType">
-                    <xs:annotation>
-                        <xs:documentation>
-                            The presence of this element is indicative of Web
-                            module type to be EJB module, and the value of this
-                            element provides URI of Web archive file path
-                            relative to the enterprise application package main
-                            directory.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-            </xs:choice>
-            <xs:choice>
-                <xs:element name="internal-path" type="xs:token">
-                    <xs:annotation>
-                        <xs:documentation>
-                            The element indicates that the module is a part of
-                            this enterprise application. The value of this
-                            element specifies the path of module relative to
-                            internal path indicates that the module is packaged
-                            in the EAR, and a path specified here is relative to
-                            the enterprise application package main directory.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-                <xs:element name="external-path" type="sys:patternType">
-                    <xs:annotation>
-                        <xs:documentation>
-                            The element indicates that the module is not a part
-                            of this enterprise application, but rather located
-                            matching the supplied pattern in a Geronimo repository.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-            </xs:choice>
-
-            <!--TODO consider an alt-spec-dd element-->
-            <!--Do not allow vendor plan inside ear.  If it is in the ear, this does not need to be an external module -->
-            <xs:any namespace="##other" processContents="lax">
-                <xs:annotation>
-                    <xs:documentation>
-                        This option element contains the geronimo deployment
-                        plan for included modules. The geronimo deployment plan
-                        for included modules can be packaged with module.
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:any>
-        </xs:sequence>
-    </xs:complexType>
-
-    <xs:complexType name="pathType">
-        <xs:annotation>
-            <xs:documentation>Mirrors j2ee:pathType.</xs:documentation>
-        </xs:annotation>
-        <xs:simpleContent>
-            <xs:restriction base="geronimo:string" />
-        </xs:simpleContent>
-    </xs:complexType>
-
-    <xs:complexType name="string">
-        <xs:annotation>
-            <xs:documentation>Mirrors j2ee:string.</xs:documentation>
-        </xs:annotation>
-        <xs:simpleContent>
-            <xs:extension base="xs:token">
-                <xs:attribute name="id" type="xs:ID" />
-            </xs:extension>
-        </xs:simpleContent>
-    </xs:complexType>
-
-</xs:schema>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+
+<xs:schema
+    xmlns:geronimo="http://geronimo.apache.org/xml/ns/j2ee/application-2.0"
+    targetNamespace="http://geronimo.apache.org/xml/ns/j2ee/application-2.0"
+    xmlns:sys="http://geronimo.apache.org/xml/ns/deployment-1.2"
+    xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
+    attributeFormDefault="unqualified" version="1.0">
+
+    <xs:annotation>
+        <xs:documentation>
+            This is an XML Schema Definition for Geronimo enterprise application
+            deployment plan. In case the enterprise application deployment plan
+            is provided internally in the enterprise archive, it should be
+            located under META-INF/geronimo-application.xml. In case the
+            enterprise application deployment plan is provided externally, the
+            deployment descriptor can be named anything and provided as an
+            argument to the deploy tool. All the enterprise application
+            deployment plan must specify the top level element as application
+            with namespace specified as xmlns =
+            "http://geronimo.apache.org/xml/ns/j2ee/application-2.0". The
+            default location for this document is
+            http://geronimo.apache.org/schemas-1.2/geronimo-application-2.0.xsd
+        </xs:documentation>
+    </xs:annotation>
+
+    <xs:import namespace="http://geronimo.apache.org/xml/ns/deployment-1.2"
+        schemaLocation="geronimo-module-1.2.xsd">
+        <xs:annotation>
+            <xs:documentation>
+                Import Geronimo Services deployment plans. The imported plan
+                includes complex types like moduleType, environmentType,
+                dependenciesType, etc. required by this plan schema.
+            </xs:documentation>
+        </xs:annotation>
+    </xs:import>
+
+    <xs:element name="application" type="geronimo:applicationType">
+        <xs:annotation>
+            <xs:documentation>
+                The root element for Geronimo web application deployment plan.
+                This element should always exist in instance documents. Note
+                that the sub-elements of this element should be as in the given
+                order in the sequence.
+            </xs:documentation>
+        </xs:annotation>
+    </xs:element>
+    <xs:complexType name="applicationType">
+        <xs:annotation>
+            <xs:documentation>
+                The complex type for root element, it defines the elements of
+                root element for Geronimo enterprise application deployment
+                plan. Basically it is a sequence of elements environment,
+                module, ext-module, security, and services.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element ref="sys:environment">
+                <xs:annotation>
+                    <xs:documentation>
+                        Reference to environment element defined in imported
+                        "geronimo-module-1.2.xsd"
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="module" type="geronimo:moduleType" minOccurs="0"
+                maxOccurs="unbounded">
+                <xs:annotation>
+                    <xs:documentation>
+                        An optional module element which defines various
+                        modules included in the enterprise application archive.
+                        It mirrors the moduleType defined by application_1_4.xsd
+                        and adds an optional alt-dd element defining a Geronimo
+                        specific deployment descriptor.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="ext-module" type="geronimo:ext-moduleType"
+                minOccurs="0" maxOccurs="unbounded">
+                <xs:annotation>
+                    <xs:documentation>
+                        It is used to define modules included in this
+                        application externally and these module could be
+                        included in the archive, or they may reside in Geronimo
+                        repository. It defines optional internal-path or
+                        external-path to module/repository element being
+                        referenced.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+
+            <xs:element ref="geronimo:security" minOccurs="0">
+                <xs:annotation>
+                    <xs:documentation>
+                        Reference to security element defined in this schema. If
+                        this optional element is present, all web and EJB
+                        modules must make the appropriate access checks as
+                        outlined in the JACC spec. This element groups the
+                        security role mapping settings for the application.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element ref="sys:service" minOccurs="0" maxOccurs="unbounded">
+                <xs:annotation>
+                    <xs:documentation>
+                        Reference to service element defined in imported
+                        "geronimo-module-1.2.xsd".
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+        </xs:sequence>
+
+        <!--TODO application name should be settable using name-key in the environment.  Does this work? -->
+        <xs:attribute name="application-name" type="xs:string" use="optional">
+            <xs:annotation>
+                <xs:documentation>
+                    An optional attribute used to define the application name
+                    for main parent enterprise application defined in ear
+                    module.
+                </xs:documentation>
+            </xs:annotation>
+        </xs:attribute>
+    </xs:complexType>
+
+    <xs:complexType name="moduleType">
+        <xs:annotation>
+            <xs:documentation>
+                Mirrors the moduleType defined by application_1_4.xsd and adds
+                an optional alt-dd element defining a Geronimo specific
+                deployment descriptor for J2EE connector, ejb, web, or java
+                client modules.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:choice>
+                <xs:element name="connector" type="geronimo:pathType">
+                    <xs:annotation>
+                        <xs:documentation>
+                            The presence of this element is indicative of J2EE
+                            module type to be resource adapter module, and the
+                            value of this element provides URI of resource
+                            adapter archive file path relative to the enterprise
+                            application package main directory.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="ejb" type="geronimo:pathType">
+                    <xs:annotation>
+                        <xs:documentation>
+                            The presence of this element is indicative of J2EE
+                            module type to be EJB module, and the value of this
+                            element provides URI of EJB archive file path
+                            relative to the enterprise application package main
+                            directory.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="java" type="geronimo:pathType">
+                    <xs:annotation>
+                        <xs:documentation>
+                            The presence of this element is indicative of J2EE
+                            module type to be Java Application client module,
+                            and the value of this element provides URI of
+                            application client java archive file path relative
+                            to the enterprise application package main
+                            directory.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="web" type="geronimo:pathType">
+                    <xs:annotation>
+                        <xs:documentation>
+                            The presence of this element is indicative of Web
+                            module type to be EJB module, and the value of this
+                            element provides URI of Web archive file path
+                            relative to the enterprise application package main
+                            directory.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+            </xs:choice>
+            <xs:choice>
+                <xs:element name="alt-dd" type="geronimo:pathType">
+                    <xs:annotation>
+                        <xs:documentation>
+                            Specifies an optional URI to the post-assembly
+                            version of the Geronimo specific deployment
+                            descriptor file for a particular J2EE module
+                            relative to the enterprise application package main
+                            directory.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:any namespace="##other" processContents="lax">
+                    <xs:annotation>
+                        <xs:documentation>
+                            This option element contains the alternate geronimo
+                            deployment plan for included modules.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:any>
+            </xs:choice>
+        </xs:sequence>
+    </xs:complexType>
+
+    <xs:element name="security" type="geronimo:abstract-securityType">
+        <xs:annotation>
+            <xs:documentation>
+                If this optional element is present, all web and EJB modules
+                must make the appropriate access checks as outlined in the JACC
+                spec. This element groups the security role mapping settings for
+                the application.
+            </xs:documentation>
+        </xs:annotation>
+    </xs:element>
+
+    <xs:complexType name="abstract-securityType" abstract="true">
+        <xs:annotation>
+            <xs:documentation>
+                An abstract abstract-securityType used to indicate, all web and
+                EJB modules must make the appropriate access checks as outlined
+                in the JACC spec. This type will be extended and implemented by
+                geronimo-security-2.0.xsd file.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence></xs:sequence>
+    </xs:complexType>
+
+    <xs:element name="clustering" type="geronimo:abstract-clusteringType">
+        <xs:annotation>
+            <xs:documentation>
+                An abstract clustering used to provide clustering informtation
+                for this application.
+            </xs:documentation>
+        </xs:annotation>
+    </xs:element>
+
+    <xs:complexType name="abstract-clusteringType" abstract="true">
+        <xs:sequence></xs:sequence>
+    </xs:complexType>
+
+    <xs:complexType name="ext-moduleType">
+        <xs:annotation>
+            <xs:documentation>
+                It is used to define modules included in this application
+                externally and is not a part of the archive. It defines optional
+                internal-path or external-path to module/repository element
+                being referenced.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:choice>
+                <xs:element name="connector" type="geronimo:pathType">
+                    <xs:annotation>
+                        <xs:documentation>
+                            The presence of this element is indicative of J2EE
+                            module type to be resource adapter module, and the
+                            value of this element provides URI of resource
+                            adapter archive file path relative to the enterprise
+                            application package main directory.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="ejb" type="geronimo:pathType">
+                    <xs:annotation>
+                        <xs:documentation>
+                            The presence of this element is indicative of J2EE
+                            module type to be EJB module, and the value of this
+                            element provides URI of EJB archive file path
+                            relative to the enterprise application package main
+                            directory.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="java" type="geronimo:pathType">
+                    <xs:annotation>
+                        <xs:documentation>
+                            The presence of this element is indicative of J2EE
+                            module type to be Java Application client module,
+                            and the value of this element provides URI of
+                            application client java archive file path relative
+                            to the enterprise application package main
+                            directory.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="web" type="geronimo:pathType">
+                    <xs:annotation>
+                        <xs:documentation>
+                            The presence of this element is indicative of Web
+                            module type to be EJB module, and the value of this
+                            element provides URI of Web archive file path
+                            relative to the enterprise application package main
+                            directory.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+            </xs:choice>
+            <xs:choice>
+                <xs:element name="internal-path" type="xs:token">
+                    <xs:annotation>
+                        <xs:documentation>
+                            The element indicates that the module is a part of
+                            this enterprise application. The value of this
+                            element specifies the path of module relative to
+                            internal path indicates that the module is packaged
+                            in the EAR, and a path specified here is relative to
+                            the enterprise application package main directory.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="external-path" type="sys:patternType">
+                    <xs:annotation>
+                        <xs:documentation>
+                            The element indicates that the module is not a part
+                            of this enterprise application, but rather located
+                            matching the supplied pattern in a Geronimo repository.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+            </xs:choice>
+
+            <!--TODO consider an alt-spec-dd element-->
+            <!--Do not allow vendor plan inside ear.  If it is in the ear, this does not need to be an external module -->
+            <xs:any namespace="##other" processContents="lax">
+                <xs:annotation>
+                    <xs:documentation>
+                        This option element contains the geronimo deployment
+                        plan for included modules. The geronimo deployment plan
+                        for included modules can be packaged with module.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:any>
+        </xs:sequence>
+    </xs:complexType>
+
+    <xs:complexType name="pathType">
+        <xs:annotation>
+            <xs:documentation>Mirrors j2ee:pathType.</xs:documentation>
+        </xs:annotation>
+        <xs:simpleContent>
+            <xs:restriction base="geronimo:string" />
+        </xs:simpleContent>
+    </xs:complexType>
+
+    <xs:complexType name="string">
+        <xs:annotation>
+            <xs:documentation>Mirrors j2ee:string.</xs:documentation>
+        </xs:annotation>
+        <xs:simpleContent>
+            <xs:extension base="xs:token">
+                <xs:attribute name="id" type="xs:ID" />
+            </xs:extension>
+        </xs:simpleContent>
+    </xs:complexType>
+
+</xs:schema>

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.deployment.v21.jaxbmodel/src/main/resources/geronimo-application-2.0.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.deployment.v21.jaxbmodel/src/main/resources/geronimo-application-2.0.xsd
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.deployment.v21.jaxbmodel/src/main/resources/geronimo-application-2.0.xsd
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.deployment.v21.jaxbmodel/src/main/resources/geronimo-application-client-2.0.xsd
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.deployment.v21.jaxbmodel/src/main/resources/geronimo-application-client-2.0.xsd?rev=636723&r1=636722&r2=636723&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.deployment.v21.jaxbmodel/src/main/resources/geronimo-application-client-2.0.xsd (original)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.deployment.v21.jaxbmodel/src/main/resources/geronimo-application-client-2.0.xsd Thu Mar 13 04:36:06 2008
@@ -1,270 +1,270 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You under the Apache License, Version 2.0
-    (the "License"); you may not use this file except in compliance with
-    the License.  You may obtain a copy of the License at
-    
-        http://www.apache.org/licenses/LICENSE-2.0
-    
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-
-<!-- @version $Rev: 561259 $ $Date: 2007-07-31 16:11:06 +0800 (Tue, 31 Jul 2007) $ -->
-
-<xs:schema
-    xmlns:geronimo="http://geronimo.apache.org/xml/ns/j2ee/application-client-2.0"
-    targetNamespace="http://geronimo.apache.org/xml/ns/j2ee/application-client-2.0"
-    xmlns:naming="http://geronimo.apache.org/xml/ns/naming-1.2"
-    xmlns:connector="http://geronimo.apache.org/xml/ns/j2ee/connector-1.2"
-    xmlns:security="http://geronimo.apache.org/xml/ns/security-2.0"
-    xmlns:sys="http://geronimo.apache.org/xml/ns/deployment-1.2"
-    xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
-    attributeFormDefault="unqualified" version="1.0">
-
-    <xs:annotation>
-        <xs:documentation>
-            This is an XML Schema Definition for Geronimo Java application
-            client deployment plan. In case the Java application client
-            deployment plan is provided internally in the java archive, it
-            should be named META-INF/geronimo-application-client.xml. In case
-            the java application client deployment plan is provided externally,
-            the deployment descriptor can be named anything and provided to the
-            deploy tool. All the Java application client deployment plan must
-            specify the top level element as application-client with namespace
-            specified as
-            xmlns="http://geronimo.apache.org/xml/ns/j2ee/application-client-2.0".
-            The default location for this document is
-            http://geronimo.apache.org/schemas-1.2/geronimo-application-client-2.0.xsd
-        </xs:documentation>
-    </xs:annotation>
-
-    <xs:import namespace="http://geronimo.apache.org/xml/ns/naming-1.2"
-        schemaLocation="geronimo-naming-1.2.xsd">
-        <xs:annotation>
-            <xs:documentation>
-                Import partial schema containing common naming elements, the
-                imported plan declares elements like ejb-ref, ejb-local-ref,
-                service-ref, resource-ref, and resource-env-ref required by this
-                plan schema.
-            </xs:documentation>
-        </xs:annotation>
-    </xs:import>
-    <xs:import namespace="http://geronimo.apache.org/xml/ns/security-2.0"
-        schemaLocation="geronimo-security-2.0.xsd">
-        <xs:annotation>
-            <xs:documentation>
-                Import Geronimo security deployment plans. The imported plan
-                includes complex types for defining security and principals.
-            </xs:documentation>
-        </xs:annotation>
-    </xs:import>
-    <xs:import namespace="http://geronimo.apache.org/xml/ns/j2ee/connector-1.2"
-        schemaLocation="geronimo-connector-1.2.xsd">
-        <xs:annotation>
-            <xs:documentation>
-                Import Geronimo resource adapter deployment plans. The imported
-                plan includes complex types for defining connectors and resource
-                adapters.
-            </xs:documentation>
-        </xs:annotation>
-    </xs:import>
-    <xs:import namespace="http://geronimo.apache.org/xml/ns/deployment-1.2"
-        schemaLocation="geronimo-module-1.2.xsd">
-        <xs:annotation>
-            <xs:documentation>
-                Import Geronimo Services deployment plans. The imported plan
-                includes complex types like moduleType, environmentType,
-                dependenciesType, etc. required by this plan schema.
-            </xs:documentation>
-        </xs:annotation>
-    </xs:import>
-
-    <xs:element name="application-client"
-        type="geronimo:application-clientType">
-        <xs:annotation>
-            <xs:documentation>
-                The root element for Geronimo Java application client deployment
-                plan, this element should always exist in instance documents. It
-                mirrors the application-client defined by
-                application-client_1_4.xsd. It specifies the references for the
-                java application client modules. These references could be
-                reference to external gbeans, ejb modules, service modules,
-                resources, or security principals.
-            </xs:documentation>
-        </xs:annotation>
-    </xs:element>
-
-    <xs:complexType name="application-clientType">
-        <xs:sequence>
-            <xs:element ref="sys:client-environment">
-                <xs:annotation>
-                    <xs:documentation>
-                        Reference to client-environment element defined in
-                        imported "geronimo-module-1.2.xsd"
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-            <xs:element ref="sys:server-environment">
-                <xs:annotation>
-                    <xs:documentation>
-                        Reference to server-environment element defined in
-                        imported "geronimo-module-1.2.xsd"
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-
-            <xs:element ref="naming:gbean-ref" minOccurs="0"
-                maxOccurs="unbounded">
-                <xs:annotation>
-                    <xs:documentation>
-                        Reference to gbean-ref element defined in imported
-                        "geronimo-naming-1.2.xsd"
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-            <xs:element ref="naming:ejb-ref" minOccurs="0"
-                maxOccurs="unbounded">
-                <xs:annotation>
-                    <xs:documentation>
-                        Reference to ejb-ref element defined in imported
-                        "geronimo-naming-1.2.xsd"
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-            <xs:element ref="naming:service-ref" minOccurs="0"
-                maxOccurs="unbounded">
-                <xs:annotation>
-                    <xs:documentation>
-                        Reference to service-ref element defined in imported
-                        "geronimo-naming-1.2.xsd"
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-            <xs:element ref="naming:resource-ref" minOccurs="0"
-                maxOccurs="unbounded">
-                <xs:annotation>
-                    <xs:documentation>
-                        Reference to resource-ref element defined in imported
-                        "geronimo-naming-1.2.xsd"
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-            <xs:element ref="naming:resource-env-ref" minOccurs="0"
-                maxOccurs="unbounded">
-                <xs:annotation>
-                    <xs:documentation>
-                        Reference to resource-env-ref element defined in
-                        imported "geronimo-naming-1.2.xsd"
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-            <xs:element ref="naming:message-destination" minOccurs="0"
-                maxOccurs="unbounded">
-                <xs:annotation>
-                    <xs:documentation>
-                        Reference to message-destination element defined in
-                        imported "geronimo-naming-1.2.xsd"
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-
-            <xs:element ref="security:default-subject" minOccurs="0">
-                <xs:annotation>
-                    <xs:documentation>
-                        Reference to default-subject element defined in
-                        imported "geronimo-security-2.0.xsd"
-                        This is the subject run under if you are not logged in.
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-
-            <xs:sequence minOccurs="0">
-                <xs:element name="realm-name" type="xs:string">
-                    <xs:annotation>
-                        <xs:documentation>
-                            The realm-name element names the security realm used
-                            for JAAS login
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-                <xs:element name="callback-handler" type="xs:string"
-                    minOccurs="0">
-                    <xs:annotation>
-                        <xs:documentation>
-                            The callback-handler element specifies the name of a
-                            callback class provided by the application for JAAS
-                            authentication. This class must implement the
-                            javax.security.auth.callback.CallbackHandler
-                            interface and follow its specification, as this
-                            class will be used by the application client
-                            container to collect authentication information from
-                            the user.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-            </xs:sequence>
-
-            <xs:element name="resource" type="geronimo:resourceType"
-                minOccurs="0" maxOccurs="unbounded">
-                <xs:annotation>
-                    <xs:documentation>
-                        The resource element names contains the definition of
-                        all the module-scoped connector resources. The connector
-                        resource can be both external and internal to the
-                        application client.
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-
-            <xs:element ref="sys:service" minOccurs="0" maxOccurs="unbounded">
-                <xs:annotation>
-                    <xs:documentation>
-                        Reference to service element defined in imported
-                        "geronimo-module-1.2.xsd"
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-        </xs:sequence>
-    </xs:complexType>
-
-    <xs:complexType name="resourceType">
-        <xs:sequence>
-            <xs:choice>
-                <xs:element name="external-rar" type="sys:patternType">
-                    <xs:annotation>
-                        <xs:documentation>
-                            The external-rar is a Module ID of the resource
-                            adapter in the Geronimo repository.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-                <xs:element name="internal-rar" type="xs:string">
-                    <xs:annotation>
-                        <xs:documentation>
-                            The internal-rar is a Module ID of the resource
-                            adapter in the client module.
-                        </xs:documentation>
-                    </xs:annotation>
-                </xs:element>
-            </xs:choice>
-            <xs:element ref="connector:connector">
-                <xs:annotation>
-                    <xs:documentation>
-                        This element contains the contents of the Resource Group
-                        deployment plan. The content is no different that the
-                        content of the deployment plan would have been for the
-                        server-wide or application-scoped resource group.
-                    </xs:documentation>
-                </xs:annotation>
-            </xs:element>
-        </xs:sequence>
-    </xs:complexType>
-
-</xs:schema>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+
+<!-- @version $Rev$ $Date$ -->
+
+<xs:schema
+    xmlns:geronimo="http://geronimo.apache.org/xml/ns/j2ee/application-client-2.0"
+    targetNamespace="http://geronimo.apache.org/xml/ns/j2ee/application-client-2.0"
+    xmlns:naming="http://geronimo.apache.org/xml/ns/naming-1.2"
+    xmlns:connector="http://geronimo.apache.org/xml/ns/j2ee/connector-1.2"
+    xmlns:security="http://geronimo.apache.org/xml/ns/security-2.0"
+    xmlns:sys="http://geronimo.apache.org/xml/ns/deployment-1.2"
+    xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
+    attributeFormDefault="unqualified" version="1.0">
+
+    <xs:annotation>
+        <xs:documentation>
+            This is an XML Schema Definition for Geronimo Java application
+            client deployment plan. In case the Java application client
+            deployment plan is provided internally in the java archive, it
+            should be named META-INF/geronimo-application-client.xml. In case
+            the java application client deployment plan is provided externally,
+            the deployment descriptor can be named anything and provided to the
+            deploy tool. All the Java application client deployment plan must
+            specify the top level element as application-client with namespace
+            specified as
+            xmlns="http://geronimo.apache.org/xml/ns/j2ee/application-client-2.0".
+            The default location for this document is
+            http://geronimo.apache.org/schemas-1.2/geronimo-application-client-2.0.xsd
+        </xs:documentation>
+    </xs:annotation>
+
+    <xs:import namespace="http://geronimo.apache.org/xml/ns/naming-1.2"
+        schemaLocation="geronimo-naming-1.2.xsd">
+        <xs:annotation>
+            <xs:documentation>
+                Import partial schema containing common naming elements, the
+                imported plan declares elements like ejb-ref, ejb-local-ref,
+                service-ref, resource-ref, and resource-env-ref required by this
+                plan schema.
+            </xs:documentation>
+        </xs:annotation>
+    </xs:import>
+    <xs:import namespace="http://geronimo.apache.org/xml/ns/security-2.0"
+        schemaLocation="geronimo-security-2.0.xsd">
+        <xs:annotation>
+            <xs:documentation>
+                Import Geronimo security deployment plans. The imported plan
+                includes complex types for defining security and principals.
+            </xs:documentation>
+        </xs:annotation>
+    </xs:import>
+    <xs:import namespace="http://geronimo.apache.org/xml/ns/j2ee/connector-1.2"
+        schemaLocation="geronimo-connector-1.2.xsd">
+        <xs:annotation>
+            <xs:documentation>
+                Import Geronimo resource adapter deployment plans. The imported
+                plan includes complex types for defining connectors and resource
+                adapters.
+            </xs:documentation>
+        </xs:annotation>
+    </xs:import>
+    <xs:import namespace="http://geronimo.apache.org/xml/ns/deployment-1.2"
+        schemaLocation="geronimo-module-1.2.xsd">
+        <xs:annotation>
+            <xs:documentation>
+                Import Geronimo Services deployment plans. The imported plan
+                includes complex types like moduleType, environmentType,
+                dependenciesType, etc. required by this plan schema.
+            </xs:documentation>
+        </xs:annotation>
+    </xs:import>
+
+    <xs:element name="application-client"
+        type="geronimo:application-clientType">
+        <xs:annotation>
+            <xs:documentation>
+                The root element for Geronimo Java application client deployment
+                plan, this element should always exist in instance documents. It
+                mirrors the application-client defined by
+                application-client_1_4.xsd. It specifies the references for the
+                java application client modules. These references could be
+                reference to external gbeans, ejb modules, service modules,
+                resources, or security principals.
+            </xs:documentation>
+        </xs:annotation>
+    </xs:element>
+
+    <xs:complexType name="application-clientType">
+        <xs:sequence>
+            <xs:element ref="sys:client-environment">
+                <xs:annotation>
+                    <xs:documentation>
+                        Reference to client-environment element defined in
+                        imported "geronimo-module-1.2.xsd"
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element ref="sys:server-environment">
+                <xs:annotation>
+                    <xs:documentation>
+                        Reference to server-environment element defined in
+                        imported "geronimo-module-1.2.xsd"
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+
+            <xs:element ref="naming:gbean-ref" minOccurs="0"
+                maxOccurs="unbounded">
+                <xs:annotation>
+                    <xs:documentation>
+                        Reference to gbean-ref element defined in imported
+                        "geronimo-naming-1.2.xsd"
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element ref="naming:ejb-ref" minOccurs="0"
+                maxOccurs="unbounded">
+                <xs:annotation>
+                    <xs:documentation>
+                        Reference to ejb-ref element defined in imported
+                        "geronimo-naming-1.2.xsd"
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element ref="naming:service-ref" minOccurs="0"
+                maxOccurs="unbounded">
+                <xs:annotation>
+                    <xs:documentation>
+                        Reference to service-ref element defined in imported
+                        "geronimo-naming-1.2.xsd"
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element ref="naming:resource-ref" minOccurs="0"
+                maxOccurs="unbounded">
+                <xs:annotation>
+                    <xs:documentation>
+                        Reference to resource-ref element defined in imported
+                        "geronimo-naming-1.2.xsd"
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element ref="naming:resource-env-ref" minOccurs="0"
+                maxOccurs="unbounded">
+                <xs:annotation>
+                    <xs:documentation>
+                        Reference to resource-env-ref element defined in
+                        imported "geronimo-naming-1.2.xsd"
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element ref="naming:message-destination" minOccurs="0"
+                maxOccurs="unbounded">
+                <xs:annotation>
+                    <xs:documentation>
+                        Reference to message-destination element defined in
+                        imported "geronimo-naming-1.2.xsd"
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+
+            <xs:element ref="security:default-subject" minOccurs="0">
+                <xs:annotation>
+                    <xs:documentation>
+                        Reference to default-subject element defined in
+                        imported "geronimo-security-2.0.xsd"
+                        This is the subject run under if you are not logged in.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+
+            <xs:sequence minOccurs="0">
+                <xs:element name="realm-name" type="xs:string">
+                    <xs:annotation>
+                        <xs:documentation>
+                            The realm-name element names the security realm used
+                            for JAAS login
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="callback-handler" type="xs:string"
+                    minOccurs="0">
+                    <xs:annotation>
+                        <xs:documentation>
+                            The callback-handler element specifies the name of a
+                            callback class provided by the application for JAAS
+                            authentication. This class must implement the
+                            javax.security.auth.callback.CallbackHandler
+                            interface and follow its specification, as this
+                            class will be used by the application client
+                            container to collect authentication information from
+                            the user.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+            </xs:sequence>
+
+            <xs:element name="resource" type="geronimo:resourceType"
+                minOccurs="0" maxOccurs="unbounded">
+                <xs:annotation>
+                    <xs:documentation>
+                        The resource element names contains the definition of
+                        all the module-scoped connector resources. The connector
+                        resource can be both external and internal to the
+                        application client.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+
+            <xs:element ref="sys:service" minOccurs="0" maxOccurs="unbounded">
+                <xs:annotation>
+                    <xs:documentation>
+                        Reference to service element defined in imported
+                        "geronimo-module-1.2.xsd"
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+        </xs:sequence>
+    </xs:complexType>
+
+    <xs:complexType name="resourceType">
+        <xs:sequence>
+            <xs:choice>
+                <xs:element name="external-rar" type="sys:patternType">
+                    <xs:annotation>
+                        <xs:documentation>
+                            The external-rar is a Module ID of the resource
+                            adapter in the Geronimo repository.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="internal-rar" type="xs:string">
+                    <xs:annotation>
+                        <xs:documentation>
+                            The internal-rar is a Module ID of the resource
+                            adapter in the client module.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+            </xs:choice>
+            <xs:element ref="connector:connector">
+                <xs:annotation>
+                    <xs:documentation>
+                        This element contains the contents of the Resource Group
+                        deployment plan. The content is no different that the
+                        content of the deployment plan would have been for the
+                        server-wide or application-scoped resource group.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+        </xs:sequence>
+    </xs:complexType>
+
+</xs:schema>

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.deployment.v21.jaxbmodel/src/main/resources/geronimo-application-client-2.0.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.deployment.v21.jaxbmodel/src/main/resources/geronimo-application-client-2.0.xsd
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.deployment.v21.jaxbmodel/src/main/resources/geronimo-application-client-2.0.xsd
------------------------------------------------------------------------------
    svn:mime-type = text/xml