![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VmDiskFileEncryptionInfo 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 VmDiskFileEncryptionInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VmDiskFileEncryptionInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="keyId" type="{urn:vim25}CryptoKeyId" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VmDiskFileEncryptionInfo", propOrder = {
"keyId"
})
public class VmDiskFileEncryptionInfo
extends DynamicData
{
protected CryptoKeyId keyId;
/**
* Gets the value of the keyId property.
*
* @return
* possible object is
* {@link CryptoKeyId }
*
*/
public CryptoKeyId getKeyId() {
return keyId;
}
/**
* Sets the value of the keyId property.
*
* @param value
* allowed object is
* {@link CryptoKeyId }
*
*/
public void setKeyId(CryptoKeyId value) {
this.keyId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy