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

net.datastream.schemas.mp_entities.equipmentmeterreadingdefault_001.EquipmentMeterReadingDefault Maven / Gradle / Ivy

There is a newer version: 12.1-4
Show newest version

package net.datastream.schemas.mp_entities.equipmentmeterreadingdefault_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.READINGTYPEID_Type;
import net.datastream.schemas.mp_fields.STATUS_Type;
import net.datastream.schemas.mp_fields.UOMID_Type;
import org.openapplications.oagis_segments.DATETIME;


/**
 * 

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}READINGTYPEID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}READINGDATE"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}RSTATUS" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}UOMID" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="hasupdownmeterchecked" type="{http://schemas.datastream.net/MP_fields}FLAG_Type" default="false" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "readingtypeid", "readingdate", "rstatus", "uomid" }) @XmlRootElement(name = "EquipmentMeterReadingDefault") public class EquipmentMeterReadingDefault { @XmlElement(name = "READINGTYPEID", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected READINGTYPEID_Type readingtypeid; @XmlElement(name = "READINGDATE", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected DATETIME readingdate; @XmlElement(name = "RSTATUS", namespace = "http://schemas.datastream.net/MP_fields") protected STATUS_Type rstatus; @XmlElement(name = "UOMID", namespace = "http://schemas.datastream.net/MP_fields") protected UOMID_Type uomid; @XmlAttribute(name = "hasupdownmeterchecked") protected String hasupdownmeterchecked; /** * Gets the value of the readingtypeid property. * * @return * possible object is * {@link READINGTYPEID_Type } * */ public READINGTYPEID_Type getREADINGTYPEID() { return readingtypeid; } /** * Sets the value of the readingtypeid property. * * @param value * allowed object is * {@link READINGTYPEID_Type } * */ public void setREADINGTYPEID(READINGTYPEID_Type value) { this.readingtypeid = value; } /** * Gets the value of the readingdate property. * * @return * possible object is * {@link DATETIME } * */ public DATETIME getREADINGDATE() { return readingdate; } /** * Sets the value of the readingdate property. * * @param value * allowed object is * {@link DATETIME } * */ public void setREADINGDATE(DATETIME value) { this.readingdate = value; } /** * Gets the value of the rstatus property. * * @return * possible object is * {@link STATUS_Type } * */ public STATUS_Type getRSTATUS() { return rstatus; } /** * Sets the value of the rstatus property. * * @param value * allowed object is * {@link STATUS_Type } * */ public void setRSTATUS(STATUS_Type value) { this.rstatus = value; } /** * Gets the value of the uomid property. * * @return * possible object is * {@link UOMID_Type } * */ public UOMID_Type getUOMID() { return uomid; } /** * Sets the value of the uomid property. * * @param value * allowed object is * {@link UOMID_Type } * */ public void setUOMID(UOMID_Type value) { this.uomid = value; } /** * Gets the value of the hasupdownmeterchecked property. * * @return * possible object is * {@link String } * */ public String getHasupdownmeterchecked() { if (hasupdownmeterchecked == null) { return "false"; } else { return hasupdownmeterchecked; } } /** * Sets the value of the hasupdownmeterchecked property. * * @param value * allowed object is * {@link String } * */ public void setHasupdownmeterchecked(String value) { this.hasupdownmeterchecked = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy