net.datastream.schemas.mp_entities.depreciation_001.RemainingUsefulLife Maven / Gradle / Ivy
package net.datastream.schemas.mp_entities.depreciation_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.UOMID_Type;
import org.openapplications.oagis_segments.AMOUNT;
/**
* 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}ESTIMATEDLIFE"/>
* <element ref="{http://schemas.datastream.net/MP_fields}UOMID"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"estimatedlife",
"uomid"
})
@XmlRootElement(name = "RemainingUsefulLife")
public class RemainingUsefulLife {
@XmlElement(name = "ESTIMATEDLIFE", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected AMOUNT estimatedlife;
@XmlElement(name = "UOMID", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected UOMID_Type uomid;
/**
* Gets the value of the estimatedlife property.
*
* @return
* possible object is
* {@link AMOUNT }
*
*/
public AMOUNT getESTIMATEDLIFE() {
return estimatedlife;
}
/**
* Sets the value of the estimatedlife property.
*
* @param value
* allowed object is
* {@link AMOUNT }
*
*/
public void setESTIMATEDLIFE(AMOUNT value) {
this.estimatedlife = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy