Class EncryptionContext
- java.lang.Object
-
- org.opensaml.messaging.context.BaseContext
-
- org.opensaml.saml.saml2.profile.context.EncryptionContext
-
- All Implemented Interfaces:
Iterable<org.opensaml.messaging.context.BaseContext>
public final class EncryptionContext extends org.opensaml.messaging.context.BaseContextContext supplying encryption parameters for the different forms of SAML XML encryption.The presence or absence of a particular parameter set is generally an indicator as to the requirement to encrypt that type of object.
-
-
Field Summary
Fields Modifier and Type Field Description private org.opensaml.xmlsec.EncryptionParametersassertionEncParamsParameters for assertion encrytion.private org.opensaml.xmlsec.EncryptionParametersattributeEncParamsParameters for attribute encrytion.private org.opensaml.xmlsec.EncryptionParametersidEncParamsParameters for identifier encrytion.
-
Constructor Summary
Constructors Constructor Description EncryptionContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.opensaml.xmlsec.EncryptionParametersgetAssertionEncryptionParameters()Get the encryption parameters to use for encryption of assertions.org.opensaml.xmlsec.EncryptionParametersgetAttributeEncryptionParameters()Get the encryption parameters to use for encryption of attributes.org.opensaml.xmlsec.EncryptionParametersgetIdentifierEncryptionParameters()Get the encryption parameters to use for encryption of identifiers.EncryptionContextsetAssertionEncryptionParameters(org.opensaml.xmlsec.EncryptionParameters params)Set the encryption parameters to use for encryption of assertions.EncryptionContextsetAttributeEncryptionParameters(org.opensaml.xmlsec.EncryptionParameters params)Set the encryption parameters to use for encryption of attributes.EncryptionContextsetIdentifierEncryptionParameters(org.opensaml.xmlsec.EncryptionParameters params)Set the encryption parameters to use for encryption of identifiers.-
Methods inherited from class org.opensaml.messaging.context.BaseContext
addSubcontext, addSubcontext, clearSubcontexts, containsSubcontext, createSubcontext, getParent, getSubcontext, getSubcontext, getSubcontext, getSubcontext, iterator, removeSubcontext, removeSubcontext, setParent
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Field Detail
-
assertionEncParams
@Nullable private org.opensaml.xmlsec.EncryptionParameters assertionEncParams
Parameters for assertion encrytion.
-
idEncParams
@Nullable private org.opensaml.xmlsec.EncryptionParameters idEncParams
Parameters for identifier encrytion.
-
attributeEncParams
@Nullable private org.opensaml.xmlsec.EncryptionParameters attributeEncParams
Parameters for attribute encrytion.
-
-
Method Detail
-
getAssertionEncryptionParameters
@Nullable public org.opensaml.xmlsec.EncryptionParameters getAssertionEncryptionParameters()
Get the encryption parameters to use for encryption of assertions.- Returns:
- parameters to use
-
setAssertionEncryptionParameters
@Nonnull public EncryptionContext setAssertionEncryptionParameters(@Nullable org.opensaml.xmlsec.EncryptionParameters params)
Set the encryption parameters to use for encryption of assertions.- Parameters:
params- parameters to use- Returns:
- this context
-
getIdentifierEncryptionParameters
@Nullable public org.opensaml.xmlsec.EncryptionParameters getIdentifierEncryptionParameters()
Get the encryption parameters to use for encryption of identifiers.- Returns:
- parameters to use
-
setIdentifierEncryptionParameters
@Nonnull public EncryptionContext setIdentifierEncryptionParameters(@Nullable org.opensaml.xmlsec.EncryptionParameters params)
Set the encryption parameters to use for encryption of identifiers.- Parameters:
params- parameters to use- Returns:
- this context
-
getAttributeEncryptionParameters
@Nullable public org.opensaml.xmlsec.EncryptionParameters getAttributeEncryptionParameters()
Get the encryption parameters to use for encryption of attributes.- Returns:
- parameters to use
-
setAttributeEncryptionParameters
@Nonnull public EncryptionContext setAttributeEncryptionParameters(@Nullable org.opensaml.xmlsec.EncryptionParameters params)
Set the encryption parameters to use for encryption of attributes.- Parameters:
params- parameters to use- Returns:
- this context
-
-