plugins/org.apache.geronimo.jee.v21.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/EjbRelationshipRole.java [94:507]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ejb-relationship-roleType", propOrder = {
    "ejbRelationshipRoleName",
    "relationshipRoleSource",
    "cmrField",
    "foreignKeyColumnOnSource",
    "roleMapping"
})
public class EjbRelationshipRole
    implements Serializable
{

    private final static long serialVersionUID = 12343L;
    @XmlElement(name = "ejb-relationship-role-name")
    protected String ejbRelationshipRoleName;
    @XmlElement(name = "relationship-role-source", required = true)
    protected EjbRelationshipRole.RelationshipRoleSource relationshipRoleSource;
    @XmlElement(name = "cmr-field")
    protected EjbRelationshipRole.CmrField cmrField;
    @XmlElement(name = "foreign-key-column-on-source")
    protected Object foreignKeyColumnOnSource;
    @XmlElement(name = "role-mapping", required = true)
    protected EjbRelationshipRole.RoleMapping roleMapping;

    /**
     * Gets the value of the ejbRelationshipRoleName property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getEjbRelationshipRoleName() {
        return ejbRelationshipRoleName;
    }

    /**
     * Sets the value of the ejbRelationshipRoleName property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setEjbRelationshipRoleName(String value) {
        this.ejbRelationshipRoleName = value;
    }

    /**
     * Gets the value of the relationshipRoleSource property.
     * 
     * @return
     *     possible object is
     *     {@link EjbRelationshipRole.RelationshipRoleSource }
     *     
     */
    public EjbRelationshipRole.RelationshipRoleSource getRelationshipRoleSource() {
        return relationshipRoleSource;
    }

    /**
     * Sets the value of the relationshipRoleSource property.
     * 
     * @param value
     *     allowed object is
     *     {@link EjbRelationshipRole.RelationshipRoleSource }
     *     
     */
    public void setRelationshipRoleSource(EjbRelationshipRole.RelationshipRoleSource value) {
        this.relationshipRoleSource = value;
    }

    /**
     * Gets the value of the cmrField property.
     * 
     * @return
     *     possible object is
     *     {@link EjbRelationshipRole.CmrField }
     *     
     */
    public EjbRelationshipRole.CmrField getCmrField() {
        return cmrField;
    }

    /**
     * Sets the value of the cmrField property.
     * 
     * @param value
     *     allowed object is
     *     {@link EjbRelationshipRole.CmrField }
     *     
     */
    public void setCmrField(EjbRelationshipRole.CmrField value) {
        this.cmrField = value;
    }

    /**
     * Gets the value of the foreignKeyColumnOnSource property.
     * 
     * @return
     *     possible object is
     *     {@link Object }
     *     
     */
    public Object getForeignKeyColumnOnSource() {
        return foreignKeyColumnOnSource;
    }

    /**
     * Sets the value of the foreignKeyColumnOnSource property.
     * 
     * @param value
     *     allowed object is
     *     {@link Object }
     *     
     */
    public void setForeignKeyColumnOnSource(Object value) {
        this.foreignKeyColumnOnSource = value;
    }

    /**
     * Gets the value of the roleMapping property.
     * 
     * @return
     *     possible object is
     *     {@link EjbRelationshipRole.RoleMapping }
     *     
     */
    public EjbRelationshipRole.RoleMapping getRoleMapping() {
        return roleMapping;
    }

    /**
     * Sets the value of the roleMapping property.
     * 
     * @param value
     *     allowed object is
     *     {@link EjbRelationshipRole.RoleMapping }
     *     
     */
    public void setRoleMapping(EjbRelationshipRole.RoleMapping value) {
        this.roleMapping = 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="cmr-field-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *       &lt;/sequence>
     *     &lt;/restriction>
     *   &lt;/complexContent>
     * &lt;/complexType>
     * </pre>
     * 
     * 
     */
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {
        "cmrFieldName"
    })
    public static class CmrField
        implements Serializable
    {

        private final static long serialVersionUID = 12343L;
        @XmlElement(name = "cmr-field-name", required = true)
        protected String cmrFieldName;

        /**
         * 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;
        }

    }


    /**
     * <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="ejb-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *       &lt;/sequence>
     *     &lt;/restriction>
     *   &lt;/complexContent>
     * &lt;/complexType>
     * </pre>
     * 
     * 
     */
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {
        "ejbName"
    })
    public static class RelationshipRoleSource
        implements Serializable
    {

        private final static long serialVersionUID = 12343L;
        @XmlElement(name = "ejb-name", required = true)
        protected String ejbName;

        /**
         * 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;
        }

    }


    /**
     * <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-mapping" maxOccurs="unbounded">
     *           &lt;complexType>
     *             &lt;complexContent>
     *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 &lt;sequence>
     *                   &lt;element name="key-column" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *                   &lt;element name="foreign-key-column" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *                 &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 = {
        "cmrFieldMapping"
    })
    public static class RoleMapping
        implements Serializable
    {

        private final static long serialVersionUID = 12343L;
        @XmlElement(name = "cmr-field-mapping", required = true)
        protected List<EjbRelationshipRole.RoleMapping.CmrFieldMapping> cmrFieldMapping;

        /**
         * Gets the value of the cmrFieldMapping 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 cmrFieldMapping property.
         * 
         * <p>
         * For example, to add a new item, do as follows:
         * <pre>
         *    getCmrFieldMapping().add(newItem);
         * </pre>
         * 
         * 
         * <p>
         * Objects of the following type(s) are allowed in the list
         * {@link EjbRelationshipRole.RoleMapping.CmrFieldMapping }
         * 
         * 
         */
        public List<EjbRelationshipRole.RoleMapping.CmrFieldMapping> getCmrFieldMapping() {
            if (cmrFieldMapping == null) {
                cmrFieldMapping = new ArrayList<EjbRelationshipRole.RoleMapping.CmrFieldMapping>();
            }
            return this.cmrFieldMapping;
        }


        /**
         * <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="key-column" type="{http://www.w3.org/2001/XMLSchema}string"/>
         *         &lt;element name="foreign-key-column" type="{http://www.w3.org/2001/XMLSchema}string"/>
         *       &lt;/sequence>
         *     &lt;/restriction>
         *   &lt;/complexContent>
         * &lt;/complexType>
         * </pre>
         * 
         * 
         */
        @XmlAccessorType(XmlAccessType.FIELD)
        @XmlType(name = "", propOrder = {
            "keyColumn",
            "foreignKeyColumn"
        })
        public static class CmrFieldMapping
            implements Serializable
        {

            private final static long serialVersionUID = 12343L;
            @XmlElement(name = "key-column", required = true)
            protected String keyColumn;
            @XmlElement(name = "foreign-key-column", required = true)
            protected String foreignKeyColumn;

            /**
             * Gets the value of the keyColumn property.
             * 
             * @return
             *     possible object is
             *     {@link String }
             *     
             */
            public String getKeyColumn() {
                return keyColumn;
            }

            /**
             * Sets the value of the keyColumn property.
             * 
             * @param value
             *     allowed object is
             *     {@link String }
             *     
             */
            public void setKeyColumn(String value) {
                this.keyColumn = value;
            }

            /**
             * Gets the value of the foreignKeyColumn property.
             * 
             * @return
             *     possible object is
             *     {@link String }
             *     
             */
            public String getForeignKeyColumn() {
                return foreignKeyColumn;
            }

            /**
             * Sets the value of the foreignKeyColumn property.
             * 
             * @param value
             *     allowed object is
             *     {@link String }
             *     
             */
            public void setForeignKeyColumn(String value) {
                this.foreignKeyColumn = value;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



plugins/org.apache.geronimo.st.v30.jaxbmodel/src/main/java/org/apache/geronimo/jee/openejb/EjbRelationshipRole.java [94:507]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ejb-relationship-roleType", propOrder = {
    "ejbRelationshipRoleName",
    "relationshipRoleSource",
    "cmrField",
    "foreignKeyColumnOnSource",
    "roleMapping"
})
public class EjbRelationshipRole
    implements Serializable
{

    private final static long serialVersionUID = 12343L;
    @XmlElement(name = "ejb-relationship-role-name")
    protected String ejbRelationshipRoleName;
    @XmlElement(name = "relationship-role-source", required = true)
    protected EjbRelationshipRole.RelationshipRoleSource relationshipRoleSource;
    @XmlElement(name = "cmr-field")
    protected EjbRelationshipRole.CmrField cmrField;
    @XmlElement(name = "foreign-key-column-on-source")
    protected Object foreignKeyColumnOnSource;
    @XmlElement(name = "role-mapping", required = true)
    protected EjbRelationshipRole.RoleMapping roleMapping;

    /**
     * Gets the value of the ejbRelationshipRoleName property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getEjbRelationshipRoleName() {
        return ejbRelationshipRoleName;
    }

    /**
     * Sets the value of the ejbRelationshipRoleName property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setEjbRelationshipRoleName(String value) {
        this.ejbRelationshipRoleName = value;
    }

    /**
     * Gets the value of the relationshipRoleSource property.
     * 
     * @return
     *     possible object is
     *     {@link EjbRelationshipRole.RelationshipRoleSource }
     *     
     */
    public EjbRelationshipRole.RelationshipRoleSource getRelationshipRoleSource() {
        return relationshipRoleSource;
    }

    /**
     * Sets the value of the relationshipRoleSource property.
     * 
     * @param value
     *     allowed object is
     *     {@link EjbRelationshipRole.RelationshipRoleSource }
     *     
     */
    public void setRelationshipRoleSource(EjbRelationshipRole.RelationshipRoleSource value) {
        this.relationshipRoleSource = value;
    }

    /**
     * Gets the value of the cmrField property.
     * 
     * @return
     *     possible object is
     *     {@link EjbRelationshipRole.CmrField }
     *     
     */
    public EjbRelationshipRole.CmrField getCmrField() {
        return cmrField;
    }

    /**
     * Sets the value of the cmrField property.
     * 
     * @param value
     *     allowed object is
     *     {@link EjbRelationshipRole.CmrField }
     *     
     */
    public void setCmrField(EjbRelationshipRole.CmrField value) {
        this.cmrField = value;
    }

    /**
     * Gets the value of the foreignKeyColumnOnSource property.
     * 
     * @return
     *     possible object is
     *     {@link Object }
     *     
     */
    public Object getForeignKeyColumnOnSource() {
        return foreignKeyColumnOnSource;
    }

    /**
     * Sets the value of the foreignKeyColumnOnSource property.
     * 
     * @param value
     *     allowed object is
     *     {@link Object }
     *     
     */
    public void setForeignKeyColumnOnSource(Object value) {
        this.foreignKeyColumnOnSource = value;
    }

    /**
     * Gets the value of the roleMapping property.
     * 
     * @return
     *     possible object is
     *     {@link EjbRelationshipRole.RoleMapping }
     *     
     */
    public EjbRelationshipRole.RoleMapping getRoleMapping() {
        return roleMapping;
    }

    /**
     * Sets the value of the roleMapping property.
     * 
     * @param value
     *     allowed object is
     *     {@link EjbRelationshipRole.RoleMapping }
     *     
     */
    public void setRoleMapping(EjbRelationshipRole.RoleMapping value) {
        this.roleMapping = 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="cmr-field-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *       &lt;/sequence>
     *     &lt;/restriction>
     *   &lt;/complexContent>
     * &lt;/complexType>
     * </pre>
     * 
     * 
     */
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {
        "cmrFieldName"
    })
    public static class CmrField
        implements Serializable
    {

        private final static long serialVersionUID = 12343L;
        @XmlElement(name = "cmr-field-name", required = true)
        protected String cmrFieldName;

        /**
         * 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;
        }

    }


    /**
     * <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="ejb-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *       &lt;/sequence>
     *     &lt;/restriction>
     *   &lt;/complexContent>
     * &lt;/complexType>
     * </pre>
     * 
     * 
     */
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {
        "ejbName"
    })
    public static class RelationshipRoleSource
        implements Serializable
    {

        private final static long serialVersionUID = 12343L;
        @XmlElement(name = "ejb-name", required = true)
        protected String ejbName;

        /**
         * 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;
        }

    }


    /**
     * <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-mapping" maxOccurs="unbounded">
     *           &lt;complexType>
     *             &lt;complexContent>
     *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 &lt;sequence>
     *                   &lt;element name="key-column" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *                   &lt;element name="foreign-key-column" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *                 &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 = {
        "cmrFieldMapping"
    })
    public static class RoleMapping
        implements Serializable
    {

        private final static long serialVersionUID = 12343L;
        @XmlElement(name = "cmr-field-mapping", required = true)
        protected List<EjbRelationshipRole.RoleMapping.CmrFieldMapping> cmrFieldMapping;

        /**
         * Gets the value of the cmrFieldMapping 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 cmrFieldMapping property.
         * 
         * <p>
         * For example, to add a new item, do as follows:
         * <pre>
         *    getCmrFieldMapping().add(newItem);
         * </pre>
         * 
         * 
         * <p>
         * Objects of the following type(s) are allowed in the list
         * {@link EjbRelationshipRole.RoleMapping.CmrFieldMapping }
         * 
         * 
         */
        public List<EjbRelationshipRole.RoleMapping.CmrFieldMapping> getCmrFieldMapping() {
            if (cmrFieldMapping == null) {
                cmrFieldMapping = new ArrayList<EjbRelationshipRole.RoleMapping.CmrFieldMapping>();
            }
            return this.cmrFieldMapping;
        }


        /**
         * <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="key-column" type="{http://www.w3.org/2001/XMLSchema}string"/>
         *         &lt;element name="foreign-key-column" type="{http://www.w3.org/2001/XMLSchema}string"/>
         *       &lt;/sequence>
         *     &lt;/restriction>
         *   &lt;/complexContent>
         * &lt;/complexType>
         * </pre>
         * 
         * 
         */
        @XmlAccessorType(XmlAccessType.FIELD)
        @XmlType(name = "", propOrder = {
            "keyColumn",
            "foreignKeyColumn"
        })
        public static class CmrFieldMapping
            implements Serializable
        {

            private final static long serialVersionUID = 12343L;
            @XmlElement(name = "key-column", required = true)
            protected String keyColumn;
            @XmlElement(name = "foreign-key-column", required = true)
            protected String foreignKeyColumn;

            /**
             * Gets the value of the keyColumn property.
             * 
             * @return
             *     possible object is
             *     {@link String }
             *     
             */
            public String getKeyColumn() {
                return keyColumn;
            }

            /**
             * Sets the value of the keyColumn property.
             * 
             * @param value
             *     allowed object is
             *     {@link String }
             *     
             */
            public void setKeyColumn(String value) {
                this.keyColumn = value;
            }

            /**
             * Gets the value of the foreignKeyColumn property.
             * 
             * @return
             *     possible object is
             *     {@link String }
             *     
             */
            public String getForeignKeyColumn() {
                return foreignKeyColumn;
            }

            /**
             * Sets the value of the foreignKeyColumn property.
             * 
             * @param value
             *     allowed object is
             *     {@link String }
             *     
             */
            public void setForeignKeyColumn(String value) {
                this.foreignKeyColumn = value;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



