Class DecryptAttributes
- java.lang.Object
-
- net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
-
- org.opensaml.profile.action.AbstractProfileAction
-
- org.opensaml.saml.saml2.profile.impl.AbstractDecryptAction
-
- org.opensaml.saml.saml2.profile.impl.DecryptAttributes
-
- All Implemented Interfaces:
Component,DestructableComponent,InitializableComponent,ProfileAction
public class DecryptAttributes extends AbstractDecryptAction
Action to decrypt anEncryptedAttributeelement and replace it with the decryptedAttributein situ.All of the built-in SAML message types that may include an
EncryptedAttributeare potentially handled, but the actual message to handle is obtained via strategy function, by default the inbound message.
-
-
Field Summary
Fields Modifier and Type Field Description private org.slf4j.LoggerlogClass logger.
-
Constructor Summary
Constructors Constructor Description DecryptAttributes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoExecute(ProfileRequestContext profileRequestContext)private voidprocessAssertion(ProfileRequestContext profileRequestContext, Assertion assertion)Decrypt anyEncryptedAttributefound in an assertion and replace it with the result.private AttributeprocessEncryptedAttribute(ProfileRequestContext profileRequestContext, EncryptedAttribute encAttr)Decrypt anEncryptedAttributeand return the result.-
Methods inherited from class org.opensaml.saml.saml2.profile.impl.AbstractDecryptAction
doPreExecute, getDecrypter, getDecryptionPredicate, getSAMLObject, isErrorFatal, setDecryptionPredicate, setErrorFatal, setMessageLookupStrategy, setSecurityParametersContextLookupStrategy
-
Methods inherited from class org.opensaml.profile.action.AbstractProfileAction
doPostExecute, doPostExecute, execute, getHttpServletRequest, getHttpServletRequestSupplier, getHttpServletResponse, getHttpServletResponseSupplier, getLogPrefix, setHttpServletRequest, setHttpServletRequestSupplier, setHttpServletResponse, setHttpServletResponseSupplier
-
Methods inherited from class net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
destroy, doDestroy, doInitialize, initialize, isDestroyed, isInitialized
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.shibboleth.utilities.java.support.component.InitializableComponent
initialize, isInitialized
-
-
-
-
Method Detail
-
doExecute
protected void doExecute(@Nonnull ProfileRequestContext profileRequestContext)- Overrides:
doExecutein classAbstractProfileAction
-
processEncryptedAttribute
@Nullable private Attribute processEncryptedAttribute(@Nonnull ProfileRequestContext profileRequestContext, @Nonnull EncryptedAttribute encAttr) throws DecryptionException
Decrypt anEncryptedAttributeand return the result.- Parameters:
profileRequestContext- current profile request contextencAttr- the encrypted object- Returns:
- the decrypted attribute, or null if the object did not need decryption
- Throws:
DecryptionException- if an error occurs during decryption
-
processAssertion
private void processAssertion(@Nonnull ProfileRequestContext profileRequestContext, @Nonnull Assertion assertion) throws DecryptionExceptionDecrypt anyEncryptedAttributefound in an assertion and replace it with the result.- Parameters:
profileRequestContext- current profile request contextassertion- assertion to operate on- Throws:
DecryptionException- if an error occurs
-
-