![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.pbm.PbmCapabilityRange Maven / Gradle / Ivy
package com.vmware.pbm;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.vmware.vim25.DynamicData;
/**
* Java class for PbmCapabilityRange complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PbmCapabilityRange">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="min" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
* <element name="max" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PbmCapabilityRange", propOrder = {
"min",
"max"
})
public class PbmCapabilityRange
extends DynamicData
{
@XmlElement(required = true)
protected Object min;
@XmlElement(required = true)
protected Object max;
/**
* Gets the value of the min property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getMin() {
return min;
}
/**
* Sets the value of the min property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setMin(Object value) {
this.min = value;
}
/**
* Gets the value of the max property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getMax() {
return max;
}
/**
* Sets the value of the max property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setMax(Object value) {
this.max = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy