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

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


/**
 * 

Java class for NotEnoughCpus complex type. * *

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

 * <complexType name="NotEnoughCpus">
 *   <complexContent>
 *     <extension base="{urn:vim25}VirtualHardwareCompatibilityIssue">
 *       <sequence>
 *         <element name="numCpuDest" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="numCpuVm" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NotEnoughCpus", propOrder = { "numCpuDest", "numCpuVm" }) @XmlSeeAlso({ NotEnoughLogicalCpus.class }) public class NotEnoughCpus extends VirtualHardwareCompatibilityIssue { protected int numCpuDest; protected int numCpuVm; /** * Gets the value of the numCpuDest property. * */ public int getNumCpuDest() { return numCpuDest; } /** * Sets the value of the numCpuDest property. * */ public void setNumCpuDest(int value) { this.numCpuDest = value; } /** * Gets the value of the numCpuVm property. * */ public int getNumCpuVm() { return numCpuVm; } /** * Sets the value of the numCpuVm property. * */ public void setNumCpuVm(int value) { this.numCpuVm = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy