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

com.vmware.vim25.LatencySensitivity 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for LatencySensitivity complex type. * *

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

 * <complexType name="LatencySensitivity">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="level" type="{urn:vim25}LatencySensitivitySensitivityLevel"/>
 *         <element name="sensitivity" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LatencySensitivity", propOrder = { "level", "sensitivity" }) public class LatencySensitivity extends DynamicData { @XmlElement(required = true) @XmlSchemaType(name = "string") protected LatencySensitivitySensitivityLevel level; protected Integer sensitivity; /** * Gets the value of the level property. * * @return * possible object is * {@link LatencySensitivitySensitivityLevel } * */ public LatencySensitivitySensitivityLevel getLevel() { return level; } /** * Sets the value of the level property. * * @param value * allowed object is * {@link LatencySensitivitySensitivityLevel } * */ public void setLevel(LatencySensitivitySensitivityLevel value) { this.level = value; } /** * Gets the value of the sensitivity property. * * @return * possible object is * {@link Integer } * */ public Integer getSensitivity() { return sensitivity; } /** * Sets the value of the sensitivity property. * * @param value * allowed object is * {@link Integer } * */ public void setSensitivity(Integer value) { this.sensitivity = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy