![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VMwareUplinkPortOrderPolicy 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 VMwareUplinkPortOrderPolicy complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VMwareUplinkPortOrderPolicy">
* <complexContent>
* <extension base="{urn:vim25}InheritablePolicy">
* <sequence>
* <element name="activeUplinkPort" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="standbyUplinkPort" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VMwareUplinkPortOrderPolicy", propOrder = {
"activeUplinkPort",
"standbyUplinkPort"
})
public class VMwareUplinkPortOrderPolicy
extends InheritablePolicy
{
protected List activeUplinkPort;
protected List standbyUplinkPort;
/**
* Gets the value of the activeUplinkPort 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 activeUplinkPort property.
*
*
* For example, to add a new item, do as follows:
*
* getActiveUplinkPort().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getActiveUplinkPort() {
if (activeUplinkPort == null) {
activeUplinkPort = new ArrayList();
}
return this.activeUplinkPort;
}
/**
* Gets the value of the standbyUplinkPort 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 standbyUplinkPort property.
*
*
* For example, to add a new item, do as follows:
*
* getStandbyUplinkPort().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getStandbyUplinkPort() {
if (standbyUplinkPort == null) {
standbyUplinkPort = new ArrayList();
}
return this.standbyUplinkPort;
}
}