net.datastream.schemas.mp_entities.profile_001.ManufacturerInfo Maven / Gradle / Ivy
package net.datastream.schemas.mp_entities.profile_001;
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}MANUFACTURERCODE" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}SERIALNUMBER" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}MODEL" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}MODELREVISION" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"manufacturercode",
"serialnumber",
"model",
"modelrevision"
})
@XmlRootElement(name = "ManufacturerInfo")
public class ManufacturerInfo {
@XmlElement(name = "MANUFACTURERCODE", namespace = "http://schemas.datastream.net/MP_fields")
protected String manufacturercode;
@XmlElement(name = "SERIALNUMBER", namespace = "http://schemas.datastream.net/MP_fields")
protected String serialnumber;
@XmlElement(name = "MODEL", namespace = "http://schemas.datastream.net/MP_fields")
protected String model;
@XmlElement(name = "MODELREVISION", namespace = "http://schemas.datastream.net/MP_fields")
protected String modelrevision;
/**
* Gets the value of the manufacturercode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMANUFACTURERCODE() {
return manufacturercode;
}
/**
* Sets the value of the manufacturercode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMANUFACTURERCODE(String value) {
this.manufacturercode = value;
}
/**
* Gets the value of the serialnumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSERIALNUMBER() {
return serialnumber;
}
/**
* Sets the value of the serialnumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSERIALNUMBER(String value) {
this.serialnumber = value;
}
/**
* Gets the value of the model property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMODEL() {
return model;
}
/**
* Sets the value of the model property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMODEL(String value) {
this.model = value;
}
/**
* Gets the value of the modelrevision property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMODELREVISION() {
return modelrevision;
}
/**
* Sets the value of the modelrevision property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMODELREVISION(String value) {
this.modelrevision = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy