![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VMwareDvsLagIpfixConfig 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 VMwareDvsLagIpfixConfig complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VMwareDvsLagIpfixConfig">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="ipfixEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VMwareDvsLagIpfixConfig", propOrder = {
"ipfixEnabled"
})
public class VMwareDvsLagIpfixConfig
extends DynamicData
{
protected Boolean ipfixEnabled;
/**
* Gets the value of the ipfixEnabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIpfixEnabled() {
return ipfixEnabled;
}
/**
* Sets the value of the ipfixEnabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIpfixEnabled(Boolean value) {
this.ipfixEnabled = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy