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

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

There is a newer version: 0.6.60
Show newest version

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 DistributedVirtualSwitchPortConnection complex type. * *

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

 * <complexType name="DistributedVirtualSwitchPortConnection">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="switchUuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="portgroupKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="portKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="connectionCookie" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DistributedVirtualSwitchPortConnection", propOrder = { "switchUuid", "portgroupKey", "portKey", "connectionCookie" }) public class DistributedVirtualSwitchPortConnection extends DynamicData { @XmlElement(required = true) protected String switchUuid; protected String portgroupKey; protected String portKey; protected Integer connectionCookie; /** * Gets the value of the switchUuid property. * * @return * possible object is * {@link String } * */ public String getSwitchUuid() { return switchUuid; } /** * Sets the value of the switchUuid property. * * @param value * allowed object is * {@link String } * */ public void setSwitchUuid(String value) { this.switchUuid = value; } /** * Gets the value of the portgroupKey property. * * @return * possible object is * {@link String } * */ public String getPortgroupKey() { return portgroupKey; } /** * Sets the value of the portgroupKey property. * * @param value * allowed object is * {@link String } * */ public void setPortgroupKey(String value) { this.portgroupKey = value; } /** * Gets the value of the portKey property. * * @return * possible object is * {@link String } * */ public String getPortKey() { return portKey; } /** * Sets the value of the portKey property. * * @param value * allowed object is * {@link String } * */ public void setPortKey(String value) { this.portKey = value; } /** * Gets the value of the connectionCookie property. * * @return * possible object is * {@link Integer } * */ public Integer getConnectionCookie() { return connectionCookie; } /** * Sets the value of the connectionCookie property. * * @param value * allowed object is * {@link Integer } * */ public void setConnectionCookie(Integer value) { this.connectionCookie = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy