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

net.datastream.schemas.mp_fields.STORELOCATION 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}STOREID" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}BIN" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}LOT" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "storeid", "bin", "lot" }) @XmlRootElement(name = "STORELOCATION") public class STORELOCATION { @XmlElement(name = "STOREID") protected STOREID_Type storeid; @XmlElement(name = "BIN") protected String bin; @XmlElement(name = "LOT") protected String lot; /** * 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; } /** * Obtient la valeur de la propriété bin. * * @return * possible object is * {@link String } * */ public String getBIN() { return bin; } /** * Définit la valeur de la propriété bin. * * @param value * allowed object is * {@link String } * */ public void setBIN(String value) { this.bin = value; } /** * Obtient la valeur de la propriété lot. * * @return * possible object is * {@link String } * */ public String getLOT() { return lot; } /** * Définit la valeur de la propriété lot. * * @param value * allowed object is * {@link String } * */ public void setLOT(String value) { this.lot = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy