![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.ClusterActionHistory 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for ClusterActionHistory complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClusterActionHistory">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="action" type="{urn:vim25}ClusterAction"/>
* <element name="time" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClusterActionHistory", propOrder = {
"action",
"time"
})
public class ClusterActionHistory
extends DynamicData
{
@XmlElement(required = true)
protected ClusterAction action;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar time;
/**
* Gets the value of the action property.
*
* @return
* possible object is
* {@link ClusterAction }
*
*/
public ClusterAction getAction() {
return action;
}
/**
* Sets the value of the action property.
*
* @param value
* allowed object is
* {@link ClusterAction }
*
*/
public void setAction(ClusterAction value) {
this.action = value;
}
/**
* Gets the value of the time property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getTime() {
return time;
}
/**
* Sets the value of the time property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setTime(XMLGregorianCalendar value) {
this.time = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy