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

com.vmware.vim25.SoftwarePackageCapability 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 SoftwarePackageCapability complex type. * *

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

 * <complexType name="SoftwarePackageCapability">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="liveInstallAllowed" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="liveRemoveAllowed" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="statelessReady" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="overlay" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SoftwarePackageCapability", propOrder = { "liveInstallAllowed", "liveRemoveAllowed", "statelessReady", "overlay" }) public class SoftwarePackageCapability extends DynamicData { protected Boolean liveInstallAllowed; protected Boolean liveRemoveAllowed; protected Boolean statelessReady; protected Boolean overlay; /** * Gets the value of the liveInstallAllowed property. * * @return * possible object is * {@link Boolean } * */ public Boolean isLiveInstallAllowed() { return liveInstallAllowed; } /** * Sets the value of the liveInstallAllowed property. * * @param value * allowed object is * {@link Boolean } * */ public void setLiveInstallAllowed(Boolean value) { this.liveInstallAllowed = value; } /** * Gets the value of the liveRemoveAllowed property. * * @return * possible object is * {@link Boolean } * */ public Boolean isLiveRemoveAllowed() { return liveRemoveAllowed; } /** * Sets the value of the liveRemoveAllowed property. * * @param value * allowed object is * {@link Boolean } * */ public void setLiveRemoveAllowed(Boolean value) { this.liveRemoveAllowed = value; } /** * Gets the value of the statelessReady property. * * @return * possible object is * {@link Boolean } * */ public Boolean isStatelessReady() { return statelessReady; } /** * Sets the value of the statelessReady property. * * @param value * allowed object is * {@link Boolean } * */ public void setStatelessReady(Boolean value) { this.statelessReady = value; } /** * Gets the value of the overlay property. * * @return * possible object is * {@link Boolean } * */ public Boolean isOverlay() { return overlay; } /** * Sets the value of the overlay property. * * @param value * allowed object is * {@link Boolean } * */ public void setOverlay(Boolean value) { this.overlay = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy