Class XMLCipher.Factory.EncryptedTypeImpl
- java.lang.Object
-
- org.apache.xml.security.encryption.XMLCipher.Factory.EncryptedTypeImpl
-
- Direct Known Subclasses:
XMLCipher.Factory.EncryptedDataImpl
,XMLCipher.Factory.EncryptedKeyImpl
- Enclosing class:
- XMLCipher.Factory
private abstract class XMLCipher.Factory.EncryptedTypeImpl extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private CipherData
cipherData
private java.lang.String
encoding
private EncryptionMethod
encryptionMethod
private EncryptionProperties
encryptionProperties
private java.lang.String
id
private KeyInfo
keyInfo
private java.lang.String
mimeType
private java.lang.String
type
-
Constructor Summary
Constructors Modifier Constructor Description protected
EncryptedTypeImpl(CipherData data)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CipherData
getCipherData()
java.lang.String
getEncoding()
EncryptionMethod
getEncryptionMethod()
EncryptionProperties
getEncryptionProperties()
java.lang.String
getId()
KeyInfo
getKeyInfo()
java.lang.String
getMimeType()
java.lang.String
getType()
void
setEncoding(java.lang.String encoding)
void
setEncryptionMethod(EncryptionMethod method)
void
setEncryptionProperties(EncryptionProperties properties)
void
setId(java.lang.String id)
void
setKeyInfo(KeyInfo info)
void
setMimeType(java.lang.String type)
void
setType(java.lang.String type)
-
-
-
Field Detail
-
id
private java.lang.String id
-
type
private java.lang.String type
-
mimeType
private java.lang.String mimeType
-
encoding
private java.lang.String encoding
-
encryptionMethod
private EncryptionMethod encryptionMethod
-
keyInfo
private KeyInfo keyInfo
-
cipherData
private CipherData cipherData
-
encryptionProperties
private EncryptionProperties encryptionProperties
-
-
Constructor Detail
-
EncryptedTypeImpl
protected EncryptedTypeImpl(CipherData data)
Constructor.- Parameters:
data
-
-
-
Method Detail
-
getId
public java.lang.String getId()
- Returns:
- the Id
-
setId
public void setId(java.lang.String id)
- Parameters:
id
-
-
getType
public java.lang.String getType()
- Returns:
- the type
-
setType
public void setType(java.lang.String type)
- Parameters:
type
-
-
getMimeType
public java.lang.String getMimeType()
- Returns:
- the MimeType
-
setMimeType
public void setMimeType(java.lang.String type)
- Parameters:
type
-
-
getEncoding
public java.lang.String getEncoding()
- Returns:
- the encoding
-
setEncoding
public void setEncoding(java.lang.String encoding)
- Parameters:
encoding
-
-
getEncryptionMethod
public EncryptionMethod getEncryptionMethod()
- Returns:
- the EncryptionMethod
-
setEncryptionMethod
public void setEncryptionMethod(EncryptionMethod method)
- Parameters:
method
-
-
getKeyInfo
public KeyInfo getKeyInfo()
- Returns:
- the KeyInfo
-
setKeyInfo
public void setKeyInfo(KeyInfo info)
- Parameters:
info
-
-
getCipherData
public CipherData getCipherData()
- Returns:
- the CipherData
-
getEncryptionProperties
public EncryptionProperties getEncryptionProperties()
- Returns:
- the EncryptionProperties
-
setEncryptionProperties
public void setEncryptionProperties(EncryptionProperties properties)
- Parameters:
properties
-
-
-