net.datastream.schemas.mp_fields.STOREBINID 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;
/**
* 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}STOREID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}BINID"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"storeid",
"binid"
})
@XmlRootElement(name = "STOREBINID")
public class STOREBINID {
@XmlElement(name = "STOREID", required = true)
protected STOREID_Type storeid;
@XmlElement(name = "BINID", required = true)
protected BINID_Type binid;
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy