Class AddProxyRestrictionToAssertions
- java.lang.Object
-
- net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
-
- org.opensaml.profile.action.AbstractProfileAction
-
- org.opensaml.profile.action.AbstractConditionalProfileAction
-
- org.opensaml.saml.saml2.profile.impl.AddProxyRestrictionToAssertions
-
- All Implemented Interfaces:
net.shibboleth.utilities.java.support.component.Component,net.shibboleth.utilities.java.support.component.DestructableComponent,net.shibboleth.utilities.java.support.component.InitializableComponent,org.opensaml.profile.action.ProfileAction
public class AddProxyRestrictionToAssertions extends org.opensaml.profile.action.AbstractConditionalProfileActionAction adds anProxyRestrictionto everyAssertioncontained in a SAML 2 response, with the audiences and count obtained from a lookup function. If the containingConditionsis not present, it will be created.- Event:
EventIds.PROCEED_EVENT_ID,EventIds.INVALID_MSG_CTX
-
-
Field Summary
Fields Modifier and Type Field Description private Set<String>audiencesAudiences to add.private org.slf4j.LoggerlogClass logger.private IntegerproxyCountProxyCount to add.private Function<org.opensaml.profile.context.ProfileRequestContext,net.shibboleth.utilities.java.support.collection.Pair<Integer,Set<String>>>proxyRestrictionLookupStrategyStrategy used to obtain the material to add.private org.opensaml.saml.saml2.core.ResponseresponseResponse to modify.private Function<org.opensaml.profile.context.ProfileRequestContext,org.opensaml.saml.saml2.core.Response>responseLookupStrategyStrategy used to locate the Response to operate on.
-
Constructor Summary
Constructors Constructor Description AddProxyRestrictionToAssertions()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private voidaddProxyRestriction(org.opensaml.profile.context.ProfileRequestContext profileRequestContext, org.opensaml.saml.saml2.core.Conditions conditions)Add the audiences obtained from a lookup function to theProxyRestriction.protected voiddoExecute(org.opensaml.profile.context.ProfileRequestContext profileRequestContext)protected voiddoInitialize()protected booleandoPreExecute(org.opensaml.profile.context.ProfileRequestContext profileRequestContext)private org.opensaml.saml.saml2.core.ProxyRestrictiongetProxyRestriction(org.opensaml.saml.saml2.core.Conditions conditions)Get theProxyRestrictionto which audiences will be added.voidsetProxyRestrictionLookupStrategy(Function<org.opensaml.profile.context.ProfileRequestContext,net.shibboleth.utilities.java.support.collection.Pair<Integer,Set<String>>> strategy)Set the strategy used to obtain the proxy restrictions to apply.voidsetResponseLookupStrategy(Function<org.opensaml.profile.context.ProfileRequestContext,org.opensaml.saml.saml2.core.Response> strategy)Set the strategy used to locate the Response to operate on.-
Methods inherited from class org.opensaml.profile.action.AbstractConditionalProfileAction
getActivationCondition, setActivationCondition
-
Methods inherited from class org.opensaml.profile.action.AbstractProfileAction
doPostExecute, doPostExecute, execute, getHttpServletRequest, getHttpServletResponse, getLogPrefix, setHttpServletRequest, setHttpServletResponse
-
Methods inherited from class net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
destroy, doDestroy, initialize, isDestroyed, isInitialized
-
-
-
-
Field Detail
-
log
@Nonnull private final org.slf4j.Logger log
Class logger.
-
responseLookupStrategy
@Nonnull private Function<org.opensaml.profile.context.ProfileRequestContext,org.opensaml.saml.saml2.core.Response> responseLookupStrategy
Strategy used to locate the Response to operate on.
-
proxyRestrictionLookupStrategy
@Nullable private Function<org.opensaml.profile.context.ProfileRequestContext,net.shibboleth.utilities.java.support.collection.Pair<Integer,Set<String>>> proxyRestrictionLookupStrategy
Strategy used to obtain the material to add.
-
response
@Nullable private org.opensaml.saml.saml2.core.Response response
Response to modify.
-
proxyCount
@Nullable private Integer proxyCount
ProxyCount to add.
-
-
Method Detail
-
setResponseLookupStrategy
public void setResponseLookupStrategy(@Nonnull Function<org.opensaml.profile.context.ProfileRequestContext,org.opensaml.saml.saml2.core.Response> strategy)Set the strategy used to locate the Response to operate on.- Parameters:
strategy- lookup strategy
-
setProxyRestrictionLookupStrategy
public void setProxyRestrictionLookupStrategy(@Nonnull Function<org.opensaml.profile.context.ProfileRequestContext,net.shibboleth.utilities.java.support.collection.Pair<Integer,Set<String>>> strategy)Set the strategy used to obtain the proxy restrictions to apply.- Parameters:
strategy- lookup strategy
-
doInitialize
protected void doInitialize() throws net.shibboleth.utilities.java.support.component.ComponentInitializationException- Overrides:
doInitializein classnet.shibboleth.utilities.java.support.component.AbstractInitializableComponent- Throws:
net.shibboleth.utilities.java.support.component.ComponentInitializationException
-
doPreExecute
protected boolean doPreExecute(@Nonnull org.opensaml.profile.context.ProfileRequestContext profileRequestContext)- Overrides:
doPreExecutein classorg.opensaml.profile.action.AbstractConditionalProfileAction
-
doExecute
protected void doExecute(@Nonnull org.opensaml.profile.context.ProfileRequestContext profileRequestContext)- Overrides:
doExecutein classorg.opensaml.profile.action.AbstractProfileAction
-
addProxyRestriction
private void addProxyRestriction(@Nonnull org.opensaml.profile.context.ProfileRequestContext profileRequestContext, @Nonnull org.opensaml.saml.saml2.core.Conditions conditions)Add the audiences obtained from a lookup function to theProxyRestriction. If noProxyRestrictionexists on the givenConditionsone is created and added.- Parameters:
profileRequestContext- current profile request contextconditions- condition that has, or will receive the created,ProxyRestriction
-
getProxyRestriction
@Nonnull private org.opensaml.saml.saml2.core.ProxyRestriction getProxyRestriction(@Nonnull org.opensaml.saml.saml2.core.Conditions conditions)Get theProxyRestrictionto which audiences will be added.- Parameters:
conditions- existing set of conditions- Returns:
- the condition to which audiences will be added
-
-