![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.PhysicalNicHint Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for PhysicalNicHint complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PhysicalNicHint">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="vlanId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PhysicalNicHint", propOrder = {
"vlanId"
})
@XmlSeeAlso({
PhysicalNicIpHint.class,
PhysicalNicNameHint.class
})
public class PhysicalNicHint
extends DynamicData
{
protected Integer vlanId;
/**
* Gets the value of the vlanId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getVlanId() {
return vlanId;
}
/**
* Sets the value of the vlanId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setVlanId(Integer value) {
this.vlanId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy