Class EncryptedType
- java.lang.Object
-
- org.keycloak.dom.xmlsec.w3.xmlenc.EncryptedType
-
- Direct Known Subclasses:
EncryptedDataType,EncryptedKeyType
public abstract class EncryptedType extends Object
Java class for EncryptedType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="EncryptedType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="EncryptionMethod" type="{http://www.w3.org/2001/04/xmlenc#}EncryptionMethodType" minOccurs="0"/> <element ref="{http://www.w3.org/2000/09/xmldsig#}KeyInfo" minOccurs="0"/> <element ref="{http://www.w3.org/2001/04/xmlenc#}CipherData"/> <element ref="{http://www.w3.org/2001/04/xmlenc#}EncryptionProperties" minOccurs="0"/> </sequence> <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> <attribute name="MimeType" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="Encoding" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected CipherDataTypecipherDataprotected Stringencodingprotected EncryptionMethodTypeencryptionMethodprotected EncryptionPropertiesTypeencryptionPropertiesprotected Stringidprotected KeyInfoTypekeyInfoprotected StringmimeTypeprotected Stringtype
-
Constructor Summary
Constructors Constructor Description EncryptedType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CipherDataTypegetCipherData()Gets the value of the cipherData property.StringgetEncoding()Gets the value of the encoding property.EncryptionMethodTypegetEncryptionMethod()Gets the value of the encryptionMethod property.EncryptionPropertiesTypegetEncryptionProperties()Gets the value of the encryptionProperties property.StringgetId()Gets the value of the id property.KeyInfoTypegetKeyInfo()Gets the value of the keyInfo property.StringgetMimeType()Gets the value of the mimeType property.StringgetType()Gets the value of the type property.voidsetCipherData(CipherDataType value)Sets the value of the cipherData property.voidsetEncoding(String value)Sets the value of the encoding property.voidsetEncryptionMethod(EncryptionMethodType value)Sets the value of the encryptionMethod property.voidsetEncryptionProperties(EncryptionPropertiesType value)Sets the value of the encryptionProperties property.voidsetId(String value)Sets the value of the id property.voidsetKeyInfo(KeyInfoType value)Sets the value of the keyInfo property.voidsetMimeType(String value)Sets the value of the mimeType property.voidsetType(String value)Sets the value of the type property.
-
-
-
Field Detail
-
encryptionMethod
protected EncryptionMethodType encryptionMethod
-
keyInfo
protected KeyInfoType keyInfo
-
cipherData
protected CipherDataType cipherData
-
encryptionProperties
protected EncryptionPropertiesType encryptionProperties
-
id
protected String id
-
type
protected String type
-
mimeType
protected String mimeType
-
encoding
protected String encoding
-
-
Method Detail
-
getEncryptionMethod
public EncryptionMethodType getEncryptionMethod()
Gets the value of the encryptionMethod property.- Returns:
- possible object is
EncryptionMethodType
-
setEncryptionMethod
public void setEncryptionMethod(EncryptionMethodType value)
Sets the value of the encryptionMethod property.- Parameters:
value- allowed object isEncryptionMethodType
-
getKeyInfo
public KeyInfoType getKeyInfo()
Gets the value of the keyInfo property.- Returns:
- possible object is
KeyInfoType
-
setKeyInfo
public void setKeyInfo(KeyInfoType value)
Sets the value of the keyInfo property.- Parameters:
value- allowed object isKeyInfoType
-
getCipherData
public CipherDataType getCipherData()
Gets the value of the cipherData property.- Returns:
- possible object is
CipherDataType
-
setCipherData
public void setCipherData(CipherDataType value)
Sets the value of the cipherData property.- Parameters:
value- allowed object isCipherDataType
-
getEncryptionProperties
public EncryptionPropertiesType getEncryptionProperties()
Gets the value of the encryptionProperties property.- Returns:
- possible object is
EncryptionPropertiesType
-
setEncryptionProperties
public void setEncryptionProperties(EncryptionPropertiesType value)
Sets the value of the encryptionProperties property.- Parameters:
value- allowed object isEncryptionPropertiesType
-
setId
public void setId(String value)
Sets the value of the id property.- Parameters:
value- allowed object isString
-
getType
public String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(String value)
Sets the value of the type property.- Parameters:
value- allowed object isString
-
getMimeType
public String getMimeType()
Gets the value of the mimeType property.- Returns:
- possible object is
String
-
setMimeType
public void setMimeType(String value)
Sets the value of the mimeType property.- Parameters:
value- allowed object isString
-
getEncoding
public String getEncoding()
Gets the value of the encoding property.- Returns:
- possible object is
String
-
-