![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VMwareDVSMtuHealthCheckResult 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 VMwareDVSMtuHealthCheckResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VMwareDVSMtuHealthCheckResult">
* <complexContent>
* <extension base="{urn:vim25}HostMemberUplinkHealthCheckResult">
* <sequence>
* <element name="mtuMismatch" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="vlanSupportSwitchMtu" type="{urn:vim25}NumericRange" maxOccurs="unbounded" minOccurs="0"/>
* <element name="vlanNotSupportSwitchMtu" type="{urn:vim25}NumericRange" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VMwareDVSMtuHealthCheckResult", propOrder = {
"mtuMismatch",
"vlanSupportSwitchMtu",
"vlanNotSupportSwitchMtu"
})
public class VMwareDVSMtuHealthCheckResult
extends HostMemberUplinkHealthCheckResult
{
protected boolean mtuMismatch;
protected List vlanSupportSwitchMtu;
protected List vlanNotSupportSwitchMtu;
/**
* Gets the value of the mtuMismatch property.
*
*/
public boolean isMtuMismatch() {
return mtuMismatch;
}
/**
* Sets the value of the mtuMismatch property.
*
*/
public void setMtuMismatch(boolean value) {
this.mtuMismatch = value;
}
/**
* Gets the value of the vlanSupportSwitchMtu 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 vlanSupportSwitchMtu property.
*
*
* For example, to add a new item, do as follows:
*
* getVlanSupportSwitchMtu().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NumericRange }
*
*
*/
public List getVlanSupportSwitchMtu() {
if (vlanSupportSwitchMtu == null) {
vlanSupportSwitchMtu = new ArrayList();
}
return this.vlanSupportSwitchMtu;
}
/**
* Gets the value of the vlanNotSupportSwitchMtu 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 vlanNotSupportSwitchMtu property.
*
*
* For example, to add a new item, do as follows:
*
* getVlanNotSupportSwitchMtu().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NumericRange }
*
*
*/
public List getVlanNotSupportSwitchMtu() {
if (vlanNotSupportSwitchMtu == null) {
vlanNotSupportSwitchMtu = new ArrayList();
}
return this.vlanNotSupportSwitchMtu;
}
}