com.vmware.vim25.CryptoSpecEncrypt 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 CryptoSpecEncrypt complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CryptoSpecEncrypt">
* <complexContent>
* <extension base="{urn:vim25}CryptoSpec">
* <sequence>
* <element name="cryptoKeyId" type="{urn:vim25}CryptoKeyId"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CryptoSpecEncrypt", propOrder = {
"cryptoKeyId"
})
public class CryptoSpecEncrypt
extends CryptoSpec
{
@XmlElement(required = true)
protected CryptoKeyId cryptoKeyId;
/**
* Gets the value of the cryptoKeyId property.
*
* @return
* possible object is
* {@link CryptoKeyId }
*
*/
public CryptoKeyId getCryptoKeyId() {
return cryptoKeyId;
}
/**
* Sets the value of the cryptoKeyId property.
*
* @param value
* allowed object is
* {@link CryptoKeyId }
*
*/
public void setCryptoKeyId(CryptoKeyId value) {
this.cryptoKeyId = value;
}
}