![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VirtualMachineIdeDiskDevicePartitionInfo Maven / Gradle / Ivy
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 VirtualMachineIdeDiskDevicePartitionInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineIdeDiskDevicePartitionInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="capacity" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineIdeDiskDevicePartitionInfo", propOrder = {
"id",
"capacity"
})
public class VirtualMachineIdeDiskDevicePartitionInfo
extends DynamicData
{
protected int id;
protected int capacity;
/**
* Gets the value of the id property.
*
*/
public int getId() {
return id;
}
/**
* Sets the value of the id property.
*
*/
public void setId(int value) {
this.id = value;
}
/**
* Gets the value of the capacity property.
*
*/
public int getCapacity() {
return capacity;
}
/**
* Sets the value of the capacity property.
*
*/
public void setCapacity(int value) {
this.capacity = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy