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

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


package net.datastream.schemas.mp_results.mp0311_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_fields.EQUIPMENTID_Type;


/**
 * 

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}SYSTEMID"/>
 *       </sequence>
 *       <attribute name="multiorg" type="{http://schemas.datastream.net/MP_fields}FLAG_Type" default="false" />
 *       <attribute name="addgisasset" type="{http://schemas.datastream.net/MP_fields}FLAG_Type" default="false" />
 *       <attribute name="gisobjid" type="{http://www.w3.org/2001/XMLSchema}long" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "systemid" }) @XmlRootElement(name = "ResultData") public class ResultData { @XmlElement(name = "SYSTEMID", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected EQUIPMENTID_Type systemid; @XmlAttribute(name = "multiorg") protected String multiorg; @XmlAttribute(name = "addgisasset") protected String addgisasset; @XmlAttribute(name = "gisobjid") protected Long gisobjid; /** * Obtient la valeur de la propriété systemid. * * @return * possible object is * {@link EQUIPMENTID_Type } * */ public EQUIPMENTID_Type getSYSTEMID() { return systemid; } /** * Définit la valeur de la propriété systemid. * * @param value * allowed object is * {@link EQUIPMENTID_Type } * */ public void setSYSTEMID(EQUIPMENTID_Type value) { this.systemid = 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é addgisasset. * * @return * possible object is * {@link String } * */ public String getAddgisasset() { if (addgisasset == null) { return "false"; } else { return addgisasset; } } /** * Définit la valeur de la propriété addgisasset. * * @param value * allowed object is * {@link String } * */ public void setAddgisasset(String value) { this.addgisasset = value; } /** * Obtient la valeur de la propriété gisobjid. * * @return * possible object is * {@link Long } * */ public Long getGisobjid() { return gisobjid; } /** * Définit la valeur de la propriété gisobjid. * * @param value * allowed object is * {@link Long } * */ public void setGisobjid(Long value) { this.gisobjid = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy