com.vmware.vim25.HostVirtualSwitchBeaconConfig 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 HostVirtualSwitchBeaconConfig complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostVirtualSwitchBeaconConfig">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="interval" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostVirtualSwitchBeaconConfig", propOrder = {
"interval"
})
public class HostVirtualSwitchBeaconConfig
extends DynamicData
{
protected int interval;
/**
* Gets the value of the interval property.
*
*/
public int getInterval() {
return interval;
}
/**
* Sets the value of the interval property.
*
*/
public void setInterval(int value) {
this.interval = value;
}
}