net.datastream.schemas.mp_results.mp0113_001.InstallParameters Maven / Gradle / Ivy
package net.datastream.schemas.mp_results.mp0113_001;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
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">
* <attribute name="installCode" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="installDescription" type="{http://schemas.datastream.net/MP_fields}CODE800_Type" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "InstallParameters")
public class InstallParameters {
@XmlAttribute(name = "installCode")
protected String installCode;
@XmlAttribute(name = "installDescription")
protected String installDescription;
/**
* Obtient la valeur de la propriété installCode.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInstallCode() {
return installCode;
}
/**
* Définit la valeur de la propriété installCode.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInstallCode(String value) {
this.installCode = value;
}
/**
* Obtient la valeur de la propriété installDescription.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInstallDescription() {
return installDescription;
}
/**
* Définit la valeur de la propriété installDescription.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInstallDescription(String value) {
this.installDescription = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy