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 CipherDataType
cipherData
protected EncryptionMethodType
encryptionMethod
protected KeyInfoType
keyInfo
-
Constructor Summary
Constructors Constructor Description EncryptedDataType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(JaxbVisitor visitor)
EncryptedDataType
clone()
boolean
equals(Object obj)
CipherDataType
getCipherData()
Gets the value of the cipherData property.EncryptionMethodType
getEncryptionMethod()
Gets the value of the encryptionMethod property.KeyInfoType
getKeyInfo()
Gets the value of the keyInfo property.int
hashCode()
void
setCipherData(CipherDataType value)
Sets the value of the cipherData property.void
setEncryptionMethod(EncryptionMethodType value)
Sets the value of the encryptionMethod property.void
setKeyInfo(KeyInfoType value)
Sets the value of the keyInfo property.String
toString()
-
-
-
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:
accept
in interfaceJaxbVisitable
-
-