
com.vmware.vim25.VirtualEthernetCardDistributedVirtualPortBackingInfo Maven / Gradle / Ivy
The 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 VirtualEthernetCardDistributedVirtualPortBackingInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualEthernetCardDistributedVirtualPortBackingInfo">
* <complexContent>
* <extension base="{urn:vim25}VirtualDeviceBackingInfo">
* <sequence>
* <element name="port" type="{urn:vim25}DistributedVirtualSwitchPortConnection"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualEthernetCardDistributedVirtualPortBackingInfo", propOrder = {
"port"
})
public class VirtualEthernetCardDistributedVirtualPortBackingInfo
extends VirtualDeviceBackingInfo
{
@XmlElement(required = true)
protected DistributedVirtualSwitchPortConnection port;
/**
* Gets the value of the port property.
*
* @return
* possible object is
* {@link DistributedVirtualSwitchPortConnection }
*
*/
public DistributedVirtualSwitchPortConnection getPort() {
return port;
}
/**
* Sets the value of the port property.
*
* @param value
* allowed object is
* {@link DistributedVirtualSwitchPortConnection }
*
*/
public void setPort(DistributedVirtualSwitchPortConnection value) {
this.port = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy