You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by mc...@apache.org on 2008/04/23 02:09:20 UTC

svn commit: r650704 [2/4] - in /geronimo/devtools/eclipse-plugin/trunk: ./ plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/ plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/...

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/EntityBean.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/EntityBean.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/EntityBean.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/EntityGroupMapping.java
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/EntityGroupMapping.java?rev=650704&view=auto
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/EntityGroupMapping.java (added)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/EntityGroupMapping.java Tue Apr 22 17:09:15 2008
@@ -0,0 +1,83 @@
+/*
+ * 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.
+ */
+
+package org.apache.geronimo.jee.openejb;
+
+import java.io.Serializable;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for entity-group-mappingType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="entity-group-mappingType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="group-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * @version $Rev$ $Date$
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "entity-group-mappingType", propOrder = {
+    "groupName"
+})
+public class EntityGroupMapping
+    implements Serializable
+{
+
+    private final static long serialVersionUID = 12343L;
+    @XmlElement(name = "group-name", required = true)
+    protected String groupName;
+
+    /**
+     * Gets the value of the groupName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getGroupName() {
+        return groupName;
+    }
+
+    /**
+     * Sets the value of the groupName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setGroupName(String value) {
+        this.groupName = value;
+    }
+
+}

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/EntityGroupMapping.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/EntityGroupMapping.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/EntityGroupMapping.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Group.java
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Group.java?rev=650704&view=auto
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Group.java (added)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Group.java Tue Apr 22 17:09:15 2008
@@ -0,0 +1,248 @@
+/*
+ * 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.
+ */
+
+package org.apache.geronimo.jee.openejb;
+
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for groupType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="groupType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="group-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         &lt;element name="cmp-field-name" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ *         &lt;element name="cmr-field" maxOccurs="unbounded" minOccurs="0">
+ *           &lt;complexType>
+ *             &lt;complexContent>
+ *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 &lt;sequence>
+ *                   &lt;element name="cmr-field-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *                   &lt;element name="group-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *                 &lt;/sequence>
+ *               &lt;/restriction>
+ *             &lt;/complexContent>
+ *           &lt;/complexType>
+ *         &lt;/element>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * @version $Rev$ $Date$
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "groupType", propOrder = {
+    "groupName",
+    "cmpFieldName",
+    "cmrField"
+})
+public class Group
+    implements Serializable
+{
+
+    private final static long serialVersionUID = 12343L;
+    @XmlElement(name = "group-name", required = true)
+    protected String groupName;
+    @XmlElement(name = "cmp-field-name")
+    protected List<String> cmpFieldName;
+    @XmlElement(name = "cmr-field")
+    protected List<Group.CmrField> cmrField;
+
+    /**
+     * Gets the value of the groupName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getGroupName() {
+        return groupName;
+    }
+
+    /**
+     * Sets the value of the groupName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setGroupName(String value) {
+        this.groupName = value;
+    }
+
+    /**
+     * Gets the value of the cmpFieldName property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the cmpFieldName property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getCmpFieldName().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link String }
+     * 
+     * 
+     */
+    public List<String> getCmpFieldName() {
+        if (cmpFieldName == null) {
+            cmpFieldName = new ArrayList<String>();
+        }
+        return this.cmpFieldName;
+    }
+
+    /**
+     * Gets the value of the cmrField property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the cmrField property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getCmrField().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Group.CmrField }
+     * 
+     * 
+     */
+    public List<Group.CmrField> getCmrField() {
+        if (cmrField == null) {
+            cmrField = new ArrayList<Group.CmrField>();
+        }
+        return this.cmrField;
+    }
+
+
+    /**
+     * <p>Java class for anonymous complex type.
+     * 
+     * <p>The following schema fragment specifies the expected content contained within this class.
+     * 
+     * <pre>
+     * &lt;complexType>
+     *   &lt;complexContent>
+     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       &lt;sequence>
+     *         &lt;element name="cmr-field-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+     *         &lt;element name="group-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+     *       &lt;/sequence>
+     *     &lt;/restriction>
+     *   &lt;/complexContent>
+     * &lt;/complexType>
+     * </pre>
+     * 
+     * 
+     */
+    @XmlAccessorType(XmlAccessType.FIELD)
+    @XmlType(name = "", propOrder = {
+        "cmrFieldName",
+        "groupName"
+    })
+    public static class CmrField
+        implements Serializable
+    {
+
+        private final static long serialVersionUID = 12343L;
+        @XmlElement(name = "cmr-field-name", required = true)
+        protected String cmrFieldName;
+        @XmlElement(name = "group-name")
+        protected String groupName;
+
+        /**
+         * Gets the value of the cmrFieldName property.
+         * 
+         * @return
+         *     possible object is
+         *     {@link String }
+         *     
+         */
+        public String getCmrFieldName() {
+            return cmrFieldName;
+        }
+
+        /**
+         * Sets the value of the cmrFieldName property.
+         * 
+         * @param value
+         *     allowed object is
+         *     {@link String }
+         *     
+         */
+        public void setCmrFieldName(String value) {
+            this.cmrFieldName = value;
+        }
+
+        /**
+         * Gets the value of the groupName property.
+         * 
+         * @return
+         *     possible object is
+         *     {@link String }
+         *     
+         */
+        public String getGroupName() {
+            return groupName;
+        }
+
+        /**
+         * Sets the value of the groupName property.
+         * 
+         * @param value
+         *     allowed object is
+         *     {@link String }
+         *     
+         */
+        public void setGroupName(String value) {
+            this.groupName = value;
+        }
+
+    }
+
+}

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Group.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Group.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Group.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/MessageDrivenBean.java
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/MessageDrivenBean.java?rev=650704&view=auto
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/MessageDrivenBean.java (added)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/MessageDrivenBean.java Tue Apr 22 17:09:15 2008
@@ -0,0 +1,382 @@
+/*
+ * 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.
+ */
+
+package org.apache.geronimo.jee.openejb;
+
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlElementRef;
+import javax.xml.bind.annotation.XmlID;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+
+import org.apache.geronimo.jee.naming.AbstractNamingEntry;
+import org.apache.geronimo.jee.naming.EjbLocalRef;
+import org.apache.geronimo.jee.naming.EjbRef;
+import org.apache.geronimo.jee.naming.GbeanRef;
+import org.apache.geronimo.jee.naming.PersistenceContextRef;
+import org.apache.geronimo.jee.naming.PersistenceUnitRef;
+import org.apache.geronimo.jee.naming.ResourceEnvRef;
+import org.apache.geronimo.jee.naming.ResourceLocator;
+import org.apache.geronimo.jee.naming.ResourceRef;
+import org.apache.geronimo.jee.naming.ServiceRef;
+
+
+/**
+ * <p>Java class for message-driven-beanType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="message-driven-beanType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="ejb-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         &lt;element ref="{http://geronimo.apache.org/xml/ns/naming-1.2}resource-adapter"/>
+ *         &lt;element name="activation-config" type="{http://openejb.apache.org/xml/ns/openejb-jar-2.2}activation-configType" minOccurs="0"/>
+ *         &lt;group ref="{http://geronimo.apache.org/xml/ns/naming-1.2}jndiEnvironmentRefsGroup"/>
+ *       &lt;/sequence>
+ *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * @version $Rev$ $Date$
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "message-driven-beanType", propOrder = {
+    "ejbName",
+    "resourceAdapter",
+    "activationConfig",
+    "abstractNamingEntry",
+    "ejbRef",
+    "ejbLocalRef",
+    "serviceRef",
+    "resourceRef",
+    "resourceEnvRef"
+})
+public class MessageDrivenBean implements Serializable
+{
+
+    private final static long serialVersionUID = 12343L;
+    @XmlElement(name = "ejb-name", required = true)
+    protected String ejbName;
+    @XmlElement(name = "resource-adapter", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2", required = true)
+    protected ResourceLocator resourceAdapter;
+    @XmlElement(name = "activation-config")
+    protected ActivationConfig activationConfig;
+    @XmlElementRef(name = "abstract-naming-entry", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2", type = JAXBElement.class)
+    protected List<JAXBElement<? extends AbstractNamingEntry>> abstractNamingEntry;
+    @XmlElement(name = "ejb-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2")
+    protected List<EjbRef> ejbRef;
+    @XmlElement(name = "ejb-local-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2")
+    protected List<EjbLocalRef> ejbLocalRef;
+    @XmlElement(name = "service-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2")
+    protected List<ServiceRef> serviceRef;
+    @XmlElement(name = "resource-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2")
+    protected List<ResourceRef> resourceRef;
+    @XmlElement(name = "resource-env-ref", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2")
+    protected List<ResourceEnvRef> resourceEnvRef;
+    @XmlAttribute
+    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+    @XmlID
+    protected String id;
+
+    /**
+     * Gets the value of the ejbName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getEjbName() {
+        return ejbName;
+    }
+
+    /**
+     * Sets the value of the ejbName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setEjbName(String value) {
+        this.ejbName = value;
+    }
+
+    /**
+     * Gets the value of the resourceAdapter property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ResourceLocator}
+     *     
+     */
+    public ResourceLocator getResourceAdapter() {
+        return resourceAdapter;
+    }
+
+    /**
+     * Sets the value of the resourceAdapter property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ResourceLocator}
+     *     
+     */
+    public void setResourceAdapter(ResourceLocator value) {
+        this.resourceAdapter = value;
+    }
+
+    /**
+     * Gets the value of the activationConfig property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ActivationConfig}
+     *     
+     */
+    public ActivationConfig getActivationConfig() {
+        return activationConfig;
+    }
+
+    /**
+     * Sets the value of the activationConfig property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ActivationConfig}
+     *     
+     */
+    public void setActivationConfig(ActivationConfig value) {
+        this.activationConfig = value;
+    }
+
+    /**
+     * Gets the value of the abstractNamingEntry property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the abstractNamingEntry property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getAbstractNamingEntry().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link JAXBElement }{@code <}{@link PersistenceContextRef}{@code >} 
+     * {@link JAXBElement }{@code <}{@link AbstractNamingEntry}{@code >} 
+     * {@link JAXBElement }{@code <}{@link GbeanRef}{@code >} 
+     * {@link JAXBElement }{@code <}{@link PersistenceUnitRef}{@code >}
+     * 
+     * 
+     */
+    public List<JAXBElement<? extends AbstractNamingEntry>> getAbstractNamingEntry() {
+        if (abstractNamingEntry == null) {
+            abstractNamingEntry = new ArrayList<JAXBElement<? extends AbstractNamingEntry>>();
+        }
+        return this.abstractNamingEntry;
+    }
+
+    /**
+     * Gets the value of the ejbRef property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the ejbRef property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getEjbRef().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link EjbRef}
+     * 
+     * 
+     */
+    public List<EjbRef> getEjbRef() {
+        if (ejbRef == null) {
+            ejbRef = new ArrayList<EjbRef>();
+        }
+        return this.ejbRef;
+    }
+
+    /**
+     * Gets the value of the ejbLocalRef property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the ejbLocalRef property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getEjbLocalRef().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link EjbLocalRef}
+     * 
+     * 
+     */
+    public List<EjbLocalRef> getEjbLocalRef() {
+        if (ejbLocalRef == null) {
+            ejbLocalRef = new ArrayList<EjbLocalRef>();
+        }
+        return this.ejbLocalRef;
+    }
+
+    /**
+     * Gets the value of the serviceRef property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the serviceRef property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getServiceRef().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link ServiceRef}
+     * 
+     * 
+     */
+    public List<ServiceRef> getServiceRef() {
+        if (serviceRef == null) {
+            serviceRef = new ArrayList<ServiceRef>();
+        }
+        return this.serviceRef;
+    }
+
+    /**
+     * Gets the value of the resourceRef property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the resourceRef property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getResourceRef().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link ResourceRef}
+     * 
+     * 
+     */
+    public List<ResourceRef> getResourceRef() {
+        if (resourceRef == null) {
+            resourceRef = new ArrayList<ResourceRef>();
+        }
+        return this.resourceRef;
+    }
+
+    /**
+     * Gets the value of the resourceEnvRef property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the resourceEnvRef property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getResourceEnvRef().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link ResourceEnvRef}
+     * 
+     * 
+     */
+    public List<ResourceEnvRef> getResourceEnvRef() {
+        if (resourceEnvRef == null) {
+            resourceEnvRef = new ArrayList<ResourceEnvRef>();
+        }
+        return this.resourceEnvRef;
+    }
+
+    /**
+     * Gets the value of the id property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getId() {
+        return id;
+    }
+
+    /**
+     * Sets the value of the id property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setId(String value) {
+        this.id = value;
+    }
+
+}

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/MessageDrivenBean.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/MessageDrivenBean.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/MessageDrivenBean.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/ObjectFactory.java
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/ObjectFactory.java?rev=650704&r1=650703&r2=650704&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/ObjectFactory.java (original)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/ObjectFactory.java Tue Apr 22 17:09:15 2008
@@ -22,25 +22,18 @@
 import javax.xml.bind.annotation.XmlRegistry;
 import javax.xml.namespace.QName;
 
-import org.apache.geronimo.jee.naming.EjbLocalRef;
-import org.apache.geronimo.jee.naming.EjbRef;
-import org.apache.geronimo.jee.naming.ResourceEnvRef;
-import org.apache.geronimo.jee.naming.ResourceRef;
-import org.apache.geronimo.jee.naming.ServiceRef;
-
 
 /**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the <strong>org.apache.geronimo.jee.openejb</strong> package.
- * 
- * <p>An ObjectFactory allows you to programatically
- * construct new instances of the Java representation
- * for XML content. The Java representation of XML
- * content can consist of schema derived interfaces
- * and classes representing the binding of schema
- * type definitions, element declarations and model
- * groups.  Factory methods for each of these are
+ * This object contains factory methods for each 
+ * Java content interface and Java element interface 
+ * generated in the org.apache.openejb.xml.ns.openejb_jar_2 package. 
+ * <p>An ObjectFactory allows you to programatically 
+ * construct new instances of the Java representation 
+ * for XML content. The Java representation of XML 
+ * content can consist of schema derived interfaces 
+ * and classes representing the binding of schema 
+ * type definitions, element declarations and model 
+ * groups.  Factory methods for each of these are 
  * provided in this class.
  * 
  * @version $Rev$ $Date$
@@ -48,23 +41,57 @@
 @XmlRegistry
 public class ObjectFactory {
 
-    private final static QName _GeronimoEjbJarEjbLocalRef_QNAME = new QName("http://geronimo.apache.org/xml/ns/naming-1.2", "ejb-local-ref");
-    private final static QName _GeronimoEjbJarResourceEnvRef_QNAME = new QName("http://geronimo.apache.org/xml/ns/naming-1.2", "resource-env-ref");
-    private final static QName _GeronimoEjbJarResourceRef_QNAME = new QName("http://geronimo.apache.org/xml/ns/naming-1.2", "resource-ref");
-    private final static QName _GeronimoEjbJarEjbRef_QNAME = new QName("http://geronimo.apache.org/xml/ns/naming-1.2", "ejb-ref");
-    private final static QName _GeronimoEjbJarServiceRef_QNAME = new QName("http://geronimo.apache.org/xml/ns/naming-1.2", "service-ref");
-    private final static QName _EjbJar_QNAME = new QName("http://geronimo.apache.org/xml/ns/j2ee/ejb/openejb-2.0", "ejb-jar");
+    private final static QName _OpenejbJar_QNAME = new QName("http://openejb.apache.org/xml/ns/openejb-jar-2.2", "openejb-jar");
 
     /**
-     * Create a new ObjectFactory that can be used to create new instances of schema 
-     * derived classes for package: org.apache.geronimo.jee.openejb
+     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.openejb.xml.ns.openejb_jar_2
      * 
      */
     public ObjectFactory() {
     }
 
     /**
-     * Create an instance of {@link Empty }
+     * Create an instance of {@link EntityBean.CmpFieldMapping }
+     * 
+     */
+    public EntityBean.CmpFieldMapping createEntityBeanCmpFieldMapping() {
+        return new EntityBean.CmpFieldMapping();
+    }
+
+    /**
+     * Create an instance of {@link EjbRelation}
+     * 
+     */
+    public EjbRelation createEjbRelation() {
+        return new EjbRelation();
+    }
+
+    /**
+     * Create an instance of {@link WebServiceSecurity}
+     * 
+     */
+    public WebServiceSecurity createWebServiceSecurity() {
+        return new WebServiceSecurity();
+    }
+
+    /**
+     * Create an instance of {@link Group}
+     * 
+     */
+    public Group createGroup() {
+        return new Group();
+    }
+
+    /**
+     * Create an instance of {@link EjbRelationshipRole}
+     * 
+     */
+    public EjbRelationshipRole createEjbRelationshipRole() {
+        return new EjbRelationshipRole();
+    }
+
+    /**
+     * Create an instance of {@link Empty}
      * 
      */
     public Empty createEmpty() {
@@ -72,39 +99,80 @@
     }
 
     /**
-     * Create an instance of {@link TssLink }
+     * Create an instance of {@link Query.QueryMethod.MethodParams }
      * 
      */
