com.vmware.vim25.FcoeConfigVlanRange 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 FcoeConfigVlanRange complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FcoeConfigVlanRange">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="vlanLow" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="vlanHigh" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FcoeConfigVlanRange", propOrder = {
"vlanLow",
"vlanHigh"
})
public class FcoeConfigVlanRange
extends DynamicData
{
protected int vlanLow;
protected int vlanHigh;
/**
* Gets the value of the vlanLow property.
*
*/
public int getVlanLow() {
return vlanLow;
}
/**
* Sets the value of the vlanLow property.
*
*/
public void setVlanLow(int value) {
this.vlanLow = value;
}
/**
* Gets the value of the vlanHigh property.
*
*/
public int getVlanHigh() {
return vlanHigh;
}
/**
* Sets the value of the vlanHigh property.
*
*/
public void setVlanHigh(int value) {
this.vlanHigh = value;
}
}