
com.vmware.vim25.ServiceConsoleReservationInfo 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 ServiceConsoleReservationInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ServiceConsoleReservationInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="serviceConsoleReservedCfg" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="serviceConsoleReserved" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="unreserved" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ServiceConsoleReservationInfo", propOrder = {
"serviceConsoleReservedCfg",
"serviceConsoleReserved",
"unreserved"
})
public class ServiceConsoleReservationInfo
extends DynamicData
{
protected long serviceConsoleReservedCfg;
protected long serviceConsoleReserved;
protected long unreserved;
/**
* Gets the value of the serviceConsoleReservedCfg property.
*
*/
public long getServiceConsoleReservedCfg() {
return serviceConsoleReservedCfg;
}
/**
* Sets the value of the serviceConsoleReservedCfg property.
*
*/
public void setServiceConsoleReservedCfg(long value) {
this.serviceConsoleReservedCfg = value;
}
/**
* Gets the value of the serviceConsoleReserved property.
*
*/
public long getServiceConsoleReserved() {
return serviceConsoleReserved;
}
/**
* Sets the value of the serviceConsoleReserved property.
*
*/
public void setServiceConsoleReserved(long value) {
this.serviceConsoleReserved = value;
}
/**
* Gets the value of the unreserved property.
*
*/
public long getUnreserved() {
return unreserved;
}
/**
* Sets the value of the unreserved property.
*
*/
public void setUnreserved(long value) {
this.unreserved = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy