
net.datastream.schemas.mp_entities.location_001.ParentLocation Maven / Gradle / Ivy
package net.datastream.schemas.mp_entities.location_001;
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_fields.DEPARTMENTID_Type;
import net.datastream.schemas.mp_fields.LOCATIONID_Type;
import net.datastream.schemas.mp_fields.TYPE_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_fields}LOCATIONID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}TYPE"/>
* <element ref="{http://schemas.datastream.net/MP_fields}DEPARTMENTID" minOccurs="0"/>
* </sequence>
* <attribute name="recordid" type="{http://www.w3.org/2001/XMLSchema}long" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"locationid",
"type",
"departmentid"
})
@XmlRootElement(name = "ParentLocation")
public class ParentLocation {
@XmlElement(name = "LOCATIONID", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected LOCATIONID_Type locationid;
@XmlElement(name = "TYPE", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected TYPE_Type type;
@XmlElement(name = "DEPARTMENTID", namespace = "http://schemas.datastream.net/MP_fields")
protected DEPARTMENTID_Type departmentid;
@XmlAttribute(name = "recordid")
protected Long recordid;
/**
* Obtient la valeur de la propriété locationid.
*
* @return
* possible object is
* {@link LOCATIONID_Type }
*
*/
public LOCATIONID_Type getLOCATIONID() {
return locationid;
}
/**
* Définit la valeur de la propriété locationid.
*
* @param value
* allowed object is
* {@link LOCATIONID_Type }
*
*/
public void setLOCATIONID(LOCATIONID_Type value) {
this.locationid = value;
}
/**
* Obtient la valeur de la propriété type.
*
* @return
* possible object is
* {@link TYPE_Type }
*
*/
public TYPE_Type getTYPE() {
return type;
}
/**
* Définit la valeur de la propriété type.
*
* @param value
* allowed object is
* {@link TYPE_Type }
*
*/
public void setTYPE(TYPE_Type value) {
this.type = value;
}
/**
* Obtient la valeur de la propriété departmentid.
*
* @return
* possible object is
* {@link DEPARTMENTID_Type }
*
*/
public DEPARTMENTID_Type getDEPARTMENTID() {
return departmentid;
}
/**
* Définit la valeur de la propriété departmentid.
*
* @param value
* allowed object is
* {@link DEPARTMENTID_Type }
*
*/
public void setDEPARTMENTID(DEPARTMENTID_Type value) {
this.departmentid = value;
}
/**
* Obtient la valeur de la propriété recordid.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getRecordid() {
return recordid;
}
/**
* Définit la valeur de la propriété recordid.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setRecordid(Long value) {
this.recordid = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy