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

com.vmware.vim.CpuIncompatible 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CpuIncompatible complex type. * *

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

 * <complexType name="CpuIncompatible">
 *   <complexContent>
 *     <extension base="{urn:vim2}VirtualHardwareCompatibilityIssue">
 *       <sequence>
 *         <element name="level" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="registerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CpuIncompatible", propOrder = { "level", "registerName" }) @XmlSeeAlso({ CpuCompatibilityUnknown.class }) public class CpuIncompatible extends VirtualHardwareCompatibilityIssue { protected int level; @XmlElement(required = true) protected String registerName; /** * Gets the value of the level property. * */ public int getLevel() { return level; } /** * Sets the value of the level property. * */ public void setLevel(int value) { this.level = value; } /** * Gets the value of the registerName property. * * @return * possible object is * {@link String } * */ public String getRegisterName() { return registerName; } /** * Sets the value of the registerName property. * * @param value * allowed object is * {@link String } * */ public void setRegisterName(String value) { this.registerName = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy