Uses of Class
net.shibboleth.idp.authn.AuthenticationResult
-
Packages that use AuthenticationResult Package Description net.shibboleth.idp.authn APIs related to the authentication of a subject.net.shibboleth.idp.authn.context Context classes for managing authentication-related state.net.shibboleth.idp.authn.principal Classes supporting JavaPrincipalusage. -
-
Uses of AuthenticationResult in net.shibboleth.idp.authn
Fields in net.shibboleth.idp.authn with type parameters of type AuthenticationResult Modifier and Type Field Description private StorageSerializer<AuthenticationResult>AuthenticationFlowDescriptor. resultSerializerCustom serializer for the results generated by this flow.private BiPredicate<ProfileRequestContext,AuthenticationResult>AuthenticationFlowDescriptor. revocationConditionWhether a result from this flow should be considered revoked.private BiPredicate<ProfileRequestContext,AuthenticationResult>AuthenticationResult. revocationConditionWhether this result should be considered revoked.Methods in net.shibboleth.idp.authn that return AuthenticationResult Modifier and Type Method Description AuthenticationResultAuthenticationFlowDescriptor. deserialize(long version, String context, String key, String value, Long expiration)AuthenticationResultAuthenticationFlowDescriptor. newAuthenticationResult(Subject subject)Creates a new instance of a compatibleAuthenticationResultfor use with the corresponding flow.Methods in net.shibboleth.idp.authn that return types with arguments of type AuthenticationResult Modifier and Type Method Description BiPredicate<ProfileRequestContext,AuthenticationResult>AuthenticationFlowDescriptor. getRevocationCondition()Get condition controlling whether a result from this flow should be considered revoked.Methods in net.shibboleth.idp.authn with parameters of type AuthenticationResult Modifier and Type Method Description booleanAuthenticationFlowDescriptor. isResultActive(AuthenticationResult result)Check if a result generated by this flow is still active.StringAuthenticationFlowDescriptor. serialize(AuthenticationResult instance)booleanAuthenticationResult.DescriptorRevocationPredicate. test(ProfileRequestContext prc, AuthenticationResult result)Method parameters in net.shibboleth.idp.authn with type arguments of type AuthenticationResult Modifier and Type Method Description voidAuthenticationFlowDescriptor. setResultSerializer(StorageSerializer<AuthenticationResult> serializer)Set a custom serializer for results produced by this flow.voidAuthenticationFlowDescriptor. setRevocationCondition(BiPredicate<ProfileRequestContext,AuthenticationResult> condition)Set condition controlling whether a result from this flow should be considered revoked.voidAuthenticationResult. setRevocationCondition(BiPredicate<ProfileRequestContext,AuthenticationResult> condition)Sets condition controlling whether this result has been revoked subsequent to creation. -
Uses of AuthenticationResult in net.shibboleth.idp.authn.context
Fields in net.shibboleth.idp.authn.context declared as AuthenticationResult Modifier and Type Field Description private AuthenticationResultAuthenticationContext. authenticationResultA successful authentication result (the output of the attempted flow, if any).Fields in net.shibboleth.idp.authn.context with type parameters of type AuthenticationResult Modifier and Type Field Description private Map<String,AuthenticationResult>AuthenticationContext. activeResultsAuthentication results associated with an active session and available for (re)use.private Map<String,AuthenticationResult>MultiFactorAuthenticationContext. activeResultsAuthentication results that are active (may be generated earlier or during current request).private Map<String,AuthenticationResult>SubjectContext. authenticationResultsThe active authentication results for the subject.Methods in net.shibboleth.idp.authn.context that return AuthenticationResult Modifier and Type Method Description AuthenticationResultAuthenticationContext. getAuthenticationResult()Get the authentication result produced by the attempted flow, or reused for SSO.Methods in net.shibboleth.idp.authn.context that return types with arguments of type AuthenticationResult Modifier and Type Method Description Map<String,AuthenticationResult>AuthenticationContext. getActiveResults()Get previous authentication results currently active for the subject.Map<String,AuthenticationResult>MultiFactorAuthenticationContext. getActiveResults()Get a live list of theAuthenticationResultobjects produced during the flow.Map<String,AuthenticationResult>SubjectContext. getAuthenticationResults()Get a mutable map of authentication flow IDs to authentication results.Methods in net.shibboleth.idp.authn.context with parameters of type AuthenticationResult Modifier and Type Method Description AuthenticationContextAuthenticationContext. setAuthenticationResult(AuthenticationResult result)Set the authentication result produced by the attempted flow, or reused for SSO.Method parameters in net.shibboleth.idp.authn.context with type arguments of type AuthenticationResult Modifier and Type Method Description AuthenticationContextAuthenticationContext. setActiveResults(Iterable<AuthenticationResult> results)Set the authentication results currently active for the subject. -
Uses of AuthenticationResult in net.shibboleth.idp.authn.principal
Fields in net.shibboleth.idp.authn.principal declared as AuthenticationResult Modifier and Type Field Description private AuthenticationResultAuthenticationResultPrincipal. authnResultThe authentication result.Methods in net.shibboleth.idp.authn.principal that return AuthenticationResult Modifier and Type Method Description AuthenticationResultAuthenticationResultPrincipal. getAuthenticationResult()Get theAuthenticationResult.Constructors in net.shibboleth.idp.authn.principal with parameters of type AuthenticationResult Constructor Description AuthenticationResultPrincipal(AuthenticationResult result)Constructor.
-