com.vmware.vim25.ToolsConfigInfoToolsLastInstallInfo Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ToolsConfigInfoToolsLastInstallInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ToolsConfigInfoToolsLastInstallInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="counter" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="fault" type="{urn:vim25}LocalizedMethodFault" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ToolsConfigInfoToolsLastInstallInfo", propOrder = {
"counter",
"fault"
})
public class ToolsConfigInfoToolsLastInstallInfo
extends DynamicData
{
protected int counter;
protected LocalizedMethodFault fault;
/**
* Gets the value of the counter property.
*
*/
public int getCounter() {
return counter;
}
/**
* Sets the value of the counter property.
*
*/
public void setCounter(int value) {
this.counter = value;
}
/**
* Gets the value of the fault property.
*
* @return
* possible object is
* {@link LocalizedMethodFault }
*
*/
public LocalizedMethodFault getFault() {
return fault;
}
/**
* Sets the value of the fault property.
*
* @param value
* allowed object is
* {@link LocalizedMethodFault }
*
*/
public void setFault(LocalizedMethodFault value) {
this.fault = value;
}
}