
com.vmware.vim25.DiskChangeExtent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The 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 DiskChangeExtent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DiskChangeExtent">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="start" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="length" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DiskChangeExtent", propOrder = {
"start",
"length"
})
public class DiskChangeExtent
extends DynamicData
{
protected long start;
protected long length;
/**
* Gets the value of the start property.
*
*/
public long getStart() {
return start;
}
/**
* Sets the value of the start property.
*
*/
public void setStart(long value) {
this.start = value;
}
/**
* Gets the value of the length property.
*
*/
public long getLength() {
return length;
}
/**
* Sets the value of the length property.
*
*/
public void setLength(long value) {
this.length = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy