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