Class EncryptionPartDef
- java.lang.Object
-
- org.apache.xml.security.stax.impl.EncryptionPartDef
-
public class EncryptionPartDef extends Object
EncryptionPartDef holds information about parts to be encrypt
-
-
Constructor Summary
Constructors Constructor Description EncryptionPartDef()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCipherReferenceId()
String
getEncRefId()
String
getKeyId()
String
getMimeType()
SecurePart.Modifier
getModifier()
SecurePart
getSecurePart()
Key
getSymmetricKey()
void
setCipherReferenceId(String cipherReferenceId)
void
setEncRefId(String encRefId)
void
setKeyId(String keyId)
void
setMimeType(String mimeType)
void
setModifier(SecurePart.Modifier modifier)
void
setSecurePart(SecurePart securePart)
void
setSymmetricKey(Key symmetricKey)
-
-
-
Method Detail
-
getSecurePart
public SecurePart getSecurePart()
-
setSecurePart
public void setSecurePart(SecurePart securePart)
-
getModifier
public SecurePart.Modifier getModifier()
-
setModifier
public void setModifier(SecurePart.Modifier modifier)
-
getSymmetricKey
public Key getSymmetricKey()
-
setSymmetricKey
public void setSymmetricKey(Key symmetricKey)
-
getKeyId
public String getKeyId()
-
setKeyId
public void setKeyId(String keyId)
-
getEncRefId
public String getEncRefId()
-
setEncRefId
public void setEncRefId(String encRefId)
-
getCipherReferenceId
public String getCipherReferenceId()
-
setCipherReferenceId
public void setCipherReferenceId(String cipherReferenceId)
-
getMimeType
public String getMimeType()
-
setMimeType
public void setMimeType(String mimeType)
-
-