You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by an...@apache.org on 2015/12/04 17:15:20 UTC

[16/39] tomee git commit: EOL

http://git-wip-us.apache.org/repos/asf/tomee/blob/52567075/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/AssemblyDescriptor.java
----------------------------------------------------------------------
diff --git a/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/AssemblyDescriptor.java b/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/AssemblyDescriptor.java
index 8ce02ca..d4182bd 100644
--- a/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/AssemblyDescriptor.java
+++ b/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/AssemblyDescriptor.java
@@ -1,414 +1,414 @@
-/**
- * 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.openejb.jee.was.v6.ejb;
-
-import org.apache.openejb.jee.was.v6.common.MessageDestination;
-import org.apache.openejb.jee.was.v6.common.SecurityRole;
-import org.apache.openejb.jee.was.v6.xmi.Extension;
-
-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.XmlID;
-import javax.xml.bind.annotation.XmlIDREF;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
-import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
-import javax.xml.namespace.QName;
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * The assembly-descriptor element contains application-assembly information.
- * The application-assembly information consists of the following parts: the
- * definition of security roles, the definition of method permissions, and the
- * definition of transaction attributes for enterprise beans with
- * container-managed transaction demarcation. All the parts are optional in the
- * sense that they are omitted if the lists represented by them are empty.
- * Providing an assembly-descriptor in the deployment descriptor is optional for
- * the ejb-jar file producer.
- * <p/>
- * <p/>
- * <p/>
- * Java class for AssemblyDescriptor complex type.
- * <p/>
- * <p/>
- * The following schema fragment specifies the expected content contained within
- * this class.
- * <p/>
- * <pre>
- * &lt;complexType name="AssemblyDescriptor">
- *   &lt;complexContent>
- *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       &lt;choice>
- *         &lt;choice maxOccurs="unbounded" minOccurs="0">
- *           &lt;element name="methodPermissions" type="{ejb.xmi}MethodPermission"/>
- *         &lt;/choice>
- *         &lt;choice maxOccurs="unbounded" minOccurs="0">
- *           &lt;element name="methodTransactions" type="{ejb.xmi}MethodTransaction"/>
- *         &lt;/choice>
- *         &lt;choice maxOccurs="unbounded" minOccurs="0">
- *           &lt;element name="securityRoles" type="{common.xmi}SecurityRole"/>
- *         &lt;/choice>
- *         &lt;choice maxOccurs="unbounded" minOccurs="0">
- *           &lt;element name="excludeList" type="{ejb.xmi}ExcludeList"/>
- *         &lt;/choice>
- *         &lt;choice maxOccurs="unbounded" minOccurs="0">
- *           &lt;element name="messageDestinations" type="{common.xmi}MessageDestination"/>
- *         &lt;/choice>
- *         &lt;choice maxOccurs="unbounded" minOccurs="0">
- *           &lt;element ref="{http://www.omg.org/XMI}Extension"/>
- *         &lt;/choice>
- *       &lt;/choice>
- *       &lt;attGroup ref="{http://www.omg.org/XMI}ObjectAttribs"/>
- *       &lt;attribute ref="{http://www.omg.org/XMI}id"/>
- *     &lt;/restriction>
- *   &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "AssemblyDescriptor", propOrder = {"methodPermissions",
-    "methodTransactions", "securityRoles", "excludeList",
-    "messageDestinations", "extensions"})
-public class AssemblyDescriptor {
-
-    protected List<MethodPermission> methodPermissions;
-    protected List<MethodTransaction> methodTransactions;
-    protected List<SecurityRole> securityRoles;
-    protected List<ExcludeList> excludeList;
-    protected List<MessageDestination> messageDestinations;
-    @XmlElement(name = "Extension", namespace = "http://www.omg.org/XMI")
-    protected List<Extension> extensions;
-    @XmlAttribute(namespace = "http://www.omg.org/XMI")
-    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
-    @XmlID
-    protected String id;
-    @XmlAttribute(namespace = "http://www.omg.org/XMI")
-    protected QName type;
-    @XmlAttribute(namespace = "http://www.omg.org/XMI")
-    protected String version;
-    @XmlAttribute
-    protected String href;
-    @XmlAttribute(namespace = "http://www.omg.org/XMI")
-    @XmlIDREF
-    protected Object idref;
-    @XmlAttribute(namespace = "http://www.omg.org/XMI")
-    protected String label;
-    @XmlAttribute(namespace = "http://www.omg.org/XMI")
-    protected String uuid;
-
-    /**
-     * Gets the value of the methodPermissions property.
-     * <p/>
-     * <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 methodPermissions property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getMethodPermissions().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link MethodPermission }
-     */
-    public List<MethodPermission> getMethodPermissions() {
-        if (methodPermissions == null) {
-            methodPermissions = new ArrayList<MethodPermission>();
-        }
-        return this.methodPermissions;
-    }
-
-    /**
-     * Gets the value of the methodTransactions property.
-     * <p/>
-     * <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 methodTransactions property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getMethodTransactions().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link MethodTransaction }
-     */
-    public List<MethodTransaction> getMethodTransactions() {
-        if (methodTransactions == null) {
-            methodTransactions = new ArrayList<MethodTransaction>();
-        }
-        return this.methodTransactions;
-    }
-
-    /**
-     * Gets the value of the securityRoles property.
-     * <p/>
-     * <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 securityRoles property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getSecurityRoles().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link SecurityRole }
-     */
-    public List<SecurityRole> getSecurityRoles() {
-        if (securityRoles == null) {
-            securityRoles = new ArrayList<SecurityRole>();
-        }
-        return this.securityRoles;
-    }
-
-    /**
-     * Gets the value of the excludeList property.
-     * <p/>
-     * <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 excludeList property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getExcludeList().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link ExcludeList }
-     */
-    public List<ExcludeList> getExcludeList() {
-        if (excludeList == null) {
-            excludeList = new ArrayList<ExcludeList>();
-        }
-        return this.excludeList;
-    }
-
-    /**
-     * Gets the value of the messageDestinations property.
-     * <p/>
-     * <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 messageDestinations property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getMessageDestinations().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link MessageDestination }
-     */
-    public List<MessageDestination> getMessageDestinations() {
-        if (messageDestinations == null) {
-            messageDestinations = new ArrayList<MessageDestination>();
-        }
-        return this.messageDestinations;
-    }
-
-    /**
-     * Gets the value of the extensions property.
-     * <p/>
-     * <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 extensions property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getExtensions().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link Extension }
-     */
-    public List<Extension> getExtensions() {
-        if (extensions == null) {
-            extensions = new ArrayList<Extension>();
-        }
-        return this.extensions;
-    }
-
-    /**
-     * 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(final String value) {
-        this.id = value;
-    }
-
-    /**
-     * Gets the value of the type property.
-     *
-     * @return possible object is {@link QName }
-     */
-    public QName getType() {
-        return type;
-    }
-
-    /**
-     * Sets the value of the type property.
-     *
-     * @param value allowed object is {@link QName }
-     */
-    public void setType(final QName value) {
-        this.type = value;
-    }
-
-    /**
-     * Gets the value of the version property.
-     *
-     * @return possible object is {@link String }
-     */
-    public String getVersion() {
-        if (version == null) {
-            return "2.0";
-        } else {
-            return version;
-        }
-    }
-
-    /**
-     * Sets the value of the version property.
-     *
-     * @param value allowed object is {@link String }
-     */
-    public void setVersion(final String value) {
-        this.version = value;
-    }
-
-    /**
-     * Gets the value of the href property.
-     *
-     * @return possible object is {@link String }
-     */
-    public String getHref() {
-        return href;
-    }
-
-    /**
-     * Sets the value of the href property.
-     *
-     * @param value allowed object is {@link String }
-     */
-    public void setHref(final String value) {
-        this.href = value;
-    }
-
-    /**
-     * Gets the value of the idref property.
-     *
-     * @return possible object is {@link Object }
-     */
-    public Object getIdref() {
-        return idref;
-    }
-
-    /**
-     * Sets the value of the idref property.
-     *
-     * @param value allowed object is {@link Object }
-     */
-    public void setIdref(final Object value) {
-        this.idref = value;
-    }
-
-    /**
-     * Gets the value of the label property.
-     *
-     * @return possible object is {@link String }
-     */
-    public String getLabel() {
-        return label;
-    }
-
-    /**
-     * Sets the value of the label property.
-     *
-     * @param value allowed object is {@link String }
-     */
-    public void setLabel(final String value) {
-        this.label = value;
-    }
-
-    /**
-     * Gets the value of the uuid property.
-     *
-     * @return possible object is {@link String }
-     */
-    public String getUuid() {
-        return uuid;
-    }
-
-    /**
-     * Sets the value of the uuid property.
-     *
-     * @param value allowed object is {@link String }
-     */
-    public void setUuid(final String value) {
-        this.uuid = value;
-    }
-
-}
+/**
+ * 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.openejb.jee.was.v6.ejb;
+
+import org.apache.openejb.jee.was.v6.common.MessageDestination;
+import org.apache.openejb.jee.was.v6.common.SecurityRole;
+import org.apache.openejb.jee.was.v6.xmi.Extension;
+
+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.XmlID;
+import javax.xml.bind.annotation.XmlIDREF;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+import javax.xml.namespace.QName;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * The assembly-descriptor element contains application-assembly information.
+ * The application-assembly information consists of the following parts: the
+ * definition of security roles, the definition of method permissions, and the
+ * definition of transaction attributes for enterprise beans with
+ * container-managed transaction demarcation. All the parts are optional in the
+ * sense that they are omitted if the lists represented by them are empty.
+ * Providing an assembly-descriptor in the deployment descriptor is optional for
+ * the ejb-jar file producer.
+ * <p/>
+ * <p/>
+ * <p/>
+ * Java class for AssemblyDescriptor complex type.
+ * <p/>
+ * <p/>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
+ * <p/>
+ * <pre>
+ * &lt;complexType name="AssemblyDescriptor">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;choice>
+ *         &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *           &lt;element name="methodPermissions" type="{ejb.xmi}MethodPermission"/>
+ *         &lt;/choice>
+ *         &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *           &lt;element name="methodTransactions" type="{ejb.xmi}MethodTransaction"/>
+ *         &lt;/choice>
+ *         &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *           &lt;element name="securityRoles" type="{common.xmi}SecurityRole"/>
+ *         &lt;/choice>
+ *         &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *           &lt;element name="excludeList" type="{ejb.xmi}ExcludeList"/>
+ *         &lt;/choice>
+ *         &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *           &lt;element name="messageDestinations" type="{common.xmi}MessageDestination"/>
+ *         &lt;/choice>
+ *         &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *           &lt;element ref="{http://www.omg.org/XMI}Extension"/>
+ *         &lt;/choice>
+ *       &lt;/choice>
+ *       &lt;attGroup ref="{http://www.omg.org/XMI}ObjectAttribs"/>
+ *       &lt;attribute ref="{http://www.omg.org/XMI}id"/>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "AssemblyDescriptor", propOrder = {"methodPermissions",
+    "methodTransactions", "securityRoles", "excludeList",
+    "messageDestinations", "extensions"})
+public class AssemblyDescriptor {
+
+    protected List<MethodPermission> methodPermissions;
+    protected List<MethodTransaction> methodTransactions;
+    protected List<SecurityRole> securityRoles;
+    protected List<ExcludeList> excludeList;
+    protected List<MessageDestination> messageDestinations;
+    @XmlElement(name = "Extension", namespace = "http://www.omg.org/XMI")
+    protected List<Extension> extensions;
+    @XmlAttribute(namespace = "http://www.omg.org/XMI")
+    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+    @XmlID
+    protected String id;
+    @XmlAttribute(namespace = "http://www.omg.org/XMI")
+    protected QName type;
+    @XmlAttribute(namespace = "http://www.omg.org/XMI")
+    protected String version;
+    @XmlAttribute
+    protected String href;
+    @XmlAttribute(namespace = "http://www.omg.org/XMI")
+    @XmlIDREF
+    protected Object idref;
+    @XmlAttribute(namespace = "http://www.omg.org/XMI")
+    protected String label;
+    @XmlAttribute(namespace = "http://www.omg.org/XMI")
+    protected String uuid;
+
+    /**
+     * Gets the value of the methodPermissions property.
+     * <p/>
+     * <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 methodPermissions property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getMethodPermissions().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link MethodPermission }
+     */
+    public List<MethodPermission> getMethodPermissions() {
+        if (methodPermissions == null) {
+            methodPermissions = new ArrayList<MethodPermission>();
+        }
+        return this.methodPermissions;
+    }
+
+    /**
+     * Gets the value of the methodTransactions property.
+     * <p/>
+     * <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 methodTransactions property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getMethodTransactions().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link MethodTransaction }
+     */
+    public List<MethodTransaction> getMethodTransactions() {
+        if (methodTransactions == null) {
+            methodTransactions = new ArrayList<MethodTransaction>();
+        }
+        return this.methodTransactions;
+    }
+
+    /**
+     * Gets the value of the securityRoles property.
+     * <p/>
+     * <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 securityRoles property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getSecurityRoles().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link SecurityRole }
+     */
+    public List<SecurityRole> getSecurityRoles() {
+        if (securityRoles == null) {
+            securityRoles = new ArrayList<SecurityRole>();
+        }
+        return this.securityRoles;
+    }
+
+    /**
+     * Gets the value of the excludeList property.
+     * <p/>
+     * <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 excludeList property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getExcludeList().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link ExcludeList }
+     */
+    public List<ExcludeList> getExcludeList() {
+        if (excludeList == null) {
+            excludeList = new ArrayList<ExcludeList>();
+        }
+        return this.excludeList;
+    }
+
+    /**
+     * Gets the value of the messageDestinations property.
+     * <p/>
+     * <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 messageDestinations property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getMessageDestinations().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link MessageDestination }
+     */
+    public List<MessageDestination> getMessageDestinations() {
+        if (messageDestinations == null) {
+            messageDestinations = new ArrayList<MessageDestination>();
+        }
+        return this.messageDestinations;
+    }
+
+    /**
+     * Gets the value of the extensions property.
+     * <p/>
+     * <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 extensions property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getExtensions().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Extension }
+     */
+    public List<Extension> getExtensions() {
+        if (extensions == null) {
+            extensions = new ArrayList<Extension>();
+        }
+        return this.extensions;
+    }
+
+    /**
+     * 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(final String value) {
+        this.id = value;
+    }
+
+    /**
+     * Gets the value of the type property.
+     *
+     * @return possible object is {@link QName }
+     */
+    public QName getType() {
+        return type;
+    }
+
+    /**
+     * Sets the value of the type property.
+     *
+     * @param value allowed object is {@link QName }
+     */
+    public void setType(final QName value) {
+        this.type = value;
+    }
+
+    /**
+     * Gets the value of the version property.
+     *
+     * @return possible object is {@link String }
+     */
+    public String getVersion() {
+        if (version == null) {
+            return "2.0";
+        } else {
+            return version;
+        }
+    }
+
+    /**
+     * Sets the value of the version property.
+     *
+     * @param value allowed object is {@link String }
+     */
+    public void setVersion(final String value) {
+        this.version = value;
+    }
+
+    /**
+     * Gets the value of the href property.
+     *
+     * @return possible object is {@link String }
+     */
+    public String getHref() {
+        return href;
+    }
+
+    /**
+     * Sets the value of the href property.
+     *
+     * @param value allowed object is {@link String }
+     */
+    public void setHref(final String value) {
+        this.href = value;
+    }
+
+    /**
+     * Gets the value of the idref property.
+     *
+     * @return possible object is {@link Object }
+     */
+    public Object getIdref() {
+        return idref;
+    }
+
+    /**
+     * Sets the value of the idref property.
+     *
+     * @param value allowed object is {@link Object }
+     */
+    public void setIdref(final Object value) {
+        this.idref = value;
+    }
+
+    /**
+     * Gets the value of the label property.
+     *
+     * @return possible object is {@link String }
+     */
+    public String getLabel() {
+        return label;
+    }
+
+    /**
+     * Sets the value of the label property.
+     *
+     * @param value allowed object is {@link String }
+     */
+    public void setLabel(final String value) {
+        this.label = value;
+    }
+
+    /**
+     * Gets the value of the uuid property.
+     *
+     * @return possible object is {@link String }
+     */
+    public String getUuid() {
+        return uuid;
+    }
+
+    /**
+     * Sets the value of the uuid property.
+     *
+     * @param value allowed object is {@link String }
+     */
+    public void setUuid(final String value) {
+        this.uuid = value;
+    }
+
+}

