
net.datastream.schemas.mp_fields.RESERVATIONID Maven / Gradle / Ivy
package net.datastream.schemas.mp_fields;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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_fields}ACTIVITYID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}PARTID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}STOREID"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"activityid",
"partid",
"storeid"
})
@XmlRootElement(name = "RESERVATIONID")
public class RESERVATIONID {
@XmlElement(name = "ACTIVITYID", required = true)
protected ACTIVITYID activityid;
@XmlElement(name = "PARTID", required = true)
protected PARTID_Type partid;
@XmlElement(name = "STOREID", required = true)
protected STOREID_Type storeid;
/**
* Obtient la valeur de la propriété activityid.
*
* @return
* possible object is
* {@link ACTIVITYID }
*
*/
public ACTIVITYID getACTIVITYID() {
return activityid;
}
/**
* Définit la valeur de la propriété activityid.
*
* @param value
* allowed object is
* {@link ACTIVITYID }
*
*/
public void setACTIVITYID(ACTIVITYID value) {
this.activityid = value;
}
/**
* Obtient la valeur de la propriété partid.
*
* @return
* possible object is
* {@link PARTID_Type }
*
*/
public PARTID_Type getPARTID() {
return partid;
}
/**
* Définit la valeur de la propriété partid.
*
* @param value
* allowed object is
* {@link PARTID_Type }
*
*/
public void setPARTID(PARTID_Type value) {
this.partid = value;
}
/**
* Obtient la valeur de la propriété storeid.
*
* @return
* possible object is
* {@link STOREID_Type }
*
*/
public STOREID_Type getSTOREID() {
return storeid;
}
/**
* Définit la valeur de la propriété storeid.
*
* @param value
* allowed object is
* {@link STOREID_Type }
*
*/
public void setSTOREID(STOREID_Type value) {
this.storeid = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy