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

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

The 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for DistributedVirtualSwitchHostMember complex type. * *

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

 * <complexType name="DistributedVirtualSwitchHostMember">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="config" type="{urn:vim25}DistributedVirtualSwitchHostMemberConfigInfo"/>
 *         <element name="productInfo" type="{urn:vim25}DistributedVirtualSwitchProductSpec" minOccurs="0"/>
 *         <element name="uplinkPortKey" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DistributedVirtualSwitchHostMember", propOrder = { "config", "productInfo", "uplinkPortKey", "status" }) public class DistributedVirtualSwitchHostMember extends DynamicData { @XmlElement(required = true) protected DistributedVirtualSwitchHostMemberConfigInfo config; protected DistributedVirtualSwitchProductSpec productInfo; protected List uplinkPortKey; @XmlElement(required = true) protected String status; /** * Gets the value of the config property. * * @return * possible object is * {@link DistributedVirtualSwitchHostMemberConfigInfo } * */ public DistributedVirtualSwitchHostMemberConfigInfo getConfig() { return config; } /** * Sets the value of the config property. * * @param value * allowed object is * {@link DistributedVirtualSwitchHostMemberConfigInfo } * */ public void setConfig(DistributedVirtualSwitchHostMemberConfigInfo value) { this.config = 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 uplinkPortKey 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 uplinkPortKey property. * *

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

     *    getUplinkPortKey().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getUplinkPortKey() { if (uplinkPortKey == null) { uplinkPortKey = new ArrayList(); } return this.uplinkPortKey; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Sets the value of the uplinkPortKey property. * * @param uplinkPortKey * allowed object is * {@link String } * */ public void setUplinkPortKey(List uplinkPortKey) { this.uplinkPortKey = uplinkPortKey; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy