com.vmware.vim25.UnlicensedVirtualMachinesFoundEvent Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for UnlicensedVirtualMachinesFoundEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="UnlicensedVirtualMachinesFoundEvent">
* <complexContent>
* <extension base="{urn:vim25}LicenseEvent">
* <sequence>
* <element name="available" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UnlicensedVirtualMachinesFoundEvent", propOrder = {
"available"
})
public class UnlicensedVirtualMachinesFoundEvent
extends LicenseEvent
{
protected int available;
/**
* Gets the value of the available property.
*
*/
public int getAvailable() {
return available;
}
/**
* Sets the value of the available property.
*
*/
public void setAvailable(int value) {
this.available = value;
}
}