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

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

The newest version!

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for PowerSystemInfo complex type. * *

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

 * <complexType name="PowerSystemInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="currentPolicy" type="{urn:vim25}HostPowerPolicy"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PowerSystemInfo", propOrder = { "currentPolicy" }) public class PowerSystemInfo extends DynamicData { @XmlElement(required = true) protected HostPowerPolicy currentPolicy; /** * Gets the value of the currentPolicy property. * * @return * possible object is * {@link HostPowerPolicy } * */ public HostPowerPolicy getCurrentPolicy() { return currentPolicy; } /** * Sets the value of the currentPolicy property. * * @param value * allowed object is * {@link HostPowerPolicy } * */ public void setCurrentPolicy(HostPowerPolicy value) { this.currentPolicy = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy