com.vmware.vim25.VmUuidConflictEvent 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 VmUuidConflictEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VmUuidConflictEvent">
* <complexContent>
* <extension base="{urn:vim25}VmEvent">
* <sequence>
* <element name="conflictedVm" type="{urn:vim25}VmEventArgument"/>
* <element name="uuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VmUuidConflictEvent", propOrder = {
"conflictedVm",
"uuid"
})
public class VmUuidConflictEvent
extends VmEvent
{
@XmlElement(required = true)
protected VmEventArgument conflictedVm;
@XmlElement(required = true)
protected String uuid;
/**
* 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 uuid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUuid() {
return uuid;
}
/**
* Sets the value of the uuid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUuid(String value) {
this.uuid = value;
}
}