-    public TssLink createTssLink() {
-        return new TssLink();
+    public Query.QueryMethod.MethodParams createQueryQueryMethodMethodParams() {
+        return new Query.QueryMethod.MethodParams();
     }
 
     /**
-     * Create an instance of {@link GeronimoEjbJar }
+     * Create an instance of {@link EjbRelationshipRole.RoleMapping }
      * 
      */
-    public GeronimoEjbJar createGeronimoEjbJar() {
-        return new GeronimoEjbJar();
+    public EjbRelationshipRole.RoleMapping createEjbRelationshipRoleRoleMapping() {
+        return new EjbRelationshipRole.RoleMapping();
     }
 
     /**
-     * Create an instance of {@link WebServiceBinding }
+     * Create an instance of {@link OpenejbJar.EnterpriseBeans }
      * 
      */
-    public WebServiceBinding createWebServiceBinding() {
-        return new WebServiceBinding();
+    public OpenejbJar.EnterpriseBeans createOpenejbJarEnterpriseBeans() {
+        return new OpenejbJar.EnterpriseBeans();
     }
 
     /**
-     * Create an instance of {@link WebServiceSecurity }
+     * Create an instance of {@link EntityBean.PrefetchGroup }
      * 
      */
-    public WebServiceSecurity createWebServiceSecurity() {
-        return new WebServiceSecurity();
+    public EntityBean.PrefetchGroup createEntityBeanPrefetchGroup() {
+        return new EntityBean.PrefetchGroup();
+    }
+
+    /**
+     * Create an instance of {@link EjbRelationshipRole.RoleMapping.CmrFieldMapping 
+     * } 
+     * 
+     */
+    public EjbRelationshipRole.RoleMapping.CmrFieldMapping createEjbRelationshipRoleRoleMappingCmrFieldMapping() {
+        return new EjbRelationshipRole.RoleMapping.CmrFieldMapping();
+    }
+
+    /**
+     * Create an instance of {@link ActivationConfig}
+     * 
+     */
+    public ActivationConfig createActivationConfig() {
+        return new ActivationConfig();
+    }
+
+    /**
+     * Create an instance of {@link Query}
+     * 
+     */
+    public Query createQuery() {
+        return new Query();
+    }
+
+    /**
+     * Create an instance of {@link EntityBean.Cache }
+     * 
+     */
+    public EntityBean.Cache createEntityBeanCache() {
+        return new EntityBean.Cache();
+    }
+
+    /**
+     * Create an instance of {@link EntityGroupMapping}
+     * 
+     */
+    public EntityGroupMapping createEntityGroupMapping() {
+        return new EntityGroupMapping();
     }
 
     /**
-     * Create an instance of {@link OpenejbJar }
+     * Create an instance of {@link OpenejbJar}
      * 
      */
     public OpenejbJar createOpenejbJar() {
@@ -112,57 +180,100 @@
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link EjbLocalRef}{@code >}}
+     * Create an instance of {@link CmrFieldGroupMapping}
+     * 
+     */
+    public CmrFieldGroupMapping createCmrFieldGroupMapping() {
+        return new CmrFieldGroupMapping();
+    }
+
+    /**
+     * Create an instance of {@link EjbRelationshipRole.RelationshipRoleSource }
+     * 
+     */
+    public EjbRelationshipRole.RelationshipRoleSource createEjbRelationshipRoleRelationshipRoleSource() {
+        return new EjbRelationshipRole.RelationshipRoleSource();
+    }
+
+    /**
+     * Create an instance of {@link Query.QueryMethod }
+     * 
+     */
+    public Query.QueryMethod createQueryQueryMethod() {
+        return new Query.QueryMethod();
+    }
+
+    /**
+     * Create an instance of {@link CmpFieldGroupMapping}
+     * 
+     */
+    public CmpFieldGroupMapping createCmpFieldGroupMapping() {
+        return new CmpFieldGroupMapping();
+    }
+
+    /**
+     * Create an instance of {@link SessionBean}
+     * 
+     */
+    public SessionBean createSessionBean() {
+        return new SessionBean();
+    }
+
+    /**
+     * Create an instance of {@link EjbRelationshipRole.CmrField }
+     * 
+     */
+    public EjbRelationshipRole.CmrField createEjbRelationshipRoleCmrField() {
+        return new EjbRelationshipRole.CmrField();
+    }
+
+    /**
+     * Create an instance of {@link EntityBean}
      * 
      */
-    @XmlElementDecl(namespace = "http://geronimo.apache.org/xml/ns/naming-1.2", name = "ejb-local-ref", scope = GeronimoEjbJar.class)
-    public JAXBElement<EjbLocalRef> createGeronimoEjbJarEjbLocalRef(EjbLocalRef value) {
-        return new JAXBElement<EjbLocalRef>(_GeronimoEjbJarEjbLocalRef_QNAME, EjbLocalRef.class, GeronimoEjbJar.class, value);
+    public EntityBean createEntityBean() {
+        return new EntityBean();
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link ResourceEnvRef}{@code >}}
+     * Create an instance of {@link Group.CmrField }
      * 
      */
-    @XmlElementDecl(namespace = "http://geronimo.apache.org/xml/ns/naming-1.2", name = "resource-env-ref", scope = GeronimoEjbJar.class)
-    public JAXBElement<ResourceEnvRef> createGeronimoEjbJarResourceEnvRef(ResourceEnvRef value) {
-        return new JAXBElement<ResourceEnvRef>(_GeronimoEjbJarResourceEnvRef_QNAME, ResourceEnvRef.class, GeronimoEjbJar.class, value);
+    public Group.CmrField createGroupCmrField() {
+        return new Group.CmrField();
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link ResourceRef}{@code >}}
+     * Create an instance of {@link MessageDrivenBean}
      * 
      */
-    @XmlElementDecl(namespace = "http://geronimo.apache.org/xml/ns/naming-1.2", name = "resource-ref", scope = GeronimoEjbJar.class)
-    public JAXBElement<ResourceRef> createGeronimoEjbJarResourceRef(ResourceRef value) {
-        return new JAXBElement<ResourceRef>(_GeronimoEjbJarResourceRef_QNAME, ResourceRef.class, GeronimoEjbJar.class, value);
+    public MessageDrivenBean createMessageDrivenBean() {
+        return new MessageDrivenBean();
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link EjbRef}{@code >}}
+     * Create an instance of {@link ActivationConfigProperty}
      * 
      */
-    @XmlElementDecl(namespace = "http://geronimo.apache.org/xml/ns/naming-1.2", name = "ejb-ref", scope = GeronimoEjbJar.class)
-    public JAXBElement<EjbRef> createGeronimoEjbJarEjbRef(EjbRef value) {
-        return new JAXBElement<EjbRef>(_GeronimoEjbJarEjbRef_QNAME, EjbRef.class, GeronimoEjbJar.class, value);
+    public ActivationConfigProperty createActivationConfigProperty() {
+        return new ActivationConfigProperty();
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link ServiceRef}{@code >}}
+     * Create an instance of {@link Relationships}
      * 
      */
-    @XmlElementDecl(namespace = "http://geronimo.apache.org/xml/ns/naming-1.2", name = "service-ref", scope = GeronimoEjbJar.class)
-    public JAXBElement<ServiceRef> createGeronimoEjbJarServiceRef(ServiceRef value) {
-        return new JAXBElement<ServiceRef>(_GeronimoEjbJarServiceRef_QNAME, ServiceRef.class, GeronimoEjbJar.class, value);
+    public Relationships createRelationships() {
+        return new Relationships();
     }
 
     /**
-     * Create an instance of {@link JAXBElement }{@code <}{@link GeronimoEjbJar }{@code >}}
+     * Create an instance of {@link JAXBElement }{@code <}{@link OpenejbJar}{@code >}} 
      * 
      */
-    @XmlElementDecl(namespace = "http://geronimo.apache.org/xml/ns/j2ee/ejb/openejb-2.0", name = "ejb-jar")
-    public JAXBElement<GeronimoEjbJar> createEjbJar(GeronimoEjbJar value) {
-        return new JAXBElement<GeronimoEjbJar>(_EjbJar_QNAME, GeronimoEjbJar.class, null, value);
+    @XmlElementDecl(namespace = "http://openejb.apache.org/xml/ns/openejb-jar-2.2", name = "openejb-jar")
+    public JAXBElement<OpenejbJar> createOpenejbJar(OpenejbJar value) {
+        return new JAXBElement<OpenejbJar>(_OpenejbJar_QNAME, OpenejbJar.class, null, value);
     }
 
 }

Modified: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/OpenejbJar.java
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/OpenejbJar.java?rev=650704&r1=650703&r2=650704&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/OpenejbJar.java (original)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/OpenejbJar.java Tue Apr 22 17:09:15 2008
@@ -18,13 +18,23 @@
 package org.apache.geronimo.jee.openejb;
 
 import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
 
+import javax.xml.bind.JAXBElement;
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAnyElement;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlElementRef;
+import javax.xml.bind.annotation.XmlElements;
 import javax.xml.bind.annotation.XmlType;
 
-import org.w3c.dom.Element;
+import org.apache.geronimo.jee.application.AbstractSecurity;
+import org.apache.geronimo.jee.deployment.AbstractService;
+import org.apache.geronimo.jee.deployment.Environment;
+import org.apache.geronimo.jee.deployment.Gbean;
+import org.apache.geronimo.jee.naming.MessageDestination;
+import org.apache.geronimo.jee.naming.ResourceLocator;
 
 
 /**
@@ -37,7 +47,28 @@
  *   &lt;complexContent>
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  *       &lt;sequence>
- *         &lt;any/>
+ *         &lt;element ref="{http://geronimo.apache.org/xml/ns/deployment-1.2}environment" minOccurs="0"/>
+ *         &lt;element ref="{http://geronimo.apache.org/xml/ns/naming-1.2}cmp-connection-factory" minOccurs="0"/>
+ *         &lt;element name="ejb-ql-compiler-factory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="db-syntax-factory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="enforce-foreign-key-constraints" type="{http://openejb.apache.org/xml/ns/openejb-jar-2.2}emptyType" minOccurs="0"/>
+ *         &lt;element name="enterprise-beans">
+ *           &lt;complexType>
+ *             &lt;complexContent>
+ *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *                   &lt;element name="session" type="{http://openejb.apache.org/xml/ns/openejb-jar-2.2}session-beanType"/>
+ *                   &lt;element name="entity" type="{http://openejb.apache.org/xml/ns/openejb-jar-2.2}entity-beanType"/>
+ *                   &lt;element name="message-driven" type="{http://openejb.apache.org/xml/ns/openejb-jar-2.2}message-driven-beanType"/>
+ *                 &lt;/choice>
+ *               &lt;/restriction>
+ *             &lt;/complexContent>
+ *           &lt;/complexType>
+ *         &lt;/element>
+ *         &lt;element name="relationships" type="{http://openejb.apache.org/xml/ns/openejb-jar-2.2}relationshipsType" minOccurs="0"/>
+ *         &lt;element ref="{http://geronimo.apache.org/xml/ns/naming-1.2}message-destination" maxOccurs="unbounded" minOccurs="0"/>
+ *         &lt;element ref="{http://geronimo.apache.org/xml/ns/j2ee/application-2.0}security" minOccurs="0"/>
+ *         &lt;element ref="{http://geronimo.apache.org/xml/ns/deployment-1.2}service" maxOccurs="unbounded" minOccurs="0"/>
  *       &lt;/sequence>
  *     &lt;/restriction>
  *   &lt;/complexContent>
@@ -48,40 +79,372 @@
  */
 @XmlAccessorType(XmlAccessType.FIELD)
 @XmlType(name = "openejb-jarType", propOrder = {
-    "any"
+    "environment",
+    "cmpConnectionFactory",
+    "ejbQlCompilerFactory",
+    "dbSyntaxFactory",
+    "enforceForeignKeyConstraints",
+    "enterpriseBeans",
+    "relationships",
+    "messageDestination",
+    "security",
+    "service"
 })
 public class OpenejbJar
     implements Serializable
 {
 
     private final static long serialVersionUID = 12343L;
-    @XmlAnyElement(lax = true)
-    protected Object any;
+    @XmlElement(namespace = "http://geronimo.apache.org/xml/ns/deployment-1.2")
+    protected Environment environment;
+    @XmlElement(name = "cmp-connection-factory", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2")
+    protected ResourceLocator cmpConnectionFactory;
+    @XmlElement(name = "ejb-ql-compiler-factory")
+    protected String ejbQlCompilerFactory;
+    @XmlElement(name = "db-syntax-factory")
+    protected String dbSyntaxFactory;
+    @XmlElement(name = "enforce-foreign-key-constraints")
+    protected Empty enforceForeignKeyConstraints;
+    @XmlElement(name = "enterprise-beans", required = true)
+    protected OpenejbJar.EnterpriseBeans enterpriseBeans;
+    protected Relationships relationships;
+    @XmlElement(name = "message-destination", namespace = "http://geronimo.apache.org/xml/ns/naming-1.2")
+    protected List<MessageDestination> messageDestination;
+    @XmlElementRef(name = "security", namespace = "http://geronimo.apache.org/xml/ns/j2ee/application-2.0", type = JAXBElement.class)
+    protected JAXBElement<? extends AbstractSecurity> security;
+    @XmlElementRef(name = "service", namespace = "http://geronimo.apache.org/xml/ns/deployment-1.2", type = JAXBElement.class)
+    protected List<JAXBElement<? extends AbstractService>> service;
 
     /**
-     * Gets the value of the any property.
+     * Gets the value of the environment property.
      * 
      * @return
      *     possible object is
-     *     {@link Object }
-     *     {@link Element }
+     *     {@link Environment}
      *     
      */
-    public Object getAny() {
-        return any;
+    public Environment getEnvironment() {
+        return environment;
     }
 
     /**
-     * Sets the value of the any property.
+     * Sets the value of the environment property.
      * 
      * @param value
      *     allowed object is
-     *     {@link Object }
-     *     {@link Element }
+     *     {@link Environment}
      *     
      */
-    public void setAny(Object value) {
-        this.any = value;
+    public void setEnvironment(Environment value) {
+        this.environment = value;
+    }
+
+    /**
+     * Gets the value of the cmpConnectionFactory property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link ResourceLocator}
+     *     
+     */
+    public ResourceLocator getCmpConnectionFactory() {
+        return cmpConnectionFactory;
+    }
+
+    /**
+     * Sets the value of the cmpConnectionFactory property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link ResourceLocator}
+     *     
+     */
+    public void setCmpConnectionFactory(ResourceLocator value) {
+        this.cmpConnectionFactory = value;
+    }
+
+    /**
+     * Gets the value of the ejbQlCompilerFactory property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getEjbQlCompilerFactory() {
+        return ejbQlCompilerFactory;
+    }
+
+    /**
+     * Sets the value of the ejbQlCompilerFactory property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setEjbQlCompilerFactory(String value) {
+        this.ejbQlCompilerFactory = value;
+    }
+
+    /**
+     * Gets the value of the dbSyntaxFactory property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getDbSyntaxFactory() {
+        return dbSyntaxFactory;
+    }
+
+    /**
+     * Sets the value of the dbSyntaxFactory property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setDbSyntaxFactory(String value) {
+        this.dbSyntaxFactory = value;
+    }
+
+    /**
+     * Gets the value of the enforceForeignKeyConstraints property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Empty}
+     *     
+     */
+    public Empty getEnforceForeignKeyConstraints() {
+        return enforceForeignKeyConstraints;
+    }
+
+    /**
+     * Sets the value of the enforceForeignKeyConstraints property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Empty}
+     *     
+     */
+    public void setEnforceForeignKeyConstraints(Empty value) {
+        this.enforceForeignKeyConstraints = value;
+    }
+
+    /**
+     * Gets the value of the enterpriseBeans property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link OpenejbJar.EnterpriseBeans }
+     *     
+     */
+    public OpenejbJar.EnterpriseBeans getEnterpriseBeans() {
+        return enterpriseBeans;
+    }
+
+    /**
+     * Sets the value of the enterpriseBeans property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link OpenejbJar.EnterpriseBeans }
+     *     
+     */
+    public void setEnterpriseBeans(OpenejbJar.EnterpriseBeans value) {
+        this.enterpriseBeans = value;
+    }
+
+    /**
+     * Gets the value of the relationships property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Relationships}
+     *     
+     */
+    public Relationships getRelationships() {
+        return relationships;
+    }
+
+    /**
+     * Sets the value of the relationships property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Relationships}
+     *     
+     */
+    public void setRelationships(Relationships value) {
+        this.relationships = value;
+    }
+
+    /**
+     * Gets the value of the messageDestination property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the messageDestination property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getMessageDestination().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link MessageDestination}
+     * 
+     * 
+     */
+    public List<MessageDestination> getMessageDestination() {
+        if (messageDestination == null) {
+            messageDestination = new ArrayList<MessageDestination>();
+        }
+        return this.messageDestination;
+    }
+
+    /**
+     * Gets the value of the security property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link JAXBElement }{@code <}{@link AbstractSecurity}{@code >}
+     *     {@link JAXBElement }{@code <}{@link
+     *     org.apache.geronimo.xml.ns.security_1.Security}{@code >}
+     *     {@link JAXBElement }{@code <}{@link
+     *     org.apache.geronimo.xml.ns.security_2.Security}{@code >}
+     *     {@link JAXBElement }{@code <}{@link
+     *     org.apache.geronimo.xml.ns.subject_info_1.Security}{@code >}
+     *     
+     */
+    public JAXBElement<? extends AbstractSecurity> getSecurity() {
+        return security;
+    }
+
+    /**
+     * Sets the value of the security property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link JAXBElement }{@code <}{@link AbstractSecurity}{@code >}
+     *     {@link JAXBElement }{@code <}{@link org.apache.geronimo.xml.ns.security_1.Security }{@code >}
+     *     {@link JAXBElement }{@code <}{@link org.apache.geronimo.xml.ns.security_2.Security }{@code >}
+     *     {@link JAXBElement }{@code <}{@link org.apache.geronimo.xml.ns.subject_info_1.Security
+     *     }{@code >}
+     *     
+     */
+    public void setSecurity(JAXBElement<? extends AbstractSecurity> value) {
+        this.security = ((JAXBElement<? extends AbstractSecurity> ) value);
+    }
+
+    /**
+     * Gets the value of the service property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the service property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getService().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link JAXBElement }{@code <}{@link AbstractService}{@code >} 
+     * {@link JAXBElement }{@code <}{@link Gbean}{@code >}
+     * 
+     * 
+     */
+    public List<JAXBElement<? extends AbstractService>> getService() {
+        if (service == null) {
+            service = new ArrayList<JAXBElement<? extends AbstractService>>();
+        }
+        return this.service;
+    }
+
+
+    /**
+     * <p>Java class for anonymous complex type.
+     * 
+     * <p>The following schema fragment specifies the expected content contained within this class.
+     * 
+     * <pre>
+     * &lt;complexType>
+     *   &lt;complexContent>
+     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       &lt;choice maxOccurs="unbounded" minOccurs="0">
+     *         &lt;element name="session" type="{http://openejb.apache.org/xml/ns/openejb-jar-2.2}session-beanType"/>
+     *         &lt;element name="entity" type="{http://openejb.apache.org/xml/ns/openejb-jar-2.2}entity-beanType"/>
+     *         &lt;element name="message-driven" type="{http://openejb.apache.org/xml/ns/openejb-jar-2.2}message-driven-beanType"/>
+     *       &lt;/choice>
+     *     &lt;/restriction>
+     *   &lt;/complexContent>
+     * &lt;/complexType>
+     * </pre>
+     * 
+     * 
+     */
+    @XmlAccessorType(XmlAccessType.FIELD)
+    @XmlType(name = "", propOrder = {
+        "sessionOrEntityOrMessageDriven"
+    })
+    public static class EnterpriseBeans
+        implements Serializable
+    {
+
+        private final static long serialVersionUID = 12343L;
+        @XmlElements({
+            @XmlElement(name = "message-driven", type = MessageDrivenBean.class),
+            @XmlElement(name = "entity", type = EntityBean.class),
+            @XmlElement(name = "session", type = SessionBean.class)
+        })
+        protected List<Object> sessionOrEntityOrMessageDriven;
+
+        /**
+         * Gets the value of the sessionOrEntityOrMessageDriven property.
+         * 
+         * <p>
+         * This accessor method returns a reference to the live list,
+         * not a snapshot. Therefore any modification you make to the
+         * returned list will be present inside the JAXB object.
+         * This is why there is not a <CODE>set</CODE> method for the sessionOrEntityOrMessageDriven property.
+         * 
+         * <p>
+         * For example, to add a new item, do as follows:
+         * <pre>
+         *    getSessionOrEntityOrMessageDriven().add(newItem);
+         * </pre>
+         * 
+         * 
+         * <p>
+         * Objects of the following type(s) are allowed in the list
+         * {@link MessageDrivenBean} 
+         * {@link EntityBean} 
+         * {@link SessionBean}
+         * 
+         * 
+         */
+        public List<Object> getSessionOrEntityOrMessageDriven() {
+            if (sessionOrEntityOrMessageDriven == null) {
+                sessionOrEntityOrMessageDriven = new ArrayList<Object>();
+            }
+            return this.sessionOrEntityOrMessageDriven;
+        }
+
     }
 
 }

Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Query.java
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Query.java?rev=650704&view=auto
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Query.java (added)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Query.java Tue Apr 22 17:09:15 2008
@@ -0,0 +1,377 @@
+/*
+ * 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.
+ */
+
+package org.apache.geronimo.jee.openejb;
+
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for queryType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="queryType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="query-method">
+ *           &lt;complexType>
+ *             &lt;complexContent>
+ *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 &lt;sequence>
+ *                   &lt;element name="method-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *                   &lt;element name="method-params">
+ *                     &lt;complexType>
+ *                       &lt;complexContent>
+ *                         &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                           &lt;sequence>
+ *                             &lt;element name="method-param" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ *                           &lt;/sequence>
+ *                         &lt;/restriction>
+ *                       &lt;/complexContent>
+ *                     &lt;/complexType>
+ *                   &lt;/element>
+ *                 &lt;/sequence>
+ *               &lt;/restriction>
+ *             &lt;/complexContent>
+ *           &lt;/complexType>
+ *         &lt;/element>
+ *         &lt;element name="result-type-mapping" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="ejb-ql" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="no-cache-flush" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
+ *         &lt;element name="group-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * @version $Rev$ $Date$
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "queryType", propOrder = {
+    "queryMethod",
+    "resultTypeMapping",
+    "ejbQl",
+    "noCacheFlush",
+    "groupName"
+})
+public class Query
+    implements Serializable
+{
+
+    private final static long serialVersionUID = 12343L;
+    @XmlElement(name = "query-method", required = true)
+    protected Query.QueryMethod queryMethod;
+    @XmlElement(name = "result-type-mapping")
+    protected String resultTypeMapping;
+    @XmlElement(name = "ejb-ql")
+    protected String ejbQl;
+    @XmlElement(name = "no-cache-flush")
+    protected Object noCacheFlush;
+    @XmlElement(name = "group-name")
+    protected String groupName;
+
+    /**
+     * Gets the value of the queryMethod property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Query.QueryMethod }
+     *     
+     */
+    public Query.QueryMethod getQueryMethod() {
+        return queryMethod;
+    }
+
+    /**
+     * Sets the value of the queryMethod property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Query.QueryMethod }
+     *     
+     */
+    public void setQueryMethod(Query.QueryMethod value) {
+        this.queryMethod = value;
+    }
+
+    /**
+     * Gets the value of the resultTypeMapping property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getResultTypeMapping() {
+        return resultTypeMapping;
+    }
+
+    /**
+     * Sets the value of the resultTypeMapping property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setResultTypeMapping(String value) {
+        this.resultTypeMapping = value;
+    }
+
+    /**
+     * Gets the value of the ejbQl property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getEjbQl() {
+        return ejbQl;
+    }
+
+    /**
+     * Sets the value of the ejbQl property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setEjbQl(String value) {
+        this.ejbQl = value;
+    }
+
+    /**
+     * Gets the value of the noCacheFlush property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link Object }
+     *     
+     */
+    public Object getNoCacheFlush() {
+        return noCacheFlush;
+    }
+
+    /**
+     * Sets the value of the noCacheFlush property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link Object }
+     *     
+     */
+    public void setNoCacheFlush(Object value) {
+        this.noCacheFlush = value;
+    }
+
+    /**
+     * Gets the value of the groupName property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getGroupName() {
+        return groupName;
+    }
+
+    /**
+     * Sets the value of the groupName property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setGroupName(String value) {
+        this.groupName = value;
+    }
+
+
+    /**
+     * <p>Java class for anonymous complex type.
+     * 
+     * <p>The following schema fragment specifies the expected content contained within this class.
+     * 
+     * <pre>
+     * &lt;complexType>
+     *   &lt;complexContent>
+     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       &lt;sequence>
+     *         &lt;element name="method-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+     *         &lt;element name="method-params">
+     *           &lt;complexType>
+     *             &lt;complexContent>
+     *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *                 &lt;sequence>
+     *                   &lt;element name="method-param" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+     *                 &lt;/sequence>
+     *               &lt;/restriction>
+     *             &lt;/complexContent>
+     *           &lt;/complexType>
+     *         &lt;/element>
+     *       &lt;/sequence>
+     *     &lt;/restriction>
+     *   &lt;/complexContent>
+     * &lt;/complexType>
+     * </pre>
+     * 
+     * 
+     */
+    @XmlAccessorType(XmlAccessType.FIELD)
+    @XmlType(name = "", propOrder = {
+        "methodName",
+        "methodParams"
+    })
+    public static class QueryMethod
+        implements Serializable
+    {
+
+        private final static long serialVersionUID = 12343L;
+        @XmlElement(name = "method-name", required = true)
+        protected String methodName;
+        @XmlElement(name = "method-params", required = true)
+        protected Query.QueryMethod.MethodParams methodParams;
+
+        /**
+         * Gets the value of the methodName property.
+         * 
+         * @return
+         *     possible object is
+         *     {@link String }
+         *     
+         */
+        public String getMethodName() {
+            return methodName;
+        }
+
+        /**
+         * Sets the value of the methodName property.
+         * 
+         * @param value
+         *     allowed object is
+         *     {@link String }
+         *     
+         */
+        public void setMethodName(String value) {
+            this.methodName = value;
+        }
+
+        /**
+         * Gets the value of the methodParams property.
+         * 
+         * @return
+         *     possible object is
+         *     {@link Query.QueryMethod.MethodParams }
+         *     
+         */
+        public Query.QueryMethod.MethodParams getMethodParams() {
+            return methodParams;
+        }
+
+        /**
+         * Sets the value of the methodParams property.
+         * 
+         * @param value
+         *     allowed object is
+         *     {@link Query.QueryMethod.MethodParams }
+         *     
+         */
+        public void setMethodParams(Query.QueryMethod.MethodParams value) {
+            this.methodParams = value;
+        }
+
+
+        /**
+         * <p>Java class for anonymous complex type.
+         * 
+         * <p>The following schema fragment specifies the expected content contained within this class.
+         * 
+         * <pre>
+         * &lt;complexType>
+         *   &lt;complexContent>
+         *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+         *       &lt;sequence>
+         *         &lt;element name="method-param" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+         *       &lt;/sequence>
+         *     &lt;/restriction>
+         *   &lt;/complexContent>
+         * &lt;/complexType>
+         * </pre>
+         * 
+         * 
+         */
+        @XmlAccessorType(XmlAccessType.FIELD)
+        @XmlType(name = "", propOrder = {
+            "methodParam"
+        })
+        public static class MethodParams
+            implements Serializable
+        {
+
+            private final static long serialVersionUID = 12343L;
+            @XmlElement(name = "method-param")
+            protected List<String> methodParam;
+
+            /**
+             * Gets the value of the methodParam property.
+             * 
+             * <p>
+             * This accessor method returns a reference to the live list,
+             * not a snapshot. Therefore any modification you make to the
+             * returned list will be present inside the JAXB object.
+             * This is why there is not a <CODE>set</CODE> method for the methodParam property.
+             * 
+             * <p>
+             * For example, to add a new item, do as follows:
+             * <pre>
+             *    getMethodParam().add(newItem);
+             * </pre>
+             * 
+             * 
+             * <p>
+             * Objects of the following type(s) are allowed in the list
+             * {@link String }
+             * 
+             * 
+             */
+            public List<String> getMethodParam() {
+                if (methodParam == null) {
+                    methodParam = new ArrayList<String>();
+                }
+                return this.methodParam;
+            }
+
+        }
+
+    }
+
+}

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Query.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Query.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Query.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Relationships.java
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Relationships.java?rev=650704&view=auto
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Relationships.java (added)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Relationships.java Tue Apr 22 17:09:15 2008
@@ -0,0 +1,90 @@
+/*
+ * 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.
+ */
+
+package org.apache.geronimo.jee.openejb;
+
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for relationshipsType complex type.
+ * 
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * 
+ * <pre>
+ * &lt;complexType name="relationshipsType">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="ejb-relation" type="{http://openejb.apache.org/xml/ns/openejb-jar-2.2}ejb-relationType" maxOccurs="unbounded"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ * 
+ * @version $Rev$ $Date$
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "relationshipsType", propOrder = {
+    "ejbRelation"
+})
+public class Relationships
+    implements Serializable
+{
+
+    private final static long serialVersionUID = 12343L;
+    @XmlElement(name = "ejb-relation", required = true)
+    protected List<EjbRelation> ejbRelation;
+
+    /**
+     * Gets the value of the ejbRelation property.
+     * 
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the ejbRelation property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getEjbRelation().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link EjbRelation}
+     * 
+     * 
+     */
+    public List<EjbRelation> getEjbRelation() {
+        if (ejbRelation == null) {
+            ejbRelation = new ArrayList<EjbRelation>();
+        }
+        return this.ejbRelation;
+    }
+
+}

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Relationships.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Relationships.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/Relationships.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain