All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.datastream.schemas.mp_functions.mp0113_001.DocumentAssociationMetaData Maven / Gradle / Ivy


package net.datastream.schemas.mp_functions.mp0113_001;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Classe Java pour anonymous complex type. * *

Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://schemas.datastream.net/MP_functions/MP0113_001}Join" maxOccurs="8" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="entity" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="relationship" type="{http://schemas.datastream.net/MP_fields}CODE1_Type" />
 *       <attribute name="columnPrefix" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "join" }) @XmlRootElement(name = "DocumentAssociationMetaData") public class DocumentAssociationMetaData { @XmlElement(name = "Join") protected List join; @XmlAttribute(name = "entity") protected String entity; @XmlAttribute(name = "relationship") protected String relationship; @XmlAttribute(name = "columnPrefix") protected String columnPrefix; /** * Gets the value of the join property. * *

* 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 set method for the join property. * *

* For example, to add a new item, do as follows: *

     *    getJoin().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Join } * * */ public List getJoin() { if (join == null) { join = new ArrayList(); } return this.join; } /** * Obtient la valeur de la propriété entity. * * @return * possible object is * {@link String } * */ public String getEntity() { return entity; } /** * Définit la valeur de la propriété entity. * * @param value * allowed object is * {@link String } * */ public void setEntity(String value) { this.entity = value; } /** * Obtient la valeur de la propriété relationship. * * @return * possible object is * {@link String } * */ public String getRelationship() { return relationship; } /** * Définit la valeur de la propriété relationship. * * @param value * allowed object is * {@link String } * */ public void setRelationship(String value) { this.relationship = value; } /** * Obtient la valeur de la propriété columnPrefix. * * @return * possible object is * {@link String } * */ public String getColumnPrefix() { return columnPrefix; } /** * Définit la valeur de la propriété columnPrefix. * * @param value * allowed object is * {@link String } * */ public void setColumnPrefix(String value) { this.columnPrefix = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy