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

net.datastream.schemas.mp_entities.lot_001.Lot Maven / Gradle / Ivy


package net.datastream.schemas.mp_entities.lot_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.CLASSID_Type;
import net.datastream.schemas.mp_fields.LOTID_Type;
import net.datastream.schemas.mp_fields.USERDEFINEDAREA;
import org.openapplications.oagis_segments.DATETIME;


/**
 * 

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}LOTID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}CLASSID" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}EXPIRATIONDATE" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}MANUFACTLOT" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}USERDEFINEDAREA" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="recordid" type="{http://www.w3.org/2001/XMLSchema}long" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "lotid", "classid", "expirationdate", "manufactlot", "userdefinedarea" }) @XmlRootElement(name = "Lot") public class Lot { @XmlElement(name = "LOTID", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected LOTID_Type lotid; @XmlElement(name = "CLASSID", namespace = "http://schemas.datastream.net/MP_fields") protected CLASSID_Type classid; @XmlElement(name = "EXPIRATIONDATE", namespace = "http://schemas.datastream.net/MP_fields") protected DATETIME expirationdate; @XmlElement(name = "MANUFACTLOT", namespace = "http://schemas.datastream.net/MP_fields") protected String manufactlot; @XmlElement(name = "USERDEFINEDAREA", namespace = "http://schemas.datastream.net/MP_fields") protected USERDEFINEDAREA userdefinedarea; @XmlAttribute(name = "recordid") protected Long recordid; /** * Obtient la valeur de la propriété lotid. * * @return * possible object is * {@link LOTID_Type } * */ public LOTID_Type getLOTID() { return lotid; } /** * Définit la valeur de la propriété lotid. * * @param value * allowed object is * {@link LOTID_Type } * */ public void setLOTID(LOTID_Type value) { this.lotid = value; } /** * Obtient la valeur de la propriété classid. * * @return * possible object is * {@link CLASSID_Type } * */ public CLASSID_Type getCLASSID() { return classid; } /** * Définit la valeur de la propriété classid. * * @param value * allowed object is * {@link CLASSID_Type } * */ public void setCLASSID(CLASSID_Type value) { this.classid = value; } /** * Obtient la valeur de la propriété expirationdate. * * @return * possible object is * {@link DATETIME } * */ public DATETIME getEXPIRATIONDATE() { return expirationdate; } /** * Définit la valeur de la propriété expirationdate. * * @param value * allowed object is * {@link DATETIME } * */ public void setEXPIRATIONDATE(DATETIME value) { this.expirationdate = value; } /** * Obtient la valeur de la propriété manufactlot. * * @return * possible object is * {@link String } * */ public String getMANUFACTLOT() { return manufactlot; } /** * Définit la valeur de la propriété manufactlot. * * @param value * allowed object is * {@link String } * */ public void setMANUFACTLOT(String value) { this.manufactlot = value; } /** * Obtient la valeur de la propriété userdefinedarea. * * @return * possible object is * {@link USERDEFINEDAREA } * */ public USERDEFINEDAREA getUSERDEFINEDAREA() { return userdefinedarea; } /** * Définit la valeur de la propriété userdefinedarea. * * @param value * allowed object is * {@link USERDEFINEDAREA } * */ public void setUSERDEFINEDAREA(USERDEFINEDAREA value) { this.userdefinedarea = 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