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

com.vmware.vim.ServiceConsoleReservationInfo Maven / Gradle / Ivy

The newest version!

package com.vmware.vim;

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:vim2}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