http://git-wip-us.apache.org/repos/asf/tomee/blob/52567075/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/CMPAttribute.java
----------------------------------------------------------------------
diff --git a/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/CMPAttribute.java b/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/CMPAttribute.java
index 21f9197..f108db5 100644
--- a/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/CMPAttribute.java
+++ b/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/CMPAttribute.java
@@ -1,108 +1,108 @@
-/**
- * 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.openejb.jee.was.v6.ejb;
-
-import org.apache.openejb.jee.was.v6.common.Description;
-import org.apache.openejb.jee.was.v6.ecore.EAttribute;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAttribute;
-import javax.xml.bind.annotation.XmlType;
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * Describes a container-managed field. The field element includes an optional
- * description of the field, and the name of the field.
- * <p/>
- * <p/>
- * <p/>
- * Java class for CMPAttribute complex type.
- * <p/>
- * <p/>
- * The following schema fragment specifies the expected content contained within
- * this class.
- * <p/>
- * <pre>
- * &lt;complexType name="CMPAttribute">
- *   &lt;complexContent>
- *     &lt;extension base="{http://www.eclipse.org/emf/2002/Ecore}EAttribute">
- *       &lt;choice maxOccurs="unbounded" minOccurs="0">
- *         &lt;element name="descriptions" type="{common.xmi}Description"/>
- *       &lt;/choice>
- *       &lt;attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     &lt;/extension>
- *   &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "CMPAttribute", propOrder = {"descriptions"})
-public class CMPAttribute extends EAttribute {
-
-    protected List<Description> descriptions;
-    @XmlAttribute
-    protected String description;
-
-    /**
-     * Gets the value of the descriptions property.
-     * <p/>
-     * <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 descriptions property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getDescriptions().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link Description }
-     */
-    public List<Description> getDescriptions() {
-        if (descriptions == null) {
-            descriptions = new ArrayList<Description>();
-        }
-        return this.descriptions;
-    }
-
-    /**
-     * Gets the value of the description property.
-     *
-     * @return possible object is {@link String }
-     */
-    public String getDescription() {
-        return description;
-    }
-
-    /**
-     * Sets the value of the description property.
-     *
-     * @param value allowed object is {@link String }
-     */
-    public void setDescription(final String value) {
-        this.description = value;
-    }
-
-}
+/**
+ * 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.openejb.jee.was.v6.ejb;
+
+import org.apache.openejb.jee.was.v6.common.Description;
+import org.apache.openejb.jee.was.v6.ecore.EAttribute;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlType;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Describes a container-managed field. The field element includes an optional
+ * description of the field, and the name of the field.
+ * <p/>
+ * <p/>
+ * <p/>
+ * Java class for CMPAttribute complex type.
+ * <p/>
+ * <p/>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
+ * <p/>
+ * <pre>
+ * &lt;complexType name="CMPAttribute">
+ *   &lt;complexContent>
+ *     &lt;extension base="{http://www.eclipse.org/emf/2002/Ecore}EAttribute">
+ *       &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *         &lt;element name="descriptions" type="{common.xmi}Description"/>
+ *       &lt;/choice>
+ *       &lt;attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     &lt;/extension>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "CMPAttribute", propOrder = {"descriptions"})
+public class CMPAttribute extends EAttribute {
+
+    protected List<Description> descriptions;
+    @XmlAttribute
+    protected String description;
+
+    /**
+     * Gets the value of the descriptions property.
+     * <p/>
+     * <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 descriptions property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getDescriptions().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Description }
+     */
+    public List<Description> getDescriptions() {
+        if (descriptions == null) {
+            descriptions = new ArrayList<Description>();
+        }
+        return this.descriptions;
+    }
+
+    /**
+     * Gets the value of the description property.
+     *
+     * @return possible object is {@link String }
+     */
+    public String getDescription() {
+        return description;
+    }
+
+    /**
+     * Sets the value of the description property.
+     *
+     * @param value allowed object is {@link String }
+     */
+    public void setDescription(final String value) {
+        this.description = value;
+    }
+
+}

http://git-wip-us.apache.org/repos/asf/tomee/blob/52567075/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/CMRField.java
----------------------------------------------------------------------
diff --git a/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/CMRField.java b/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/CMRField.java
index daed25d..545a5e0 100644
--- a/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/CMRField.java
+++ b/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/CMRField.java
@@ -1,115 +1,115 @@
-/**
- * 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.openejb.jee.was.v6.ejb;
-
-import org.apache.openejb.jee.was.v6.java.JavaClass;
-
-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.XmlType;
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * @since J2EE1.3 Describes the bean provider's view of a relationship. It
- * consists of an optional description, and the name and the class type
- * of a field in the source of a role of a relationship. The
- * CMRField::name element corresponds to the name used for the get and
- * set accessor methods for the relationship. The CMRField::type element
- * is used only for collection-valued CMRFields. It specifies the type of
- * the collection that is used (a java class name).
- * <p/>
- * <p/>
- * <p/>
- * <p/>
- * Java class for CMRField complex type.
- * <p/>
- * <p/>
- * The following schema fragment specifies the expected content contained
- * within this class.
- * <p/>
- * <pre>
- * &lt;complexType name="CMRField">
- *   &lt;complexContent>
- *     &lt;extension base="{ejb.xmi}CMPAttribute">
- *       &lt;choice maxOccurs="unbounded" minOccurs="0">
- *         &lt;element name="collectionType" type="{java.xmi}JavaClass"/>
- *       &lt;/choice>
- *       &lt;attribute name="collectionType" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     &lt;/extension>
- *   &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "CMRField", propOrder = {"collectionTypes"})
-public class CMRField extends CMPAttribute {
-
-    @XmlElement(name = "collectionType")
-    protected List<JavaClass> collectionTypes;
-    @XmlAttribute
-    protected String collectionType;
-
-    /**
-     * Gets the value of the collectionTypes property.
-     * <p/>
-     * <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 collectionTypes property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getCollectionTypes().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link JavaClass }
-     */
-    public List<JavaClass> getCollectionTypes() {
-        if (collectionTypes == null) {
-            collectionTypes = new ArrayList<JavaClass>();
-        }
-        return this.collectionTypes;
-    }
-
-    /**
-     * Gets the value of the collectionType property.
-     *
-     * @return possible object is {@link String }
-     */
-    public String getCollectionType() {
-        return collectionType;
-    }
-
-    /**
-     * Sets the value of the collectionType property.
-     *
-     * @param value allowed object is {@link String }
-     */
-    public void setCollectionType(final String value) {
-        this.collectionType = value;
-    }
-
-}
+/**
+ * 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.openejb.jee.was.v6.ejb;
+
+import org.apache.openejb.jee.was.v6.java.JavaClass;
+
+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.XmlType;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * @since J2EE1.3 Describes the bean provider's view of a relationship. It
+ * consists of an optional description, and the name and the class type
+ * of a field in the source of a role of a relationship. The
+ * CMRField::name element corresponds to the name used for the get and
+ * set accessor methods for the relationship. The CMRField::type element
+ * is used only for collection-valued CMRFields. It specifies the type of
+ * the collection that is used (a java class name).
+ * <p/>
+ * <p/>
+ * <p/>
+ * <p/>
+ * Java class for CMRField complex type.
+ * <p/>
+ * <p/>
+ * The following schema fragment specifies the expected content contained
+ * within this class.
+ * <p/>
+ * <pre>
+ * &lt;complexType name="CMRField">
+ *   &lt;complexContent>
+ *     &lt;extension base="{ejb.xmi}CMPAttribute">
+ *       &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *         &lt;element name="collectionType" type="{java.xmi}JavaClass"/>
+ *       &lt;/choice>
+ *       &lt;attribute name="collectionType" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     &lt;/extension>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "CMRField", propOrder = {"collectionTypes"})
+public class CMRField extends CMPAttribute {
+
+    @XmlElement(name = "collectionType")
+    protected List<JavaClass> collectionTypes;
+    @XmlAttribute
+    protected String collectionType;
+
+    /**
+     * Gets the value of the collectionTypes property.
+     * <p/>
+     * <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 collectionTypes property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getCollectionTypes().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link JavaClass }
+     */
+    public List<JavaClass> getCollectionTypes() {
+        if (collectionTypes == null) {
+            collectionTypes = new ArrayList<JavaClass>();
+        }
+        return this.collectionTypes;
+    }
+
+    /**
+     * Gets the value of the collectionType property.
+     *
+     * @return possible object is {@link String }
+     */
+    public String getCollectionType() {
+        return collectionType;
+    }
+
+    /**
+     * Sets the value of the collectionType property.
+     *
+     * @param value allowed object is {@link String }
+     */
+    public void setCollectionType(final String value) {
+        this.collectionType = value;
+    }
+
+}

http://git-wip-us.apache.org/repos/asf/tomee/blob/52567075/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/ContainerManagedEntity.java
----------------------------------------------------------------------
diff --git a/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/ContainerManagedEntity.java b/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/ContainerManagedEntity.java
index 3193d6d..e4bce21 100644
--- a/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/ContainerManagedEntity.java
+++ b/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/ContainerManagedEntity.java
@@ -1,318 +1,318 @@
-/**
- * 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.openejb.jee.was.v6.ejb;
-
-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.XmlType;
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * <p/>
- * Java class for ContainerManagedEntity complex type.
- * <p/>
- * <p/>
- * The following schema fragment specifies the expected content contained within
- * this class.
- * <p/>
- * <pre>
- * &lt;complexType name="ContainerManagedEntity">
- *   &lt;complexContent>
- *     &lt;extension base="{ejb.xmi}Entity">
- *       &lt;choice>
- *         &lt;choice maxOccurs="unbounded" minOccurs="0">
- *           &lt;element name="persistentAttributes" type="{ejb.xmi}CMPAttribute"/>
- *         &lt;/choice>
- *         &lt;choice maxOccurs="unbounded" minOccurs="0">
- *           &lt;element name="keyAttributes" type="{ejb.xmi}CMPAttribute"/>
- *         &lt;/choice>
- *         &lt;choice maxOccurs="unbounded" minOccurs="0">
- *           &lt;element name="queries" type="{ejb.xmi}Query"/>
- *         &lt;/choice>
- *         &lt;choice maxOccurs="unbounded" minOccurs="0">
- *           &lt;element name="CMPAttribute" type="{ejb.xmi}CMPAttribute"/>
- *         &lt;/choice>
- *         &lt;choice maxOccurs="unbounded" minOccurs="0">
- *           &lt;element name="primKeyField" type="{ejb.xmi}CMPAttribute"/>
- *         &lt;/choice>
- *       &lt;/choice>
- *       &lt;attribute name="CMPAttribute" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       &lt;attribute name="abstractSchemaName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       &lt;attribute name="keyAttributes" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       &lt;attribute name="primKeyField" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       &lt;attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     &lt;/extension>
- *   &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "ContainerManagedEntity", propOrder = {"persistentAttributes",
-    "keyAttributes", "queries", "cmpAttributes", "primKeyFields"})
-public class ContainerManagedEntity extends Entity {
-
-    protected List<CMPAttribute> persistentAttributes;
-    protected List<CMPAttribute> keyAttributes;
-    protected List<Query> queries;
-    @XmlElement(name = "CMPAttribute")
-    protected List<CMPAttribute> cmpAttributes;
-    @XmlElement(name = "primKeyField")
-    protected List<CMPAttribute> primKeyFields;
-    @XmlAttribute(name = "CMPAttribute")
-    protected String cmpAttribute;
-    @XmlAttribute
-    protected String abstractSchemaName;
-    @XmlAttribute(name = "keyAttributes")
-    protected String keyAttributesString;
-    @XmlAttribute
-    protected String primKeyField;
-    @XmlAttribute(name = "version")
-    protected String entityBeanVersion;
-
-    /**
-     * Gets the value of the persistentAttributes property.
-     * <p/>
-     * <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 persistentAttributes property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getPersistentAttributes().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link CMPAttribute }
-     */
-    public List<CMPAttribute> getPersistentAttributes() {
-        if (persistentAttributes == null) {
-            persistentAttributes = new ArrayList<CMPAttribute>();
-        }
-        return this.persistentAttributes;
-    }
-
-    /**
-     * Gets the value of the keyAttributes property.
-     * <p/>
-     * <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 keyAttributes property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getKeyAttributes().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link CMPAttribute }
-     */
-    public List<CMPAttribute> getKeyAttributes() {
-        if (keyAttributes == null) {
-            keyAttributes = new ArrayList<CMPAttribute>();
-        }
-        return this.keyAttributes;
-    }
-
-    /**
-     * Gets the value of the queries property.
-     * <p/>
-     * <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 queries property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getQueries().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list {@link Query }
-     */
-    public List<Query> getQueries() {
-        if (queries == null) {
-            queries = new ArrayList<Query>();
-        }
-        return this.queries;
-    }
-
-    /**
-     * Gets the value of the cmpAttributes property.
-     * <p/>
-     * <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 cmpAttributes property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getCMPAttributes().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link CMPAttribute }
-     */
-    public List<CMPAttribute> getCMPAttributes() {
-        if (cmpAttributes == null) {
-            cmpAttributes = new ArrayList<CMPAttribute>();
-        }
-        return this.cmpAttributes;
-    }
-
-    /**
-     * Gets the value of the primKeyFields property.
-     * <p/>
-     * <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 primKeyFields property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getPrimKeyFields().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link CMPAttribute }
-     */
-    public List<CMPAttribute> getPrimKeyFields() {
-        if (primKeyFields == null) {
-            primKeyFields = new ArrayList<CMPAttribute>();
-        }
-        return this.primKeyFields;
-    }
-
-    /**
-     * Gets the value of the cmpAttribute property.
-     *
-     * @return possible object is {@link String }
-     */
-    public String getCMPAttribute() {
-        return cmpAttribute;
-    }
-
-    /**
-     * Sets the value of the cmpAttribute property.
-     *
-     * @param value allowed object is {@link String }
-     */
-    public void setCMPAttribute(final String value) {
-        this.cmpAttribute = value;
-    }
-
-    /**
-     * Gets the value of the abstractSchemaName property.
-     *
-     * @return possible object is {@link String }
-     */
-    public String getAbstractSchemaName() {
-        return abstractSchemaName;
-    }
-
-    /**
-     * Sets the value of the abstractSchemaName property.
-     *
-     * @param value allowed object is {@link String }
-     */
-    public void setAbstractSchemaName(final String value) {
-        this.abstractSchemaName = value;
-    }
-
-    /**
-     * Gets the value of the keyAttributesString property.
-     *
-     * @return possible object is {@link String }
-     */
-    public String getKeyAttributesString() {
-        return keyAttributesString;
-    }
-
-    /**
-     * Sets the value of the keyAttributesString property.
-     *
-     * @param value allowed object is {@link String }
-     */
-    public void setKeyAttributesString(final String value) {
-        this.keyAttributesString = value;
-    }
-
-    /**
-     * Gets the value of the primKeyField property.
-     *
-     * @return possible object is {@link String }
-     */
-    public String getPrimKeyField() {
-        return primKeyField;
-    }
-
-    /**
-     * Sets the value of the primKeyField property.
-     *
-     * @param value allowed object is {@link String }
-     */
-    public void setPrimKeyField(final String value) {
-        this.primKeyField = value;
-    }
-
-    /**
-     * Gets the value of the entityBeanVersion property.
-     *
-     * @return possible object is {@link String }
-     */
-    public String getEntityBeanVersion() {
-        return entityBeanVersion;
-    }
-
-    /**
-     * Sets the value of the entityBeanVersion property.
-     *
-     * @param value allowed object is {@link String }
-     */
-    public void setEntityBeanVersion(final String value) {
-        this.entityBeanVersion = value;
-    }
-
-}
+/**
+ * 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.openejb.jee.was.v6.ejb;
+
+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.XmlType;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * <p/>
+ * Java class for ContainerManagedEntity complex type.
+ * <p/>
+ * <p/>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
+ * <p/>
+ * <pre>
+ * &lt;complexType name="ContainerManagedEntity">
+ *   &lt;complexContent>
+ *     &lt;extension base="{ejb.xmi}Entity">
+ *       &lt;choice>
+ *         &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *           &lt;element name="persistentAttributes" type="{ejb.xmi}CMPAttribute"/>
+ *         &lt;/choice>
+ *         &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *           &lt;element name="keyAttributes" type="{ejb.xmi}CMPAttribute"/>
+ *         &lt;/choice>
+ *         &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *           &lt;element name="queries" type="{ejb.xmi}Query"/>
+ *         &lt;/choice>
+ *         &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *           &lt;element name="CMPAttribute" type="{ejb.xmi}CMPAttribute"/>
+ *         &lt;/choice>
+ *         &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *           &lt;element name="primKeyField" type="{ejb.xmi}CMPAttribute"/>
+ *         &lt;/choice>
+ *       &lt;/choice>
+ *       &lt;attribute name="CMPAttribute" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       &lt;attribute name="abstractSchemaName" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       &lt;attribute name="keyAttributes" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       &lt;attribute name="primKeyField" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       &lt;attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     &lt;/extension>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ContainerManagedEntity", propOrder = {"persistentAttributes",
+    "keyAttributes", "queries", "cmpAttributes", "primKeyFields"})
+public class ContainerManagedEntity extends Entity {
+
+    protected List<CMPAttribute> persistentAttributes;
+    protected List<CMPAttribute> keyAttributes;
+    protected List<Query> queries;
+    @XmlElement(name = "CMPAttribute")
+    protected List<CMPAttribute> cmpAttributes;
+    @XmlElement(name = "primKeyField")
+    protected List<CMPAttribute> primKeyFields;
+    @XmlAttribute(name = "CMPAttribute")
+    protected String cmpAttribute;
+    @XmlAttribute
+    protected String abstractSchemaName;
+    @XmlAttribute(name = "keyAttributes")
+    protected String keyAttributesString;
+    @XmlAttribute
+    protected String primKeyField;
+    @XmlAttribute(name = "version")
+    protected String entityBeanVersion;
+
+    /**
+     * Gets the value of the persistentAttributes property.
+     * <p/>
+     * <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 persistentAttributes property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getPersistentAttributes().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link CMPAttribute }
+     */
+    public List<CMPAttribute> getPersistentAttributes() {
+        if (persistentAttributes == null) {
+            persistentAttributes = new ArrayList<CMPAttribute>();
+        }
+        return this.persistentAttributes;
+    }
+
+    /**
+     * Gets the value of the keyAttributes property.
+     * <p/>
+     * <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 keyAttributes property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getKeyAttributes().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link CMPAttribute }
+     */
+    public List<CMPAttribute> getKeyAttributes() {
+        if (keyAttributes == null) {
+            keyAttributes = new ArrayList<CMPAttribute>();
+        }
+        return this.keyAttributes;
+    }
+
+    /**
+     * Gets the value of the queries property.
+     * <p/>
+     * <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 queries property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getQueries().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list {@link Query }
+     */
+    public List<Query> getQueries() {
+        if (queries == null) {
+            queries = new ArrayList<Query>();
+        }
+        return this.queries;
+    }
+
+    /**
+     * Gets the value of the cmpAttributes property.
+     * <p/>
+     * <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 cmpAttributes property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getCMPAttributes().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link CMPAttribute }
+     */
+    public List<CMPAttribute> getCMPAttributes() {
+        if (cmpAttributes == null) {
+            cmpAttributes = new ArrayList<CMPAttribute>();
+        }
+        return this.cmpAttributes;
+    }
+
+    /**
+     * Gets the value of the primKeyFields property.
+     * <p/>
+     * <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 primKeyFields property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getPrimKeyFields().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link CMPAttribute }
+     */
+    public List<CMPAttribute> getPrimKeyFields() {
+        if (primKeyFields == null) {
+            primKeyFields = new ArrayList<CMPAttribute>();
+        }
+        return this.primKeyFields;
+    }
+
+    /**
+     * Gets the value of the cmpAttribute property.
+     *
+     * @return possible object is {@link String }
+     */
+    public String getCMPAttribute() {
+        return cmpAttribute;
+    }
+
+    /**
+     * Sets the value of the cmpAttribute property.
+     *
+     * @param value allowed object is {@link String }
+     */
+    public void setCMPAttribute(final String value) {
+        this.cmpAttribute = value;
+    }
+
+    /**
+     * Gets the value of the abstractSchemaName property.
+     *
+     * @return possible object is {@link String }
+     */
+    public String getAbstractSchemaName() {
+        return abstractSchemaName;
+    }
+
+    /**
+     * Sets the value of the abstractSchemaName property.
+     *
+     * @param value allowed object is {@link String }
+     */
+    public void setAbstractSchemaName(final String value) {
+        this.abstractSchemaName = value;
+    }
+
+    /**
+     * Gets the value of the keyAttributesString property.
+     *
+     * @return possible object is {@link String }
+     */
+    public String getKeyAttributesString() {
+        return keyAttributesString;
+    }
+
+    /**
+     * Sets the value of the keyAttributesString property.
+     *
+     * @param value allowed object is {@link String }
+     */
+    public void setKeyAttributesString(final String value) {
+        this.keyAttributesString = value;
+    }
+
+    /**
+     * Gets the value of the primKeyField property.
+     *
+     * @return possible object is {@link String }
+     */
+    public String getPrimKeyField() {
+        return primKeyField;
+    }
+
+    /**
+     * Sets the value of the primKeyField property.
+     *
+     * @param value allowed object is {@link String }
+     */
+    public void setPrimKeyField(final String value) {
+        this.primKeyField = value;
+    }
+
+    /**
+     * Gets the value of the entityBeanVersion property.
+     *
+     * @return possible object is {@link String }
+     */
+    public String getEntityBeanVersion() {
+        return entityBeanVersion;
+    }
+
+    /**
+     * Sets the value of the entityBeanVersion property.
+     *
+     * @param value allowed object is {@link String }
+     */
+    public void setEntityBeanVersion(final String value) {
+        this.entityBeanVersion = value;
+    }
+
+}

http://git-wip-us.apache.org/repos/asf/tomee/blob/52567075/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/DestinationEnum.java
----------------------------------------------------------------------
diff --git a/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/DestinationEnum.java b/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/DestinationEnum.java
index 711067a..3d21f5f 100644
--- a/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/DestinationEnum.java
+++ b/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/DestinationEnum.java
@@ -1,65 +1,65 @@
-/**
- * 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.openejb.jee.was.v6.ejb;
-
-import javax.xml.bind.annotation.XmlEnum;
-import javax.xml.bind.annotation.XmlEnumValue;
-
-/**
- * <p/>
- * Java class for DestinationType.
- * <p/>
- * <p/>
- * The following schema fragment specifies the expected content contained within
- * this class.
- * <p/>
- * <p/>
- * <pre>
- * &lt;simpleType name="DestinationType">
- *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}NCName">
- *     &lt;enumeration value="Queue"/>
- *     &lt;enumeration value="Topic"/>
- *   &lt;/restriction>
- * &lt;/simpleType>
- * </pre>
- */
-@XmlEnum
-public enum DestinationEnum {
-
-    @XmlEnumValue("Queue")
-    QUEUE("Queue"), @XmlEnumValue("Topic")
-    TOPIC("Topic");
-    private final String value;
-
-    DestinationEnum(final String v) {
-        value = v;
-    }
-
-    public String value() {
-        return value;
-    }
-
-    public static DestinationEnum fromValue(final String v) {
-        for (final DestinationEnum c : DestinationEnum.values()) {
-            if (c.value.equals(v)) {
-                return c;
-            }
-        }
-        throw new IllegalArgumentException(v.toString());
-    }
-
-}
+/**
+ * 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.openejb.jee.was.v6.ejb;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlEnumValue;
+
+/**
+ * <p/>
+ * Java class for DestinationType.
+ * <p/>
+ * <p/>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
+ * <p/>
+ * <p/>
+ * <pre>
+ * &lt;simpleType name="DestinationType">
+ *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}NCName">
+ *     &lt;enumeration value="Queue"/>
+ *     &lt;enumeration value="Topic"/>
+ *   &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ */
+@XmlEnum
+public enum DestinationEnum {
+
+    @XmlEnumValue("Queue")
+    QUEUE("Queue"), @XmlEnumValue("Topic")
+    TOPIC("Topic");
+    private final String value;
+
+    DestinationEnum(final String v) {
+        value = v;
+    }
+
+    public String value() {
+        return value;
+    }
+
+    public static DestinationEnum fromValue(final String v) {
+        for (final DestinationEnum c : DestinationEnum.values()) {
+            if (c.value.equals(v)) {
+                return c;
+            }
+        }
+        throw new IllegalArgumentException(v.toString());
+    }
+
+}

