![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostVnicConnectedToCustomizedDVPortEvent Maven / Gradle / Ivy
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 HostVnicConnectedToCustomizedDVPortEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostVnicConnectedToCustomizedDVPortEvent">
* <complexContent>
* <extension base="{urn:vim25}HostEvent">
* <sequence>
* <element name="vnic" type="{urn:vim25}VnicPortArgument"/>
* <element name="prevPortKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostVnicConnectedToCustomizedDVPortEvent", propOrder = {
"vnic",
"prevPortKey"
})
public class HostVnicConnectedToCustomizedDVPortEvent
extends HostEvent
{
@XmlElement(required = true)
protected VnicPortArgument vnic;
protected String prevPortKey;
/**
* Gets the value of the vnic property.
*
* @return
* possible object is
* {@link VnicPortArgument }
*
*/
public VnicPortArgument getVnic() {
return vnic;
}
/**
* Sets the value of the vnic property.
*
* @param value
* allowed object is
* {@link VnicPortArgument }
*
*/
public void setVnic(VnicPortArgument value) {
this.vnic = value;
}
/**
* Gets the value of the prevPortKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPrevPortKey() {
return prevPortKey;
}
/**
* Sets the value of the prevPortKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPrevPortKey(String value) {
this.prevPortKey = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy