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

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

The newest version!

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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for HostRuntimeInfo complex type. * *

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

 * <complexType name="HostRuntimeInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="connectionState" type="{urn:vim25}HostSystemConnectionState"/>
 *         <element name="powerState" type="{urn:vim25}HostSystemPowerState"/>
 *         <element name="inMaintenanceMode" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="bootTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="healthSystemRuntime" type="{urn:vim25}HealthSystemRuntime" minOccurs="0"/>
 *         <element name="tpmPcrValues" type="{urn:vim25}HostTpmDigestInfo" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostRuntimeInfo", propOrder = { "connectionState", "powerState", "inMaintenanceMode", "bootTime", "healthSystemRuntime", "tpmPcrValues" }) public class HostRuntimeInfo extends DynamicData { @XmlElement(required = true) protected HostSystemConnectionState connectionState; @XmlElement(required = true) protected HostSystemPowerState powerState; protected boolean inMaintenanceMode; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar bootTime; protected HealthSystemRuntime healthSystemRuntime; protected List tpmPcrValues; /** * Gets the value of the connectionState property. * * @return * possible object is * {@link HostSystemConnectionState } * */ public HostSystemConnectionState getConnectionState() { return connectionState; } /** * Sets the value of the connectionState property. * * @param value * allowed object is * {@link HostSystemConnectionState } * */ public void setConnectionState(HostSystemConnectionState value) { this.connectionState = value; } /** * Gets the value of the powerState property. * * @return * possible object is * {@link HostSystemPowerState } * */ public HostSystemPowerState getPowerState() { return powerState; } /** * Sets the value of the powerState property. * * @param value * allowed object is * {@link HostSystemPowerState } * */ public void setPowerState(HostSystemPowerState value) { this.powerState = value; } /** * Gets the value of the inMaintenanceMode property. * */ public boolean isInMaintenanceMode() { return inMaintenanceMode; } /** * Sets the value of the inMaintenanceMode property. * */ public void setInMaintenanceMode(boolean value) { this.inMaintenanceMode = value; } /** * Gets the value of the bootTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getBootTime() { return bootTime; } /** * Sets the value of the bootTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setBootTime(XMLGregorianCalendar value) { this.bootTime = value; } /** * Gets the value of the healthSystemRuntime property. * * @return * possible object is * {@link HealthSystemRuntime } * */ public HealthSystemRuntime getHealthSystemRuntime() { return healthSystemRuntime; } /** * Sets the value of the healthSystemRuntime property. * * @param value * allowed object is * {@link HealthSystemRuntime } * */ public void setHealthSystemRuntime(HealthSystemRuntime value) { this.healthSystemRuntime = value; } /** * Gets the value of the tpmPcrValues 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 tpmPcrValues property. * *

* For example, to add a new item, do as follows: *

     *    getTpmPcrValues().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link HostTpmDigestInfo } * * */ public List getTpmPcrValues() { if (tpmPcrValues == null) { tpmPcrValues = new ArrayList(); } return this.tpmPcrValues; } /** * Sets the value of the tpmPcrValues property. * * @param tpmPcrValues * allowed object is * {@link HostTpmDigestInfo } * */ public void setTpmPcrValues(List tpmPcrValues) { this.tpmPcrValues = tpmPcrValues; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy