![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VMwareDVSConfigSpec Maven / Gradle / Ivy
package com.vmware.vim25;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for VMwareDVSConfigSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VMwareDVSConfigSpec">
* <complexContent>
* <extension base="{urn:vim25}DVSConfigSpec">
* <sequence>
* <element name="pvlanConfigSpec" type="{urn:vim25}VMwareDVSPvlanConfigSpec" maxOccurs="unbounded" minOccurs="0"/>
* <element name="vspanConfigSpec" type="{urn:vim25}VMwareDVSVspanConfigSpec" maxOccurs="unbounded" minOccurs="0"/>
* <element name="maxMtu" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="linkDiscoveryProtocolConfig" type="{urn:vim25}LinkDiscoveryProtocolConfig" minOccurs="0"/>
* <element name="ipfixConfig" type="{urn:vim25}VMwareIpfixConfig" minOccurs="0"/>
* <element name="lacpApiVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="multicastFilteringMode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VMwareDVSConfigSpec", propOrder = {
"pvlanConfigSpec",
"vspanConfigSpec",
"maxMtu",
"linkDiscoveryProtocolConfig",
"ipfixConfig",
"lacpApiVersion",
"multicastFilteringMode"
})
public class VMwareDVSConfigSpec
extends DVSConfigSpec
{
protected List pvlanConfigSpec;
protected List vspanConfigSpec;
protected Integer maxMtu;
protected LinkDiscoveryProtocolConfig linkDiscoveryProtocolConfig;
protected VMwareIpfixConfig ipfixConfig;
protected String lacpApiVersion;
protected String multicastFilteringMode;
/**
* Gets the value of the pvlanConfigSpec property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the pvlanConfigSpec property.
*
*
* For example, to add a new item, do as follows:
*
* getPvlanConfigSpec().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VMwareDVSPvlanConfigSpec }
*
*
*/
public List getPvlanConfigSpec() {
if (pvlanConfigSpec == null) {
pvlanConfigSpec = new ArrayList();
}
return this.pvlanConfigSpec;
}
/**
* Gets the value of the vspanConfigSpec property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the vspanConfigSpec property.
*
*
* For example, to add a new item, do as follows:
*
* getVspanConfigSpec().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VMwareDVSVspanConfigSpec }
*
*
*/
public List getVspanConfigSpec() {
if (vspanConfigSpec == null) {
vspanConfigSpec = new ArrayList();
}
return this.vspanConfigSpec;
}
/**
* Gets the value of the maxMtu property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMaxMtu() {
return maxMtu;
}
/**
* Sets the value of the maxMtu property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMaxMtu(Integer value) {
this.maxMtu = value;
}
/**
* Gets the value of the linkDiscoveryProtocolConfig property.
*
* @return
* possible object is
* {@link LinkDiscoveryProtocolConfig }
*
*/
public LinkDiscoveryProtocolConfig getLinkDiscoveryProtocolConfig() {
return linkDiscoveryProtocolConfig;
}
/**
* Sets the value of the linkDiscoveryProtocolConfig property.
*
* @param value
* allowed object is
* {@link LinkDiscoveryProtocolConfig }
*
*/
public void setLinkDiscoveryProtocolConfig(LinkDiscoveryProtocolConfig value) {
this.linkDiscoveryProtocolConfig = value;
}
/**
* Gets the value of the ipfixConfig property.
*
* @return
* possible object is
* {@link VMwareIpfixConfig }
*
*/
public VMwareIpfixConfig getIpfixConfig() {
return ipfixConfig;
}
/**
* Sets the value of the ipfixConfig property.
*
* @param value
* allowed object is
* {@link VMwareIpfixConfig }
*
*/
public void setIpfixConfig(VMwareIpfixConfig value) {
this.ipfixConfig = value;
}
/**
* Gets the value of the lacpApiVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLacpApiVersion() {
return lacpApiVersion;
}
/**
* Sets the value of the lacpApiVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLacpApiVersion(String value) {
this.lacpApiVersion = value;
}
/**
* Gets the value of the multicastFilteringMode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMulticastFilteringMode() {
return multicastFilteringMode;
}
/**
* Sets the value of the multicastFilteringMode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMulticastFilteringMode(String value) {
this.multicastFilteringMode = value;
}
}