com.vmware.vim25.KmipServerSpec 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 KmipServerSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="KmipServerSpec">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="clusterId" type="{urn:vim25}KeyProviderId"/>
* <element name="info" type="{urn:vim25}KmipServerInfo"/>
* <element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KmipServerSpec", propOrder = {
"clusterId",
"info",
"password"
})
public class KmipServerSpec
extends DynamicData
{
@XmlElement(required = true)
protected KeyProviderId clusterId;
@XmlElement(required = true)
protected KmipServerInfo info;
protected String password;
/**
* 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 info property.
*
* @return
* possible object is
* {@link KmipServerInfo }
*
*/
public KmipServerInfo getInfo() {
return info;
}
/**
* Sets the value of the info property.
*
* @param value
* allowed object is
* {@link KmipServerInfo }
*
*/
public void setInfo(KmipServerInfo value) {
this.info = value;
}
/**
* Gets the value of the password property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPassword() {
return password;
}
/**
* Sets the value of the password property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPassword(String value) {
this.password = value;
}
}