com.redhat.rhevm.api.model.VmPool 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.XmlType;
/**
* Java class for VmPool complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VmPool">
* <complexContent>
* <extension base="{}BaseResource">
* <sequence>
* <element name="size" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element ref="{}cluster" minOccurs="0"/>
* <element ref="{}template" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VmPool", propOrder = {
"size",
"cluster",
"template"
})
public class VmPool
extends BaseResource
{
protected Integer size;
protected Cluster cluster;
protected Template template;
/**
* Gets the value of the size property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getSize() {
return size;
}
/**
* Sets the value of the size property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setSize(Integer value) {
this.size = value;
}
public boolean isSetSize() {
return (this.size!= null);
}
/**
* Gets the value of the cluster property.
*
* @return
* possible object is
* {@link Cluster }
*
*/
public Cluster getCluster() {
return cluster;
}
/**
* Sets the value of the cluster property.
*
* @param value
* allowed object is
* {@link Cluster }
*
*/
public void setCluster(Cluster value) {
this.cluster = value;
}
public boolean isSetCluster() {
return (this.cluster!= null);
}
/**
* Gets the value of the template property.
*
* @return
* possible object is
* {@link Template }
*
*/
public Template getTemplate() {
return template;
}
/**
* Sets the value of the template property.
*
* @param value
* allowed object is
* {@link Template }
*
*/
public void setTemplate(Template value) {
this.template = value;
}
public boolean isSetTemplate() {
return (this.template!= null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy