net.datastream.schemas.mp_entities.equipmentconfiguration_001.FacilityDetails Maven / Gradle / Ivy
package net.datastream.schemas.mp_entities.equipmentconfiguration_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;
import net.datastream.schemas.mp_fields.REGIONID_Type;
import net.datastream.schemas.mp_fields.TYPE_Type;
import net.datastream.schemas.mp_fields.UOMID_Type;
import org.openapplications.oagis_segments.AMOUNT;
import org.openapplications.oagis_segments.QUANTITY;
/**
* 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}REPLACEMENTVALUE" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}UTILITYBILLLEVEL" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}GASTRACKED" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}FLOORAREA" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}FLOORAREAUOM" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}ESTIMATEDREVENUE" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}REGIONID" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}PRIMARYUSE" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}YEARBUILT" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}SERVICELIFE" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"replacementvalue",
"utilitybilllevel",
"gastracked",
"floorarea",
"floorareauom",
"estimatedrevenue",
"regionid",
"primaryuse",
"yearbuilt",
"servicelife"
})
@XmlRootElement(name = "FacilityDetails")
public class FacilityDetails {
@XmlElement(name = "REPLACEMENTVALUE", namespace = "http://schemas.datastream.net/MP_fields")
protected AMOUNT replacementvalue;
@XmlElement(name = "UTILITYBILLLEVEL", namespace = "http://schemas.datastream.net/MP_fields")
protected String utilitybilllevel;
@XmlElement(name = "GASTRACKED", namespace = "http://schemas.datastream.net/MP_fields")
protected String gastracked;
@XmlElement(name = "FLOORAREA", namespace = "http://schemas.datastream.net/MP_fields")
protected QUANTITY floorarea;
@XmlElement(name = "FLOORAREAUOM", namespace = "http://schemas.datastream.net/MP_fields")
protected UOMID_Type floorareauom;
@XmlElement(name = "ESTIMATEDREVENUE", namespace = "http://schemas.datastream.net/MP_fields")
protected AMOUNT estimatedrevenue;
@XmlElement(name = "REGIONID", namespace = "http://schemas.datastream.net/MP_fields")
protected REGIONID_Type regionid;
@XmlElement(name = "PRIMARYUSE", namespace = "http://schemas.datastream.net/MP_fields")
protected TYPE_Type primaryuse;
@XmlElement(name = "YEARBUILT", namespace = "http://schemas.datastream.net/MP_fields")
protected QUANTITY yearbuilt;
@XmlElement(name = "SERVICELIFE", namespace = "http://schemas.datastream.net/MP_fields")
protected QUANTITY servicelife;
/**
* Gets the value of the replacementvalue property.
*
* @return
* possible object is
* {@link AMOUNT }
*
*/
public AMOUNT getREPLACEMENTVALUE() {
return replacementvalue;
}
/**
* Sets the value of the replacementvalue property.
*
* @param value
* allowed object is
* {@link AMOUNT }
*
*/
public void setREPLACEMENTVALUE(AMOUNT value) {
this.replacementvalue = value;
}
/**
* Gets the value of the utilitybilllevel property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUTILITYBILLLEVEL() {
return utilitybilllevel;
}
/**
* Sets the value of the utilitybilllevel property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUTILITYBILLLEVEL(String value) {
this.utilitybilllevel = value;
}
/**
* Gets the value of the gastracked property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGASTRACKED() {
return gastracked;
}
/**
* Sets the value of the gastracked property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGASTRACKED(String value) {
this.gastracked = value;
}
/**
* Gets the value of the floorarea property.
*
* @return
* possible object is
* {@link QUANTITY }
*
*/
public QUANTITY getFLOORAREA() {
return floorarea;
}
/**
* Sets the value of the floorarea property.
*
* @param value
* allowed object is
* {@link QUANTITY }
*
*/
public void setFLOORAREA(QUANTITY value) {
this.floorarea = value;
}
/**
* Gets the value of the floorareauom property.
*
* @return
* possible object is
* {@link UOMID_Type }
*
*/
public UOMID_Type getFLOORAREAUOM() {
return floorareauom;
}
/**
* Sets the value of the floorareauom property.
*
* @param value
* allowed object is
* {@link UOMID_Type }
*
*/
public void setFLOORAREAUOM(UOMID_Type value) {
this.floorareauom = value;
}
/**
* Gets the value of the estimatedrevenue property.
*
* @return
* possible object is
* {@link AMOUNT }
*
*/
public AMOUNT getESTIMATEDREVENUE() {
return estimatedrevenue;
}
/**
* Sets the value of the estimatedrevenue property.
*
* @param value
* allowed object is
* {@link AMOUNT }
*
*/
public void setESTIMATEDREVENUE(AMOUNT value) {
this.estimatedrevenue = value;
}
/**
* Gets the value of the regionid property.
*
* @return
* possible object is
* {@link REGIONID_Type }
*
*/
public REGIONID_Type getREGIONID() {
return regionid;
}
/**
* Sets the value of the regionid property.
*
* @param value
* allowed object is
* {@link REGIONID_Type }
*
*/
public void setREGIONID(REGIONID_Type value) {
this.regionid = value;
}
/**
* Gets the value of the primaryuse property.
*
* @return
* possible object is
* {@link TYPE_Type }
*
*/
public TYPE_Type getPRIMARYUSE() {
return primaryuse;
}
/**
* Sets the value of the primaryuse property.
*
* @param value
* allowed object is
* {@link TYPE_Type }
*
*/
public void setPRIMARYUSE(TYPE_Type value) {
this.primaryuse = value;
}
/**
* Gets the value of the yearbuilt property.
*
* @return
* possible object is
* {@link QUANTITY }
*
*/
public QUANTITY getYEARBUILT() {
return yearbuilt;
}
/**
* Sets the value of the yearbuilt property.
*
* @param value
* allowed object is
* {@link QUANTITY }
*
*/
public void setYEARBUILT(QUANTITY value) {
this.yearbuilt = value;
}
/**
* Gets the value of the servicelife property.
*
* @return
* possible object is
* {@link QUANTITY }
*
*/
public QUANTITY getSERVICELIFE() {
return servicelife;
}
/**
* Sets the value of the servicelife property.
*
* @param value
* allowed object is
* {@link QUANTITY }
*
*/
public void setSERVICELIFE(QUANTITY value) {
this.servicelife = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy