com.vmware.vim25.DVSCreateSpec Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for DVSCreateSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DVSCreateSpec">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="configSpec" type="{urn:vim25}DVSConfigSpec"/>
* <element name="productInfo" type="{urn:vim25}DistributedVirtualSwitchProductSpec" minOccurs="0"/>
* <element name="capability" type="{urn:vim25}DVSCapability" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DVSCreateSpec", propOrder = {
"configSpec",
"productInfo",
"capability"
})
public class DVSCreateSpec
extends DynamicData
{
@XmlElement(required = true)
protected DVSConfigSpec configSpec;
protected DistributedVirtualSwitchProductSpec productInfo;
protected DVSCapability capability;
/**
* Gets the value of the configSpec property.
*
* @return
* possible object is
* {@link DVSConfigSpec }
*
*/
public DVSConfigSpec getConfigSpec() {
return configSpec;
}
/**
* Sets the value of the configSpec property.
*
* @param value
* allowed object is
* {@link DVSConfigSpec }
*
*/
public void setConfigSpec(DVSConfigSpec value) {
this.configSpec = value;
}
/**
* Gets the value of the productInfo property.
*
* @return
* possible object is
* {@link DistributedVirtualSwitchProductSpec }
*
*/
public DistributedVirtualSwitchProductSpec getProductInfo() {
return productInfo;
}
/**
* Sets the value of the productInfo property.
*
* @param value
* allowed object is
* {@link DistributedVirtualSwitchProductSpec }
*
*/
public void setProductInfo(DistributedVirtualSwitchProductSpec value) {
this.productInfo = value;
}
/**
* Gets the value of the capability property.
*
* @return
* possible object is
* {@link DVSCapability }
*
*/
public DVSCapability getCapability() {
return capability;
}
/**
* Sets the value of the capability property.
*
* @param value
* allowed object is
* {@link DVSCapability }
*
*/
public void setCapability(DVSCapability value) {
this.capability = value;
}
}