http://git-wip-us.apache.org/repos/asf/tomee/blob/52567075/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/EJBJar.java
----------------------------------------------------------------------
diff --git a/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/EJBJar.java b/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/EJBJar.java
index 90645b8..d5e6ceb 100644
--- a/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/EJBJar.java
+++ b/container/openejb-jee/src/main/java/org/apache/openejb/jee/was/v6/ejb/EJBJar.java
@@ -1,201 +1,201 @@
-/**
- * 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.openejb.jee.was.v6.ejb;
-
-import org.apache.openejb.jee.was.v6.common.CompatibilityDescriptionGroup;
-
-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.XmlType;
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * The root element of the EJB deployment descriptor. It contains an optional
- * description of the ejb-jar file; optional display name; optional small icon
- * file name; optional large icon file name; mandatory structural information
- * about all included enterprise beans; a descriptor for container managed
- * relationships, if any; an optional application-assembly descriptor; and an
- * optional name of an ejb-client-jar file for the ejb-jar.
- * <p/>
- * <p/>
- * <p/>
- * Java class for EJBJar complex type.
- * <p/>
- * <p/>
- * The following schema fragment specifies the expected content contained within
- * this class.
- * <p/>
- * <pre>
- * &lt;complexType name="EJBJar">
- *   &lt;complexContent>
- *     &lt;extension base="{common.xmi}CompatibilityDescriptionGroup">
- *       &lt;choice>
- *         &lt;choice maxOccurs="unbounded" minOccurs="0">
- *           &lt;element name="assemblyDescriptor" type="{ejb.xmi}AssemblyDescriptor"/>
- *         &lt;/choice>
- *         &lt;choice maxOccurs="unbounded" minOccurs="0">
- *           &lt;element name="enterpriseBeans" type="{ejb.xmi}EnterpriseBean"/>
- *         &lt;/choice>
- *         &lt;choice maxOccurs="unbounded" minOccurs="0">
- *           &lt;element name="relationshipList" type="{ejb.xmi}Relationships"/>
- *         &lt;/choice>
- *       &lt;/choice>
- *       &lt;attribute name="ejbClientJar" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       &lt;attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     &lt;/extension>
- *   &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "EJBJar", propOrder = {"assemblyDescriptors",
-    "enterpriseBeans", "relationshipList"})
-public class EJBJar extends CompatibilityDescriptionGroup {
-
-    @XmlElement(name = "assemblyDescriptor")
-    protected List<AssemblyDescriptor> assemblyDescriptors;
-    protected List<EnterpriseBean> enterpriseBeans;
-    protected List<Relationships> relationshipList;
-    @XmlAttribute
-    protected String ejbClientJar;
-    @XmlAttribute(name = "version")
-    protected String ejbSpecsVersion;
-
-    /**
-     * Gets the value of the assemblyDescriptors property.
-     * <p/>
-     * <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 assemblyDescriptors property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getAssemblyDescriptors().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link AssemblyDescriptor }
-     */
-    public List<AssemblyDescriptor> getAssemblyDescriptors() {
-        if (assemblyDescriptors == null) {
-            assemblyDescriptors = new ArrayList<AssemblyDescriptor>();
-        }
-        return this.assemblyDescriptors;
-    }
-
-    /**
-     * Gets the value of the enterpriseBeans property.
-     * <p/>
-     * <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 enterpriseBeans property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getEnterpriseBeans().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link EnterpriseBean }
-     */
-    public List<EnterpriseBean> getEnterpriseBeans() {
-        if (enterpriseBeans == null) {
-            enterpriseBeans = new ArrayList<EnterpriseBean>();
-        }
-        return this.enterpriseBeans;
-    }
-
-    /**
-     * Gets the value of the relationshipList property.
-     * <p/>
-     * <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 relationshipList property.
-     * <p/>
-     * <p/>
-     * For example, to add a new item, do as follows:
-     * <p/>
-     * <pre>
-     * getRelationshipList().add(newItem);
-     * </pre>
-     * <p/>
-     * <p/>
-     * <p/>
-     * Objects of the following type(s) are allowed in the list
-     * {@link Relationships }
-     */
-    public List<Relationships> getRelationshipList() {
-        if (relationshipList == null) {
-            relationshipList = new ArrayList<Relationships>();
-        }
-        return this.relationshipList;
-    }
-
-    /**
-     * Gets the value of the ejbClientJar property.
-     *
-     * @return possible object is {@link String }
-     */
-    public String getEjbClientJar() {
-        return ejbClientJar;
-    }
-
-    /**
-     * Sets the value of the ejbClientJar property.
-     *
-     * @param value allowed object is {@link String }
-     */
-    public void setEjbClientJar(final String value) {
-        this.ejbClientJar = value;
-    }
-
-    /**
-     * Gets the value of the ejbSpecsVersion property.
-     *
-     * @return possible object is {@link String }
-     */
-    public String getEjbSpecsVersion() {
-        return ejbSpecsVersion;
-    }
-
-    /**
-     * Sets the value of the ejbSpecsVersion property.
-     *
-     * @param value allowed object is {@link String }
-     */
-    public void setEjbSpecsVersion(final String value) {
-        this.ejbSpecsVersion = value;
-    }
-
-}
+/**
+ * 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.openejb.jee.was.v6.ejb;
+
+import org.apache.openejb.jee.was.v6.common.CompatibilityDescriptionGroup;
+
+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.XmlType;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * The root element of the EJB deployment descriptor. It contains an optional
+ * description of the ejb-jar file; optional display name; optional small icon
+ * file name; optional large icon file name; mandatory structural information
+ * about all included enterprise beans; a descriptor for container managed
+ * relationships, if any; an optional application-assembly descriptor; and an
+ * optional name of an ejb-client-jar file for the ejb-jar.
+ * <p/>
+ * <p/>
+ * <p/>
+ * Java class for EJBJar complex type.
+ * <p/>
+ * <p/>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
+ * <p/>
+ * <pre>
+ * &lt;complexType name="EJBJar">
+ *   &lt;complexContent>
+ *     &lt;extension base="{common.xmi}CompatibilityDescriptionGroup">
+ *       &lt;choice>
+ *         &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *           &lt;element name="assemblyDescriptor" type="{ejb.xmi}AssemblyDescriptor"/>
+ *         &lt;/choice>
+ *         &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *           &lt;element name="enterpriseBeans" type="{ejb.xmi}EnterpriseBean"/>
+ *         &lt;/choice>
+ *         &lt;choice maxOccurs="unbounded" minOccurs="0">
+ *           &lt;element name="relationshipList" type="{ejb.xmi}Relationships"/>
+ *         &lt;/choice>
+ *       &lt;/choice>
+ *       &lt;attribute name="ejbClientJar" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       &lt;attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *     &lt;/extension>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "EJBJar", propOrder = {"assemblyDescriptors",
+    "enterpriseBeans", "relationshipList"})
+public class EJBJar extends CompatibilityDescriptionGroup {
+
+    @XmlElement(name = "assemblyDescriptor")
+    protected List<AssemblyDescriptor> assemblyDescriptors;
+    protected List<EnterpriseBean> enterpriseBeans;
+    protected List<Relationships> relationshipList;
+    @XmlAttribute
+    protected String ejbClientJar;
+    @XmlAttribute(name = "version")
+    protected String ejbSpecsVersion;
+
+    /**
+     * Gets the value of the assemblyDescriptors property.
+     * <p/>
+     * <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 assemblyDescriptors property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getAssemblyDescriptors().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link AssemblyDescriptor }
+     */
+    public List<AssemblyDescriptor> getAssemblyDescriptors() {
+        if (assemblyDescriptors == null) {
+            assemblyDescriptors = new ArrayList<AssemblyDescriptor>();
+        }
+        return this.assemblyDescriptors;
+    }
+
+    /**
+     * Gets the value of the enterpriseBeans property.
+     * <p/>
+     * <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 enterpriseBeans property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getEnterpriseBeans().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link EnterpriseBean }
+     */
+    public List<EnterpriseBean> getEnterpriseBeans() {
+        if (enterpriseBeans == null) {
+            enterpriseBeans = new ArrayList<EnterpriseBean>();
+        }
+        return this.enterpriseBeans;
+    }
+
+    /**
+     * Gets the value of the relationshipList property.
+     * <p/>
+     * <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 relationshipList property.
+     * <p/>
+     * <p/>
+     * For example, to add a new item, do as follows:
+     * <p/>
+     * <pre>
+     * getRelationshipList().add(newItem);
+     * </pre>
+     * <p/>
+     * <p/>
+     * <p/>
+     * Objects of the following type(s) are allowed in the list
+     * {@link Relationships }
+     */
+    public List<Relationships> getRelationshipList() {
+        if (relationshipList == null) {
+            relationshipList = new ArrayList<Relationships>();
+        }
+        return this.relationshipList;
+    }
+
+    /**
+     * Gets the value of the ejbClientJar property.
+     *
+     * @return possible object is {@link String }
+     */
+    public String getEjbClientJar() {
+        return ejbClientJar;
+    }
+
+    /**
+     * Sets the value of the ejbClientJar property.
+     *
+     * @param value allowed object is {@link String }
+     */
+    public void setEjbClientJar(final String value) {
+        this.ejbClientJar = value;
+    }
+
+    /**
+     * Gets the value of the ejbSpecsVersion property.
+     *
+     * @return possible object is {@link String }
+     */
+    public String getEjbSpecsVersion() {
+        return ejbSpecsVersion;
+    }
+
+    /**
+     * Sets the value of the ejbSpecsVersion property.
+     *
+     * @param value allowed object is {@link String }
+     */
+    public void setEjbSpecsVersion(final String value) {
+        this.ejbSpecsVersion = value;
+    }
+
+}