Package net.shibboleth.idp.authn.context
Class SubjectCanonicalizationContext
- java.lang.Object
-
- org.opensaml.messaging.context.BaseContext
-
- net.shibboleth.idp.authn.context.SubjectCanonicalizationContext
-
- All Implemented Interfaces:
Iterable<BaseContext>
public final class SubjectCanonicalizationContext extends BaseContext
A context that holds an inputSubjectto canonicalize into a principal name, and the collection of c14n flows to attempt.There are different use cases in the system for the c14n process, but all of them share the use of this context as the input and output mechanism.
- Parent:
ProfileRequestContext- Added:
- At the end of a login flow or before any other execution of the subject canonicalization flow
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.opensaml.messaging.context.BaseContext
BaseContext.ContextSetNoRemoveIteratorDecorator
-
-
Field Summary
Fields Modifier and Type Field Description private SubjectCanonicalizationFlowDescriptorattemptedFlowThe last c14 flow attempted.private ExceptioncanonicalizationErrorException raised by a failed canonicalization.private Map<String,SubjectCanonicalizationFlowDescriptor>intermediateFlowsPreviously attempted flows (could be failures or intermediate results).private Map<String,SubjectCanonicalizationFlowDescriptor>potentialFlowsFlows that could potentially be used.private StringprincipalNameCanonical principal name of subject.private StringrequesterIdRequester ID.private StringresponderIdResponder ID.private SubjectsubjectSubject to canonicalize.
-
Constructor Summary
Constructors Constructor Description SubjectCanonicalizationContext()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SubjectCanonicalizationFlowDescriptorgetAttemptedFlow()Get the last flow that was attempted for subject c14n.ExceptiongetException()Get the exception raised by a failed canonicalization.Map<String,SubjectCanonicalizationFlowDescriptor>getIntermediateFlows()Get the set of flows that have been executed, successfully or otherwise, without producing a completed result.Map<String,SubjectCanonicalizationFlowDescriptor>getPotentialFlows()Get the set of flows that could potentially be used for subject canonicalization.StringgetPrincipalName()Get the canonical principal name of the subject.StringgetRequesterId()Get the requester's ID.StringgetResponderId()Get the responder's ID.SubjectgetSubject()Get theSubjectto canonicalize.SubjectCanonicalizationContextsetAttemptedFlow(SubjectCanonicalizationFlowDescriptor flow)Set the last flow that was attempted for subject c14n.SubjectCanonicalizationContextsetException(Exception e)Set the exception raised by a failed canonicalization.SubjectCanonicalizationContextsetPrincipalName(String name)Set the canonical principal name of the subject.SubjectCanonicalizationContextsetRequesterId(String id)Set the requester's ID.SubjectCanonicalizationContextsetResponderId(String id)Set the responder's ID.SubjectCanonicalizationContextsetSubject(Subject newSubject)Set theSubjectto canonicalize.-
Methods inherited from class org.opensaml.messaging.context.BaseContext
addSubcontext, addSubcontext, clearSubcontexts, containsSubcontext, createSubcontext, getParent, getSubcontext, getSubcontext, getSubcontext, getSubcontext, iterator, removeSubcontext, removeSubcontext, setParent
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Field Detail
-
subject
@Nullable private Subject subject
Subject to canonicalize.
-
principalName
@Nullable private String principalName
Canonical principal name of subject.
-
requesterId
@Nullable private String requesterId
Requester ID.
-
responderId
@Nullable private String responderId
Responder ID.
-
potentialFlows
@Nonnull @NonnullElements private final Map<String,SubjectCanonicalizationFlowDescriptor> potentialFlows
Flows that could potentially be used.
-
intermediateFlows
@Nonnull @NonnullElements private final Map<String,SubjectCanonicalizationFlowDescriptor> intermediateFlows
Previously attempted flows (could be failures or intermediate results).
-
attemptedFlow
@Nullable private SubjectCanonicalizationFlowDescriptor attemptedFlow
The last c14 flow attempted.
-
canonicalizationError
@Nullable private Exception canonicalizationError
Exception raised by a failed canonicalization.
-
-
Method Detail
-
getSubject
@Nullable public Subject getSubject()
Get theSubjectto canonicalize.- Returns:
- Subject to canonicalize
-
setSubject
@Nonnull public SubjectCanonicalizationContext setSubject(@Nullable Subject newSubject)
Set theSubjectto canonicalize.- Parameters:
newSubject- Subject to canonicalize- Returns:
- this context
-
getPrincipalName
@Nullable public String getPrincipalName()
Get the canonical principal name of the subject.- Returns:
- the canonical principal name
-
setPrincipalName
@Nonnull public SubjectCanonicalizationContext setPrincipalName(@Nullable String name)
Set the canonical principal name of the subject.- Parameters:
name- the canonical principal name- Returns:
- this context
-
getException
@Nullable public Exception getException()
Get the exception raised by a failed canonicalization.- Returns:
- exception raised by a failed canonicalization
-
setException
@Nonnull public SubjectCanonicalizationContext setException(@Nullable Exception e)
Set the exception raised by a failed canonicalization.- Parameters:
e- exception raised by a failed canonicalization- Returns:
- this context
-
getRequesterId
@Nullable public String getRequesterId()
Get the requester's ID.- Returns:
- the requester's ID
-
setRequesterId
@Nonnull public SubjectCanonicalizationContext setRequesterId(@Nullable String id)
Set the requester's ID.- Parameters:
id- the requester's ID- Returns:
- this context
-
getResponderId
@Nullable public String getResponderId()
Get the responder's ID.- Returns:
- the responder's ID
-
setResponderId
@Nonnull public SubjectCanonicalizationContext setResponderId(@Nullable String id)
Set the responder's ID.- Parameters:
id- the responder's ID- Returns:
- this context
-
getPotentialFlows
@Nonnull @NonnullElements @Live public Map<String,SubjectCanonicalizationFlowDescriptor> getPotentialFlows()
Get the set of flows that could potentially be used for subject canonicalization.- Returns:
- the potential flows
-
getIntermediateFlows
@Nonnull @NonnullElements @Live public Map<String,SubjectCanonicalizationFlowDescriptor> getIntermediateFlows()
Get the set of flows that have been executed, successfully or otherwise, without producing a completed result.- Returns:
- the intermediately executed flows
-
getAttemptedFlow
@Nullable public SubjectCanonicalizationFlowDescriptor getAttemptedFlow()
Get the last flow that was attempted for subject c14n.- Returns:
- last flow that was attempted for subject c14n
-
setAttemptedFlow
@Nonnull public SubjectCanonicalizationContext setAttemptedFlow(@Nullable SubjectCanonicalizationFlowDescriptor flow)
Set the last flow that was attempted for subject c14n.- Parameters:
flow- last flow that was attempted for subject c14n- Returns:
- this context
-
-