com.vmware.vim25.VMwareDVSConfigInfo 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 VMwareDVSConfigInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VMwareDVSConfigInfo">
* <complexContent>
* <extension base="{urn:vim25}DVSConfigInfo">
* <sequence>
* <element name="vspanSession" type="{urn:vim25}VMwareVspanSession" maxOccurs="unbounded" minOccurs="0"/>
* <element name="pvlanConfig" type="{urn:vim25}VMwareDVSPvlanMapEntry" maxOccurs="unbounded" minOccurs="0"/>
* <element name="maxMtu" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="linkDiscoveryProtocolConfig" type="{urn:vim25}LinkDiscoveryProtocolConfig" minOccurs="0"/>
* <element name="ipfixConfig" type="{urn:vim25}VMwareIpfixConfig" minOccurs="0"/>
* <element name="lacpGroupConfig" type="{urn:vim25}VMwareDvsLacpGroupConfig" maxOccurs="unbounded" 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 = "VMwareDVSConfigInfo", propOrder = {
"vspanSession",
"pvlanConfig",
"maxMtu",
"linkDiscoveryProtocolConfig",
"ipfixConfig",
"lacpGroupConfig",
"lacpApiVersion",
"multicastFilteringMode"
})
public class VMwareDVSConfigInfo
extends DVSConfigInfo
{
protected List vspanSession;
protected List pvlanConfig;
protected int maxMtu;
protected LinkDiscoveryProtocolConfig linkDiscoveryProtocolConfig;
protected VMwareIpfixConfig ipfixConfig;
protected List lacpGroupConfig;
protected String lacpApiVersion;
protected String multicastFilteringMode;
/**
* Gets the value of the vspanSession 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 vspanSession property.
*
*
* For example, to add a new item, do as follows:
*
* getVspanSession().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VMwareVspanSession }
*
*
*/
public List getVspanSession() {
if (vspanSession == null) {
vspanSession = new ArrayList();
}
return this.vspanSession;
}
/**
* Gets the value of the pvlanConfig 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 pvlanConfig property.
*
*
* For example, to add a new item, do as follows:
*
* getPvlanConfig().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VMwareDVSPvlanMapEntry }
*
*
*/
public List getPvlanConfig() {
if (pvlanConfig == null) {
pvlanConfig = new ArrayList();
}
return this.pvlanConfig;
}
/**
* Gets the value of the maxMtu property.
*
*/
public int getMaxMtu() {
return maxMtu;
}
/**
* Sets the value of the maxMtu property.
*
*/
public void setMaxMtu(int 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 lacpGroupConfig 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 lacpGroupConfig property.
*
*
* For example, to add a new item, do as follows:
*
* getLacpGroupConfig().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VMwareDvsLacpGroupConfig }
*
*
*/
public List getLacpGroupConfig() {
if (lacpGroupConfig == null) {
lacpGroupConfig = new ArrayList();
}
return this.lacpGroupConfig;
}
/**
* 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;
}
}