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

com.vmware.vim.ToolsConfigInfo 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.XmlType;


/**
 * 

Java class for ToolsConfigInfo complex type. * *

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

 * <complexType name="ToolsConfigInfo">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="toolsVersion" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="afterPowerOn" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="afterResume" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="beforeGuestStandby" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="beforeGuestShutdown" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="beforeGuestReboot" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ToolsConfigInfo", propOrder = { "toolsVersion", "afterPowerOn", "afterResume", "beforeGuestStandby", "beforeGuestShutdown", "beforeGuestReboot" }) public class ToolsConfigInfo extends DynamicData { protected Integer toolsVersion; protected Boolean afterPowerOn; protected Boolean afterResume; protected Boolean beforeGuestStandby; protected Boolean beforeGuestShutdown; protected Boolean beforeGuestReboot; /** * Gets the value of the toolsVersion property. * * @return * possible object is * {@link Integer } * */ public Integer getToolsVersion() { return toolsVersion; } /** * Sets the value of the toolsVersion property. * * @param value * allowed object is * {@link Integer } * */ public void setToolsVersion(Integer value) { this.toolsVersion = value; } /** * Gets the value of the afterPowerOn property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAfterPowerOn() { return afterPowerOn; } /** * Sets the value of the afterPowerOn property. * * @param value * allowed object is * {@link Boolean } * */ public void setAfterPowerOn(Boolean value) { this.afterPowerOn = value; } /** * Gets the value of the afterResume property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAfterResume() { return afterResume; } /** * Sets the value of the afterResume property. * * @param value * allowed object is * {@link Boolean } * */ public void setAfterResume(Boolean value) { this.afterResume = value; } /** * Gets the value of the beforeGuestStandby property. * * @return * possible object is * {@link Boolean } * */ public Boolean isBeforeGuestStandby() { return beforeGuestStandby; } /** * Sets the value of the beforeGuestStandby property. * * @param value * allowed object is * {@link Boolean } * */ public void setBeforeGuestStandby(Boolean value) { this.beforeGuestStandby = value; } /** * Gets the value of the beforeGuestShutdown property. * * @return * possible object is * {@link Boolean } * */ public Boolean isBeforeGuestShutdown() { return beforeGuestShutdown; } /** * Sets the value of the beforeGuestShutdown property. * * @param value * allowed object is * {@link Boolean } * */ public void setBeforeGuestShutdown(Boolean value) { this.beforeGuestShutdown = value; } /** * Gets the value of the beforeGuestReboot property. * * @return * possible object is * {@link Boolean } * */ public Boolean isBeforeGuestReboot() { return beforeGuestReboot; } /** * Sets the value of the beforeGuestReboot property. * * @param value * allowed object is * {@link Boolean } * */ public void setBeforeGuestReboot(Boolean value) { this.beforeGuestReboot = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy