Package net.shibboleth.idp.authn.impl
Class ExternalAuthenticationImpl
- java.lang.Object
-
- net.shibboleth.idp.authn.ExternalAuthentication
-
- net.shibboleth.idp.authn.impl.ExternalAuthenticationImpl
-
public class ExternalAuthenticationImpl extends net.shibboleth.idp.authn.ExternalAuthenticationImplementation of theExternalAuthenticationAPI that handles moving information in and out of request attributes.
-
-
Field Summary
Fields Modifier and Type Field Description private booleanextendedFlowTrack whether we were invoked from within another login flow.private Function<org.opensaml.profile.context.ProfileRequestContext,net.shibboleth.idp.profile.context.RelyingPartyContext>relyingPartyContextLookupStrategyLookup function for relying party context.-
Fields inherited from class net.shibboleth.idp.authn.ExternalAuthentication
ATTRIBUTES_KEY, AUTHENTICATING_AUTHORITIES_KEY, AUTHENTICATION_ERROR_KEY, AUTHENTICATION_EXCEPTION_KEY, AUTHENTICATION_INSTANT_KEY, CONVERSATION_KEY, DONOTCACHE_KEY, EXTENDED_FLOW_PARAM, FORCE_AUTHN_PARAM, PASSIVE_AUTHN_PARAM, PREVIOUSRESULT_KEY, PRINCIPAL_KEY, PRINCIPAL_NAME_KEY, RELYING_PARTY_PARAM, REVOKECONSENT_KEY, SUBJECT_KEY, SWF_KEY
-
-
Constructor Summary
Constructors Constructor Description ExternalAuthenticationImpl()Constructor.ExternalAuthenticationImpl(boolean extended)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoFinish(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, org.opensaml.profile.context.ProfileRequestContext profileRequestContext, net.shibboleth.idp.authn.context.ExternalAuthenticationContext extContext)protected voiddoStart(javax.servlet.http.HttpServletRequest request, org.opensaml.profile.context.ProfileRequestContext profileRequestContext, net.shibboleth.idp.authn.context.ExternalAuthenticationContext externalAuthenticationContext)voidsetRelyingPartyContextLookupStrategy(Function<org.opensaml.profile.context.ProfileRequestContext,net.shibboleth.idp.profile.context.RelyingPartyContext> strategy)Set lookup strategy for relying party context.
-
-
-
Field Detail
-
relyingPartyContextLookupStrategy
@Nonnull private Function<org.opensaml.profile.context.ProfileRequestContext,net.shibboleth.idp.profile.context.RelyingPartyContext> relyingPartyContextLookupStrategy
Lookup function for relying party context.
-
extendedFlow
private final boolean extendedFlow
Track whether we were invoked from within another login flow.
-
-
Method Detail
-
setRelyingPartyContextLookupStrategy
public void setRelyingPartyContextLookupStrategy(@Nonnull Function<org.opensaml.profile.context.ProfileRequestContext,net.shibboleth.idp.profile.context.RelyingPartyContext> strategy)Set lookup strategy for relying party context.- Parameters:
strategy- lookup strategy
-
doStart
protected void doStart(@Nonnull javax.servlet.http.HttpServletRequest request, @Nonnull org.opensaml.profile.context.ProfileRequestContext profileRequestContext, @Nonnull net.shibboleth.idp.authn.context.ExternalAuthenticationContext externalAuthenticationContext) throws net.shibboleth.idp.authn.ExternalAuthenticationException- Overrides:
doStartin classnet.shibboleth.idp.authn.ExternalAuthentication- Throws:
net.shibboleth.idp.authn.ExternalAuthenticationException
-
doFinish
protected void doFinish(@Nonnull javax.servlet.http.HttpServletRequest request, @Nonnull javax.servlet.http.HttpServletResponse response, @Nonnull org.opensaml.profile.context.ProfileRequestContext profileRequestContext, @Nonnull net.shibboleth.idp.authn.context.ExternalAuthenticationContext extContext) throws net.shibboleth.idp.authn.ExternalAuthenticationException, IOException- Specified by:
doFinishin classnet.shibboleth.idp.authn.ExternalAuthentication- Throws:
net.shibboleth.idp.authn.ExternalAuthenticationExceptionIOException
-
-