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

com.vmware.vim25.MemorySizeNotSupported 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.XmlType;


/**
 * 

Java class for MemorySizeNotSupported complex type. * *

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

 * <complexType name="MemorySizeNotSupported">
 *   <complexContent>
 *     <extension base="{urn:vim25}VirtualHardwareCompatibilityIssue">
 *       <sequence>
 *         <element name="memorySizeMB" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="minMemorySizeMB" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="maxMemorySizeMB" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MemorySizeNotSupported", propOrder = { "memorySizeMB", "minMemorySizeMB", "maxMemorySizeMB" }) public class MemorySizeNotSupported extends VirtualHardwareCompatibilityIssue { protected int memorySizeMB; protected int minMemorySizeMB; protected int maxMemorySizeMB; /** * Gets the value of the memorySizeMB property. * */ public int getMemorySizeMB() { return memorySizeMB; } /** * Sets the value of the memorySizeMB property. * */ public void setMemorySizeMB(int value) { this.memorySizeMB = value; } /** * Gets the value of the minMemorySizeMB property. * */ public int getMinMemorySizeMB() { return minMemorySizeMB; } /** * Sets the value of the minMemorySizeMB property. * */ public void setMinMemorySizeMB(int value) { this.minMemorySizeMB = value; } /** * Gets the value of the maxMemorySizeMB property. * */ public int getMaxMemorySizeMB() { return maxMemorySizeMB; } /** * Sets the value of the maxMemorySizeMB property. * */ public void setMaxMemorySizeMB(int value) { this.maxMemorySizeMB = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy