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

net.datastream.schemas.mp_results.mp0244_001.ResultData Maven / Gradle / Ivy

There is a newer version: 12.1.0-21
Show newest version

package net.datastream.schemas.mp_results.mp0244_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_entities.partdefault_001.PartDefault;


/**
 * 

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_entities/PartDefault_001}PartDefault"/>
 *       </sequence>
 *       <attribute name="multiorg" type="{http://schemas.datastream.net/MP_fields}FLAG_Type" default="false" />
 *       <attribute name="mos" type="{http://schemas.datastream.net/MP_fields}FLAG_Type" default="false" />
 *       <attribute name="autopart" type="{http://schemas.datastream.net/MP_fields}FLAG_Type" default="false" />
 *       <attribute name="showlot" type="{http://schemas.datastream.net/MP_fields}FLAG_Type" default="false" />
 *       <attribute name="pricelevel" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "partDefault" }) @XmlRootElement(name = "ResultData") public class ResultData { @XmlElement(name = "PartDefault", namespace = "http://schemas.datastream.net/MP_entities/PartDefault_001", required = true) protected PartDefault partDefault; @XmlAttribute(name = "multiorg") protected String multiorg; @XmlAttribute(name = "mos") protected String mos; @XmlAttribute(name = "autopart") protected String autopart; @XmlAttribute(name = "showlot") protected String showlot; @XmlAttribute(name = "pricelevel") protected String pricelevel; /** * Obtient la valeur de la propriété partDefault. * * @return * possible object is * {@link PartDefault } * */ public PartDefault getPartDefault() { return partDefault; } /** * Définit la valeur de la propriété partDefault. * * @param value * allowed object is * {@link PartDefault } * */ public void setPartDefault(PartDefault value) { this.partDefault = value; } /** * Obtient la valeur de la propriété multiorg. * * @return * possible object is * {@link String } * */ public String getMultiorg() { if (multiorg == null) { return "false"; } else { return multiorg; } } /** * Définit la valeur de la propriété multiorg. * * @param value * allowed object is * {@link String } * */ public void setMultiorg(String value) { this.multiorg = value; } /** * Obtient la valeur de la propriété mos. * * @return * possible object is * {@link String } * */ public String getMos() { if (mos == null) { return "false"; } else { return mos; } } /** * Définit la valeur de la propriété mos. * * @param value * allowed object is * {@link String } * */ public void setMos(String value) { this.mos = value; } /** * Obtient la valeur de la propriété autopart. * * @return * possible object is * {@link String } * */ public String getAutopart() { if (autopart == null) { return "false"; } else { return autopart; } } /** * Définit la valeur de la propriété autopart. * * @param value * allowed object is * {@link String } * */ public void setAutopart(String value) { this.autopart = value; } /** * Obtient la valeur de la propriété showlot. * * @return * possible object is * {@link String } * */ public String getShowlot() { if (showlot == null) { return "false"; } else { return showlot; } } /** * Définit la valeur de la propriété showlot. * * @param value * allowed object is * {@link String } * */ public void setShowlot(String value) { this.showlot = value; } /** * Obtient la valeur de la propriété pricelevel. * * @return * possible object is * {@link String } * */ public String getPricelevel() { return pricelevel; } /** * Définit la valeur de la propriété pricelevel. * * @param value * allowed object is * {@link String } * */ public void setPricelevel(String value) { this.pricelevel = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy