com.redhat.rhevm.api.model.SchedulingPolicyThresholds 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: 2011.09.04 at 05:40:00 PM IDT
//
package com.redhat.rhevm.api.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for SchedulingPolicyThresholds complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SchedulingPolicyThresholds">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="low" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="high" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="duration" type="{http://www.w3.org/2001/XMLSchema}int" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SchedulingPolicyThresholds")
public class SchedulingPolicyThresholds {
@XmlAttribute
protected Integer low;
@XmlAttribute
protected Integer high;
@XmlAttribute
protected Integer duration;
/**
* Gets the value of the low property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public int getLow() {
return low;
}
/**
* Sets the value of the low property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setLow(int value) {
this.low = value;
}
public boolean isSetLow() {
return (this.low!= null);
}
public void unsetLow() {
this.low = null;
}
/**
* Gets the value of the high property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public int getHigh() {
return high;
}
/**
* Sets the value of the high property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setHigh(int value) {
this.high = value;
}
public boolean isSetHigh() {
return (this.high!= null);
}
public void unsetHigh() {
this.high = null;
}
/**
* Gets the value of the duration property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public int getDuration() {
return duration;
}
/**
* Sets the value of the duration property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDuration(int value) {
this.duration = value;
}
public boolean isSetDuration() {
return (this.duration!= null);
}
public void unsetDuration() {
this.duration = null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy