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