Class MapRequestedAttributesInAttributeConsumingService
- java.lang.Object
-
- net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
-
- org.opensaml.profile.action.AbstractProfileAction
-
- org.opensaml.profile.action.AbstractConditionalProfileAction
-
- net.shibboleth.idp.profile.AbstractProfileAction
-
- net.shibboleth.idp.saml.saml2.profile.impl.MapRequestedAttributesInAttributeConsumingService
-
- All Implemented Interfaces:
Component,DestructableComponent,InitializableComponent,ProfileAction,Aware,MessageSource,MessageSourceAware,Action
public class MapRequestedAttributesInAttributeConsumingService extends AbstractProfileAction
Action that ensures that the attributes in the ACS (if any) are mapped.
-
-
Field Summary
Fields Modifier and Type Field Description private AttributeConsumingServiceContextacsContextThe context we use to get and put theAttributeConsumingService.private Function<ProfileRequestContext,AttributeConsumingServiceContext>attributeConsumingServiceContextLookupStrategystrategy to get theAttributeConsumingServiceContext.private org.slf4j.LoggerlogLogger.private ReloadableService<AttributeTranscoderRegistry>transcoderRegistryThe registry of decoding rules.
-
Constructor Summary
Constructors Constructor Description MapRequestedAttributesInAttributeConsumingService()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoExecute(ProfileRequestContext profileRequestContext)protected booleandoPreExecute(ProfileRequestContext profileRequestContext)voidsetAttributeConsumingServiceContextLookupStrategy(Function<ProfileRequestContext,AttributeConsumingServiceContext> strategy)Set the strategy to locate theAttributeConsumingServiceContextfrom theProfileRequestContext.voidsetTranscoderRegistry(ReloadableService<AttributeTranscoderRegistry> registry)Sets the service which provides attribute decoding rules.-
Methods inherited from class net.shibboleth.idp.profile.AbstractProfileAction
doExecute, execute, getMessage, getMessage, getMessage, getProfileContextLookupStrategy, getRequestContext, getResult, setMessageSource, setProfileContextLookupStrategy
-
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, 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
-
-
-
-
Field Detail
-
log
@Nonnull private final org.slf4j.Logger log
Logger.
-
attributeConsumingServiceContextLookupStrategy
@Nonnull private Function<ProfileRequestContext,AttributeConsumingServiceContext> attributeConsumingServiceContextLookupStrategy
strategy to get theAttributeConsumingServiceContext.
-
transcoderRegistry
@Nullable private ReloadableService<AttributeTranscoderRegistry> transcoderRegistry
The registry of decoding rules.
-
acsContext
private AttributeConsumingServiceContext acsContext
The context we use to get and put theAttributeConsumingService.
-
-
Method Detail
-
setAttributeConsumingServiceContextLookupStrategy
public void setAttributeConsumingServiceContextLookupStrategy(@Nonnull Function<ProfileRequestContext,AttributeConsumingServiceContext> strategy)Set the strategy to locate theAttributeConsumingServiceContextfrom theProfileRequestContext.- Parameters:
strategy- lookup strategy
-
setTranscoderRegistry
public void setTranscoderRegistry(@Nonnull ReloadableService<AttributeTranscoderRegistry> registry)Sets the service which provides attribute decoding rules.- Parameters:
registry- the registry service
-
doPreExecute
protected boolean doPreExecute(@Nonnull ProfileRequestContext profileRequestContext)- Overrides:
doPreExecutein classAbstractConditionalProfileAction
-
doExecute
protected void doExecute(@Nonnull ProfileRequestContext profileRequestContext)- Overrides:
doExecutein classAbstractProfileAction
-
-