
net.datastream.schemas.mp_results.mp0113_001.ResultData Maven / Gradle / Ivy
package net.datastream.schemas.mp_results.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;
import net.datastream.schemas.mp_entities.documentassociation_001.DocumentAssociation_Type;
/**
* 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_entities/DocumentAssociation_001}DocumentAssociation" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="entityCode" type="{http://schemas.datastream.net/MP_fields}CODE30_Type" />
* <attribute name="entityDescription" type="{http://schemas.datastream.net/MP_fields}CODE80_Type" />
* <attribute name="entityType" type="{http://schemas.datastream.net/MP_fields}CODE4_Type" />
* <attribute name="entity" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="entityCategory" type="{http://schemas.datastream.net/MP_fields}CODE120_Type" />
* <attribute name="entityJobType" type="{http://schemas.datastream.net/MP_fields}CODE8_Type" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"documentAssociation"
})
@XmlRootElement(name = "ResultData")
public class ResultData {
@XmlElement(name = "DocumentAssociation", namespace = "http://schemas.datastream.net/MP_entities/DocumentAssociation_001")
protected List documentAssociation;
@XmlAttribute(name = "entityCode")
protected String entityCode;
@XmlAttribute(name = "entityDescription")
protected String entityDescription;
@XmlAttribute(name = "entityType")
protected String entityType;
@XmlAttribute(name = "entity")
protected String entity;
@XmlAttribute(name = "entityCategory")
protected String entityCategory;
@XmlAttribute(name = "entityJobType")
protected String entityJobType;
/**
* Gets the value of the documentAssociation 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 documentAssociation property.
*
*
* For example, to add a new item, do as follows:
*
* getDocumentAssociation().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DocumentAssociation_Type }
*
*
*/
public List getDocumentAssociation() {
if (documentAssociation == null) {
documentAssociation = new ArrayList();
}
return this.documentAssociation;
}
/**
* Obtient la valeur de la propriété entityCode.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntityCode() {
return entityCode;
}
/**
* Définit la valeur de la propriété entityCode.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntityCode(String value) {
this.entityCode = value;
}
/**
* Obtient la valeur de la propriété entityDescription.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntityDescription() {
return entityDescription;
}
/**
* Définit la valeur de la propriété entityDescription.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntityDescription(String value) {
this.entityDescription = value;
}
/**
* Obtient la valeur de la propriété entityType.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntityType() {
return entityType;
}
/**
* Définit la valeur de la propriété entityType.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntityType(String value) {
this.entityType = value;
}
/**
* 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é entityCategory.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntityCategory() {
return entityCategory;
}
/**
* Définit la valeur de la propriété entityCategory.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntityCategory(String value) {
this.entityCategory = value;
}
/**
* Obtient la valeur de la propriété entityJobType.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntityJobType() {
return entityJobType;
}
/**
* Définit la valeur de la propriété entityJobType.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntityJobType(String value) {
this.entityJobType = value;
}
}