All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.VMwareDVSVspanCapability Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

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 VMwareDVSVspanCapability complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="VMwareDVSVspanCapability">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="mixedDestSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="dvportSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="remoteSourceSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="remoteDestSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="encapRemoteSourceSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="erspanProtocolSupported" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VMwareDVSVspanCapability", propOrder = { "mixedDestSupported", "dvportSupported", "remoteSourceSupported", "remoteDestSupported", "encapRemoteSourceSupported", "erspanProtocolSupported" }) public class VMwareDVSVspanCapability extends DynamicData { protected boolean mixedDestSupported; protected boolean dvportSupported; protected boolean remoteSourceSupported; protected boolean remoteDestSupported; protected boolean encapRemoteSourceSupported; protected Boolean erspanProtocolSupported; /** * Gets the value of the mixedDestSupported property. * */ public boolean isMixedDestSupported() { return mixedDestSupported; } /** * Sets the value of the mixedDestSupported property. * */ public void setMixedDestSupported(boolean value) { this.mixedDestSupported = value; } /** * Gets the value of the dvportSupported property. * */ public boolean isDvportSupported() { return dvportSupported; } /** * Sets the value of the dvportSupported property. * */ public void setDvportSupported(boolean value) { this.dvportSupported = value; } /** * Gets the value of the remoteSourceSupported property. * */ public boolean isRemoteSourceSupported() { return remoteSourceSupported; } /** * Sets the value of the remoteSourceSupported property. * */ public void setRemoteSourceSupported(boolean value) { this.remoteSourceSupported = value; } /** * Gets the value of the remoteDestSupported property. * */ public boolean isRemoteDestSupported() { return remoteDestSupported; } /** * Sets the value of the remoteDestSupported property. * */ public void setRemoteDestSupported(boolean value) { this.remoteDestSupported = value; } /** * Gets the value of the encapRemoteSourceSupported property. * */ public boolean isEncapRemoteSourceSupported() { return encapRemoteSourceSupported; } /** * Sets the value of the encapRemoteSourceSupported property. * */ public void setEncapRemoteSourceSupported(boolean value) { this.encapRemoteSourceSupported = value; } /** * Gets the value of the erspanProtocolSupported property. * * @return * possible object is * {@link Boolean } * */ public Boolean isErspanProtocolSupported() { return erspanProtocolSupported; } /** * Sets the value of the erspanProtocolSupported property. * * @param value * allowed object is * {@link Boolean } * */ public void setErspanProtocolSupported(Boolean value) { this.erspanProtocolSupported = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy