Package net.shibboleth.idp.authn
Class AuthenticationResult
java.lang.Object
net.shibboleth.idp.authn.AuthenticationResult
- All Implemented Interfaces:
Predicate<ProfileRequestContext>
,PrincipalSupportingComponent
public class AuthenticationResult
extends Object
implements PrincipalSupportingComponent, Predicate<ProfileRequestContext>
Describes an act of authentication.
Any authentication flow that succeeds must produce a single instance of this object. It may be composite, in the sense that it may represent a combination of separate exchanges that make up a single overall result, but the IdP always acts on a single result as the product of a given request for a login.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescription(package private) class
Inner class that delegates reuse condition evaluation to the underlyingAuthenticationFlowDescriptor
.(package private) class
Inner class that delegates revocation condition evaluation to the underlyingAuthenticationFlowDescriptor
.(package private) class
Inner class implementing a predicate that checks for containedProxyAuthenticationPrincipal
objects and enforces any restrictions on reuse based on the current request. -
Field Summary
FieldsModifier and TypeFieldDescriptionA map of additional data to associate with the result.private final String
The identifier of the flow used to produce this result.private Instant
The time that the authentication completed.private Instant
The last time this result was used to bypass authentication.private boolean
Tracks whether a result was loaded from a previous session or created as part of the current request.private Predicate<ProfileRequestContext>
Whether this result can be reused.Whether this result should be considered revoked.private final Subject
The Subject established by the authentication result. -
Constructor Summary
ConstructorsConstructorDescriptionAuthenticationResult
(String flowId, Principal principal) Constructor.AuthenticationResult
(String flowId, Subject newSubject) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Gets a mutable map of additional name/value string properties to associate with and store with the result.Get the flow used to authenticate the principal.Get the time that the authentication completed.Get the last time this result was used for authentication.Gets condition controlling whether this result should be reused for SSO.Gets the Subject identifying the authenticated entity.private String
Get a suitable principal name for logging/debugging use.getSupportedPrincipals
(Class<T> c) Get an immutable set of supported custom principals that the component produces, supports, contains, etc.int
hashCode()
boolean
Get whether this result was loaded from a session as the product of a previous request.void
setAuthenticationInstant
(Instant instant) Set the time that the authentication completed.void
setLastActivityInstant
(Instant instant) Set the last time result was used for authentication.void
Set the last activity instant for this result to the current time.void
setPreviousResult
(boolean flag) Set whether this result was loaded from a session as the product of a previous request.void
setReuseCondition
(Predicate<ProfileRequestContext> condition) Sets condition controlling whether this result should be reused for SSO.void
Sets condition controlling whether this result has been revoked subsequent to creation.boolean
test
(ProfileRequestContext input) toString()
-
Field Details
-
subject
The Subject established by the authentication result. -
authenticationFlowId
The identifier of the flow used to produce this result. -
authenticationInstant
The time that the authentication completed. -
lastActivityInstant
The last time this result was used to bypass authentication. -
previousResult
private boolean previousResultTracks whether a result was loaded from a previous session or created as part of the current request. -
additionalData
A map of additional data to associate with the result. -
reuseCondition
Whether this result can be reused. -
revocationCondition
Whether this result should be considered revoked.
-
-
Constructor Details
-
AuthenticationResult
Constructor.Sets the authentication instant to the current time.
- Parameters:
flowId
- the workflow used to authenticate the subjectnewSubject
- a Subject identifying the authenticated entity
-
AuthenticationResult
Constructor.Sets the authentication instant to the current time.
- Parameters:
flowId
- the workflow used to authenticate the subjectprincipal
- a Principal identifying the authenticated entity
-
-
Method Details
-
getReuseCondition
Gets condition controlling whether this result should be reused for SSO.- Returns:
- condition controlling whether result should be reused for SSO
- Since:
- 4.0.0
-
setReuseCondition
Sets condition controlling whether this result should be reused for SSO.- Parameters:
condition
- condition to set- Since:
- 4.0.0
-
setRevocationCondition
public void setRevocationCondition(@Nullable BiPredicate<ProfileRequestContext, AuthenticationResult> condition) Sets condition controlling whether this result has been revoked subsequent to creation.- Parameters:
condition
- condition to set- Since:
- 4.3.0
-
test
- Specified by:
test
in interfacePredicate<ProfileRequestContext>
-
getSubject
Gets the Subject identifying the authenticated entity.- Returns:
- a Subject identifying the authenticated entity
-
getSupportedPrincipals
@Nonnull @NonnullElements @Unmodifiable @NotLive public <T extends Principal> Set<T> getSupportedPrincipals(@Nonnull Class<T> c) Get an immutable set of supported custom principals that the component produces, supports, contains, etc.- Specified by:
getSupportedPrincipals
in interfacePrincipalSupportingComponent
- Type Parameters:
T
- type of Principal to inquire on- Parameters:
c
- type of Principal to inquire on- Returns:
- a set of matching principals
-
getAuthenticationFlowId
Get the flow used to authenticate the principal.- Returns:
- flow used to authenticate the principal
-
getAuthenticationInstant
Get the time that the authentication completed.- Returns:
- time that the authentication completed
-
setAuthenticationInstant
Set the time that the authentication completed.- Parameters:
instant
- time that the authentication completed, never non-positive
-
getLastActivityInstant
Get the last time this result was used for authentication.- Returns:
- last time this result was used for authentication
-
setLastActivityInstant
Set the last time result was used for authentication.- Parameters:
instant
- last time result was used to bypass authentication
-
setLastActivityInstantToNow
public void setLastActivityInstantToNow()Set the last activity instant for this result to the current time. -
isPreviousResult
public boolean isPreviousResult()Get whether this result was loaded from a session as the product of a previous request.- Returns:
- true iff this result was produced as part of an earlier request
- Since:
- 3.3.0
-
setPreviousResult
public void setPreviousResult(boolean flag) Set whether this result was loaded from a session as the product of a previous request.- Parameters:
flag
- flag to set- Since:
- 3.3.0
-
getAdditionalData
Gets a mutable map of additional name/value string properties to associate with and store with the result.Note that the implementation may or may not explicitly break on null keys or values but using them is not intended to work and the behavior in such cases is unspecified.
- Returns:
- a mutable map
- Since:
- 4.0.0
-
hashCode
public int hashCode() -
equals
-
toString
-
getSubjectName
Get a suitable principal name for logging/debugging use.- Returns:
- a principal name for logging/debugging
-