com.vmware.vim25.FcoeConfigFcoeCapabilities 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 FcoeConfigFcoeCapabilities complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FcoeConfigFcoeCapabilities">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="priorityClass" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="sourceMacAddress" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="vlanRange" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FcoeConfigFcoeCapabilities", propOrder = {
"priorityClass",
"sourceMacAddress",
"vlanRange"
})
public class FcoeConfigFcoeCapabilities
extends DynamicData
{
protected boolean priorityClass;
protected boolean sourceMacAddress;
protected boolean vlanRange;
/**
* Gets the value of the priorityClass property.
*
*/
public boolean isPriorityClass() {
return priorityClass;
}
/**
* Sets the value of the priorityClass property.
*
*/
public void setPriorityClass(boolean value) {
this.priorityClass = value;
}
/**
* Gets the value of the sourceMacAddress property.
*
*/
public boolean isSourceMacAddress() {
return sourceMacAddress;
}
/**
* Sets the value of the sourceMacAddress property.
*
*/
public void setSourceMacAddress(boolean value) {
this.sourceMacAddress = value;
}
/**
* Gets the value of the vlanRange property.
*
*/
public boolean isVlanRange() {
return vlanRange;
}
/**
* Sets the value of the vlanRange property.
*
*/
public void setVlanRange(boolean value) {
this.vlanRange = value;
}
}