
com.vmware.vim25.VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState 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 VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState">
* <complexContent>
* <extension base="{urn:vim25}VirtualMachineDeviceRuntimeInfoDeviceRuntimeState">
* <sequence>
* <element name="vmDirectPathGen2Active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="vmDirectPathGen2InactiveReasonVm" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="vmDirectPathGen2InactiveReasonOther" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="vmDirectPathGen2InactiveReasonExtended" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="reservationStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState", propOrder = {
"vmDirectPathGen2Active",
"vmDirectPathGen2InactiveReasonVm",
"vmDirectPathGen2InactiveReasonOther",
"vmDirectPathGen2InactiveReasonExtended",
"reservationStatus"
})
public class VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState
extends VirtualMachineDeviceRuntimeInfoDeviceRuntimeState
{
protected boolean vmDirectPathGen2Active;
protected List vmDirectPathGen2InactiveReasonVm;
protected List vmDirectPathGen2InactiveReasonOther;
protected String vmDirectPathGen2InactiveReasonExtended;
protected String reservationStatus;
/**
* Gets the value of the vmDirectPathGen2Active property.
*
*/
public boolean isVmDirectPathGen2Active() {
return vmDirectPathGen2Active;
}
/**
* Sets the value of the vmDirectPathGen2Active property.
*
*/
public void setVmDirectPathGen2Active(boolean value) {
this.vmDirectPathGen2Active = value;
}
/**
* Gets the value of the vmDirectPathGen2InactiveReasonVm 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 vmDirectPathGen2InactiveReasonVm property.
*
*
* For example, to add a new item, do as follows:
*
* getVmDirectPathGen2InactiveReasonVm().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getVmDirectPathGen2InactiveReasonVm() {
if (vmDirectPathGen2InactiveReasonVm == null) {
vmDirectPathGen2InactiveReasonVm = new ArrayList();
}
return this.vmDirectPathGen2InactiveReasonVm;
}
/**
* Gets the value of the vmDirectPathGen2InactiveReasonOther 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 vmDirectPathGen2InactiveReasonOther property.
*
*
* For example, to add a new item, do as follows:
*
* getVmDirectPathGen2InactiveReasonOther().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getVmDirectPathGen2InactiveReasonOther() {
if (vmDirectPathGen2InactiveReasonOther == null) {
vmDirectPathGen2InactiveReasonOther = new ArrayList();
}
return this.vmDirectPathGen2InactiveReasonOther;
}
/**
* Gets the value of the vmDirectPathGen2InactiveReasonExtended property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVmDirectPathGen2InactiveReasonExtended() {
return vmDirectPathGen2InactiveReasonExtended;
}
/**
* Sets the value of the vmDirectPathGen2InactiveReasonExtended property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVmDirectPathGen2InactiveReasonExtended(String value) {
this.vmDirectPathGen2InactiveReasonExtended = value;
}
/**
* Gets the value of the reservationStatus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReservationStatus() {
return reservationStatus;
}
/**
* Sets the value of the reservationStatus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReservationStatus(String value) {
this.reservationStatus = value;
}
}