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

com.vmware.vim25.DVSFeatureCapability Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for DVSFeatureCapability complex type. * *

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

 * <complexType name="DVSFeatureCapability">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="networkResourceManagementSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="vmDirectPathGen2Supported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="nicTeamingPolicy" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="networkResourcePoolHighShareValue" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="networkResourceManagementCapability" type="{urn:vim25}DVSNetworkResourceManagementCapability" minOccurs="0"/>
 *         <element name="healthCheckCapability" type="{urn:vim25}DVSHealthCheckCapability" minOccurs="0"/>
 *         <element name="rollbackCapability" type="{urn:vim25}DVSRollbackCapability" minOccurs="0"/>
 *         <element name="backupRestoreCapability" type="{urn:vim25}DVSBackupRestoreCapability" minOccurs="0"/>
 *         <element name="networkFilterSupported" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DVSFeatureCapability", propOrder = { "networkResourceManagementSupported", "vmDirectPathGen2Supported", "nicTeamingPolicy", "networkResourcePoolHighShareValue", "networkResourceManagementCapability", "healthCheckCapability", "rollbackCapability", "backupRestoreCapability", "networkFilterSupported" }) @XmlSeeAlso({ VMwareDVSFeatureCapability.class }) public class DVSFeatureCapability extends DynamicData { protected boolean networkResourceManagementSupported; protected boolean vmDirectPathGen2Supported; protected List nicTeamingPolicy; protected Integer networkResourcePoolHighShareValue; protected DVSNetworkResourceManagementCapability networkResourceManagementCapability; protected DVSHealthCheckCapability healthCheckCapability; protected DVSRollbackCapability rollbackCapability; protected DVSBackupRestoreCapability backupRestoreCapability; protected Boolean networkFilterSupported; /** * Gets the value of the networkResourceManagementSupported property. * */ public boolean isNetworkResourceManagementSupported() { return networkResourceManagementSupported; } /** * Sets the value of the networkResourceManagementSupported property. * */ public void setNetworkResourceManagementSupported(boolean value) { this.networkResourceManagementSupported = value; } /** * Gets the value of the vmDirectPathGen2Supported property. * */ public boolean isVmDirectPathGen2Supported() { return vmDirectPathGen2Supported; } /** * Sets the value of the vmDirectPathGen2Supported property. * */ public void setVmDirectPathGen2Supported(boolean value) { this.vmDirectPathGen2Supported = value; } /** * Gets the value of the nicTeamingPolicy property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the nicTeamingPolicy property. * *

* For example, to add a new item, do as follows: *

     *    getNicTeamingPolicy().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getNicTeamingPolicy() { if (nicTeamingPolicy == null) { nicTeamingPolicy = new ArrayList(); } return this.nicTeamingPolicy; } /** * Gets the value of the networkResourcePoolHighShareValue property. * * @return * possible object is * {@link Integer } * */ public Integer getNetworkResourcePoolHighShareValue() { return networkResourcePoolHighShareValue; } /** * Sets the value of the networkResourcePoolHighShareValue property. * * @param value * allowed object is * {@link Integer } * */ public void setNetworkResourcePoolHighShareValue(Integer value) { this.networkResourcePoolHighShareValue = value; } /** * Gets the value of the networkResourceManagementCapability property. * * @return * possible object is * {@link DVSNetworkResourceManagementCapability } * */ public DVSNetworkResourceManagementCapability getNetworkResourceManagementCapability() { return networkResourceManagementCapability; } /** * Sets the value of the networkResourceManagementCapability property. * * @param value * allowed object is * {@link DVSNetworkResourceManagementCapability } * */ public void setNetworkResourceManagementCapability(DVSNetworkResourceManagementCapability value) { this.networkResourceManagementCapability = value; } /** * Gets the value of the healthCheckCapability property. * * @return * possible object is * {@link DVSHealthCheckCapability } * */ public DVSHealthCheckCapability getHealthCheckCapability() { return healthCheckCapability; } /** * Sets the value of the healthCheckCapability property. * * @param value * allowed object is * {@link DVSHealthCheckCapability } * */ public void setHealthCheckCapability(DVSHealthCheckCapability value) { this.healthCheckCapability = value; } /** * Gets the value of the rollbackCapability property. * * @return * possible object is * {@link DVSRollbackCapability } * */ public DVSRollbackCapability getRollbackCapability() { return rollbackCapability; } /** * Sets the value of the rollbackCapability property. * * @param value * allowed object is * {@link DVSRollbackCapability } * */ public void setRollbackCapability(DVSRollbackCapability value) { this.rollbackCapability = value; } /** * Gets the value of the backupRestoreCapability property. * * @return * possible object is * {@link DVSBackupRestoreCapability } * */ public DVSBackupRestoreCapability getBackupRestoreCapability() { return backupRestoreCapability; } /** * Sets the value of the backupRestoreCapability property. * * @param value * allowed object is * {@link DVSBackupRestoreCapability } * */ public void setBackupRestoreCapability(DVSBackupRestoreCapability value) { this.backupRestoreCapability = value; } /** * Gets the value of the networkFilterSupported property. * * @return * possible object is * {@link Boolean } * */ public Boolean isNetworkFilterSupported() { return networkFilterSupported; } /** * Sets the value of the networkFilterSupported property. * * @param value * allowed object is * {@link Boolean } * */ public void setNetworkFilterSupported(Boolean value) { this.networkFilterSupported = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy