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

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

The newest version!

package com.vmware.vim;

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:vim2}DynamicData">
 *       <sequence>
 *         <element name="connectionState" type="{urn:vim2}HostSystemConnectionState"/>
 *         <element name="inMaintenanceMode" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="bootTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostRuntimeInfo", propOrder = { "connectionState", "inMaintenanceMode", "bootTime" }) public class HostRuntimeInfo extends DynamicData { @XmlElement(required = true) protected HostSystemConnectionState connectionState; protected boolean inMaintenanceMode; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar bootTime; /** * 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 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy