Class EncryptedDataType
- java.lang.Object
-
- com.evolveum.prism.xml.ns._public.types_3.EncryptedDataType
-
- All Implemented Interfaces:
JaxbVisitable,Serializable,Cloneable
public class EncryptedDataType extends Object implements Serializable, Cloneable, JaxbVisitable
TODO Contains data protected by (reversible) encryption. Loosely based on XML encryption standard. But we cannot use full standard as we are not bound to XML. We need this to work also for JSON and YAML and other languages.Java class for EncryptedDataType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="EncryptedDataType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="encryptionMethod" type="{http://prism.evolveum.com/xml/ns/public/types-3}EncryptionMethodType" minOccurs="0"/> <element name="keyInfo" type="{http://prism.evolveum.com/xml/ns/public/types-3}KeyInfoType" minOccurs="0"/> <element name="cipherData" type="{http://prism.evolveum.com/xml/ns/public/types-3}CipherDataType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected CipherDataTypecipherDataprotected EncryptionMethodTypeencryptionMethodprotected KeyInfoTypekeyInfo
-
Constructor Summary
Constructors Constructor Description EncryptedDataType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(JaxbVisitor visitor)EncryptedDataTypeclone()booleanequals(Object obj)CipherDataTypegetCipherData()Gets the value of the cipherData property.EncryptionMethodTypegetEncryptionMethod()Gets the value of the encryptionMethod property.KeyInfoTypegetKeyInfo()Gets the value of the keyInfo property.inthashCode()voidsetCipherData(CipherDataType value)Sets the value of the cipherData property.voidsetEncryptionMethod(EncryptionMethodType value)Sets the value of the encryptionMethod property.voidsetKeyInfo(KeyInfoType value)Sets the value of the keyInfo property.StringtoString()
-
-
-
Field Detail
-
encryptionMethod
protected EncryptionMethodType encryptionMethod
-
keyInfo
protected KeyInfoType keyInfo
-
cipherData
protected CipherDataType cipherData
-
-
Method Detail
-
getEncryptionMethod
public EncryptionMethodType getEncryptionMethod()
Gets the value of the encryptionMethod property.
-
setEncryptionMethod
public void setEncryptionMethod(EncryptionMethodType value)
Sets the value of the encryptionMethod property.
-
getKeyInfo
public KeyInfoType getKeyInfo()
Gets the value of the keyInfo property.
-
setKeyInfo
public void setKeyInfo(KeyInfoType value)
Sets the value of the keyInfo property.
-
getCipherData
public CipherDataType getCipherData()
Gets the value of the cipherData property.
-
setCipherData
public void setCipherData(CipherDataType value)
Sets the value of the cipherData property.
-
clone
public EncryptedDataType clone()
-
accept
public void accept(JaxbVisitor visitor)
- Specified by:
acceptin interfaceJaxbVisitable
-
-