
com.vmware.vim25.DistributedVirtualSwitchHostMemberPnicBacking Maven / Gradle / Ivy
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.XmlType;
/**
* Java class for DistributedVirtualSwitchHostMemberPnicBacking complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DistributedVirtualSwitchHostMemberPnicBacking">
* <complexContent>
* <extension base="{urn:vim25}DistributedVirtualSwitchHostMemberBacking">
* <sequence>
* <element name="pnicSpec" type="{urn:vim25}DistributedVirtualSwitchHostMemberPnicSpec" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DistributedVirtualSwitchHostMemberPnicBacking", propOrder = {
"pnicSpec"
})
public class DistributedVirtualSwitchHostMemberPnicBacking
extends DistributedVirtualSwitchHostMemberBacking
{
protected List pnicSpec;
/**
* Gets the value of the pnicSpec 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 pnicSpec property.
*
*
* For example, to add a new item, do as follows:
*
* getPnicSpec().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DistributedVirtualSwitchHostMemberPnicSpec }
*
*
*/
public List getPnicSpec() {
if (pnicSpec == null) {
pnicSpec = new ArrayList();
}
return this.pnicSpec;
}
}