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

com.vmware.vim.Capability 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 Capability complex type. * *

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

 * <complexType name="Capability">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="provisioningSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="multiHostSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Capability", propOrder = { "provisioningSupported", "multiHostSupported" }) public class Capability extends DynamicData { protected boolean provisioningSupported; protected boolean multiHostSupported; /** * Gets the value of the provisioningSupported property. * */ public boolean isProvisioningSupported() { return provisioningSupported; } /** * Sets the value of the provisioningSupported property. * */ public void setProvisioningSupported(boolean value) { this.provisioningSupported = value; } /** * Gets the value of the multiHostSupported property. * */ public boolean isMultiHostSupported() { return multiHostSupported; } /** * Sets the value of the multiHostSupported property. * */ public void setMultiHostSupported(boolean value) { this.multiHostSupported = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy