com.vmware.vim25.TaskEvent 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for TaskEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TaskEvent">
* <complexContent>
* <extension base="{urn:vim25}Event">
* <sequence>
* <element name="info" type="{urn:vim25}TaskInfo"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TaskEvent", propOrder = {
"info"
})
@XmlSeeAlso({
TaskTimeoutEvent.class
})
public class TaskEvent
extends Event
{
@XmlElement(required = true)
protected TaskInfo info;
/**
* Gets the value of the info property.
*
* @return
* possible object is
* {@link TaskInfo }
*
*/
public TaskInfo getInfo() {
return info;
}
/**
* Sets the value of the info property.
*
* @param value
* allowed object is
* {@link TaskInfo }
*
*/
public void setInfo(TaskInfo value) {
this.info = value;
}
}