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 AttributeConsumingServiceContext
acsContext
The context we use to get and put theAttributeConsumingService
.private Function<ProfileRequestContext,AttributeConsumingServiceContext>
attributeConsumingServiceContextLookupStrategy
strategy to get theAttributeConsumingServiceContext
.private org.slf4j.Logger
log
Logger.private ReloadableService<AttributeTranscoderRegistry>
transcoderRegistry
The registry of decoding rules. -
Constructor Summary
Constructors Constructor Description MapRequestedAttributesInAttributeConsumingService()
Constructor. -
Method Summary
Modifier and Type Method Description protected void
doExecute(ProfileRequestContext profileRequestContext)
protected boolean
doPreExecute(ProfileRequestContext profileRequestContext)
void
setAttributeConsumingServiceContextLookupStrategy(Function<ProfileRequestContext,AttributeConsumingServiceContext> strategy)
Set the strategy to locate theAttributeConsumingServiceContext
from theProfileRequestContext
.void
setTranscoderRegistry(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 Details
-
log
@Nonnull private final org.slf4j.Logger logLogger. -
attributeConsumingServiceContextLookupStrategy
@Nonnull private Function<ProfileRequestContext,AttributeConsumingServiceContext> attributeConsumingServiceContextLookupStrategystrategy to get theAttributeConsumingServiceContext
. -
transcoderRegistry
The registry of decoding rules. -
acsContext
The context we use to get and put theAttributeConsumingService
.
-
-
Constructor Details
-
MapRequestedAttributesInAttributeConsumingService
public MapRequestedAttributesInAttributeConsumingService()Constructor.
-
-
Method Details
-
setAttributeConsumingServiceContextLookupStrategy
public void setAttributeConsumingServiceContextLookupStrategy(@Nonnull Function<ProfileRequestContext,AttributeConsumingServiceContext> strategy)Set the strategy to locate theAttributeConsumingServiceContext
from 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
- Overrides:
doPreExecute
in classAbstractConditionalProfileAction
-
doExecute
- Overrides:
doExecute
in classAbstractProfileAction
-