com.redhat.rhevm.api.model.MemoryStatistics Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2010.09.27 at 07:29:49 PM IST
//
package com.redhat.rhevm.api.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for MemoryStatistics complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MemoryStatistics">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="size" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
* <element name="utilization" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MemoryStatistics", propOrder = {
"size",
"utilization"
})
public class MemoryStatistics {
@XmlSchemaType(name = "unsignedInt")
protected Long size;
@XmlSchemaType(name = "unsignedInt")
protected Long utilization;
/**
* Gets the value of the size property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getSize() {
return size;
}
/**
* Sets the value of the size property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setSize(Long value) {
this.size = value;
}
public boolean isSetSize() {
return (this.size!= null);
}
/**
* Gets the value of the utilization property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getUtilization() {
return utilization;
}
/**
* Sets the value of the utilization property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setUtilization(Long value) {
this.utilization = value;
}
public boolean isSetUtilization() {
return (this.utilization!= null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy