![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.KmipServerStatus 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;
/**
* Java class for KmipServerStatus complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="KmipServerStatus">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="clusterId" type="{urn:vim25}KeyProviderId"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="status" type="{urn:vim25}ManagedEntityStatus"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KmipServerStatus", propOrder = {
"clusterId",
"name",
"status",
"description"
})
public class KmipServerStatus
extends DynamicData
{
@XmlElement(required = true)
protected KeyProviderId clusterId;
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected ManagedEntityStatus status;
@XmlElement(required = true)
protected String description;
/**
* Gets the value of the clusterId property.
*
* @return
* possible object is
* {@link KeyProviderId }
*
*/
public KeyProviderId getClusterId() {
return clusterId;
}
/**
* Sets the value of the clusterId property.
*
* @param value
* allowed object is
* {@link KeyProviderId }
*
*/
public void setClusterId(KeyProviderId value) {
this.clusterId = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link ManagedEntityStatus }
*
*/
public ManagedEntityStatus getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link ManagedEntityStatus }
*
*/
public void setStatus(ManagedEntityStatus value) {
this.status = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy