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

net.datastream.schemas.mp_entities.kitsession_001.KitSession Maven / Gradle / Ivy


package net.datastream.schemas.mp_entities.kitsession_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.BINID_Type;
import net.datastream.schemas.mp_fields.PARTID_Type;
import net.datastream.schemas.mp_fields.STOREID_Type;
import org.openapplications.oagis_segments.DATETIME;
import org.openapplications.oagis_segments.QUANTITY;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://schemas.datastream.net/MP_fields}DBSESSIONID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}PARTID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}STOREID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}BINID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}KITCOUNT"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}LOTDESCRIPTION"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}MAXAVAILABLEKITS" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}LOTEXPIREDATE" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="recordid" type="{http://www.w3.org/2001/XMLSchema}long" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dbsessionid", "partid", "storeid", "binid", "kitcount", "lotdescription", "maxavailablekits", "lotexpiredate" }) @XmlRootElement(name = "KitSession") public class KitSession { @XmlElement(name = "DBSESSIONID", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected QUANTITY dbsessionid; @XmlElement(name = "PARTID", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected PARTID_Type partid; @XmlElement(name = "STOREID", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected STOREID_Type storeid; @XmlElement(name = "BINID", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected BINID_Type binid; @XmlElement(name = "KITCOUNT", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected QUANTITY kitcount; @XmlElement(name = "LOTDESCRIPTION", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected String lotdescription; @XmlElement(name = "MAXAVAILABLEKITS", namespace = "http://schemas.datastream.net/MP_fields") protected QUANTITY maxavailablekits; @XmlElement(name = "LOTEXPIREDATE", namespace = "http://schemas.datastream.net/MP_fields") protected DATETIME lotexpiredate; @XmlAttribute(name = "recordid") protected Long recordid; /** * Gets the value of the dbsessionid property. * * @return * possible object is * {@link QUANTITY } * */ public QUANTITY getDBSESSIONID() { return dbsessionid; } /** * Sets the value of the dbsessionid property. * * @param value * allowed object is * {@link QUANTITY } * */ public void setDBSESSIONID(QUANTITY value) { this.dbsessionid = value; } /** * Gets the value of the partid property. * * @return * possible object is * {@link PARTID_Type } * */ public PARTID_Type getPARTID() { return partid; } /** * Sets the value of the partid property. * * @param value * allowed object is * {@link PARTID_Type } * */ public void setPARTID(PARTID_Type value) { this.partid = value; } /** * Gets the value of the storeid property. * * @return * possible object is * {@link STOREID_Type } * */ public STOREID_Type getSTOREID() { return storeid; } /** * Sets the value of the storeid property. * * @param value * allowed object is * {@link STOREID_Type } * */ public void setSTOREID(STOREID_Type value) { this.storeid = value; } /** * Gets the value of the binid property. * * @return * possible object is * {@link BINID_Type } * */ public BINID_Type getBINID() { return binid; } /** * Sets the value of the binid property. * * @param value * allowed object is * {@link BINID_Type } * */ public void setBINID(BINID_Type value) { this.binid = value; } /** * Gets the value of the kitcount property. * * @return * possible object is * {@link QUANTITY } * */ public QUANTITY getKITCOUNT() { return kitcount; } /** * Sets the value of the kitcount property. * * @param value * allowed object is * {@link QUANTITY } * */ public void setKITCOUNT(QUANTITY value) { this.kitcount = value; } /** * Gets the value of the lotdescription property. * * @return * possible object is * {@link String } * */ public String getLOTDESCRIPTION() { return lotdescription; } /** * Sets the value of the lotdescription property. * * @param value * allowed object is * {@link String } * */ public void setLOTDESCRIPTION(String value) { this.lotdescription = value; } /** * Gets the value of the maxavailablekits property. * * @return * possible object is * {@link QUANTITY } * */ public QUANTITY getMAXAVAILABLEKITS() { return maxavailablekits; } /** * Sets the value of the maxavailablekits property. * * @param value * allowed object is * {@link QUANTITY } * */ public void setMAXAVAILABLEKITS(QUANTITY value) { this.maxavailablekits = value; } /** * Gets the value of the lotexpiredate property. * * @return * possible object is * {@link DATETIME } * */ public DATETIME getLOTEXPIREDATE() { return lotexpiredate; } /** * Sets the value of the lotexpiredate property. * * @param value * allowed object is * {@link DATETIME } * */ public void setLOTEXPIREDATE(DATETIME value) { this.lotexpiredate = value; } /** * Gets the value of the recordid property. * * @return * possible object is * {@link Long } * */ public Long getRecordid() { return recordid; } /** * Sets the value of the recordid property. * * @param value * allowed object is * {@link Long } * */ public void setRecordid(Long value) { this.recordid = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy