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

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

There is a newer version: 0.6.60
Show 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 PerfProviderSummary complex type. * *

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

 * <complexType name="PerfProviderSummary">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="entity" type="{urn:vim25}ManagedObjectReference"/>
 *         <element name="currentSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="summarySupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="refreshRate" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PerfProviderSummary", propOrder = { "entity", "currentSupported", "summarySupported", "refreshRate" }) public class PerfProviderSummary extends DynamicData { @XmlElement(required = true) protected ManagedObjectReference entity; protected boolean currentSupported; protected boolean summarySupported; protected Integer refreshRate; /** * Gets the value of the entity property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getEntity() { return entity; } /** * Sets the value of the entity property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setEntity(ManagedObjectReference value) { this.entity = value; } /** * Gets the value of the currentSupported property. * */ public boolean isCurrentSupported() { return currentSupported; } /** * Sets the value of the currentSupported property. * */ public void setCurrentSupported(boolean value) { this.currentSupported = value; } /** * Gets the value of the summarySupported property. * */ public boolean isSummarySupported() { return summarySupported; } /** * Sets the value of the summarySupported property. * */ public void setSummarySupported(boolean value) { this.summarySupported = value; } /** * Gets the value of the refreshRate property. * * @return * possible object is * {@link Integer } * */ public Integer getRefreshRate() { return refreshRate; } /** * Sets the value of the refreshRate property. * * @param value * allowed object is * {@link Integer } * */ public void setRefreshRate(Integer value) { this.refreshRate = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy