Class ResponseProcessingResultImpl
- java.lang.Object
-
- se.litsec.opensaml.saml2.common.response.ResponseProcessingResultImpl
-
- All Implemented Interfaces:
ResponseProcessingResult
public class ResponseProcessingResultImpl extends Object implements ResponseProcessingResult
Implementation of theResponseProcessingResult
interface.- Author:
- Martin Lindström (martin.lindstrom@litsec.se)
-
-
Constructor Summary
Constructors Constructor Description ResponseProcessingResultImpl(Assertion assertion)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Assertion
getAssertion()
Returns theAssertion
from the response.List<Attribute>
getAttributes()
Returns the attributes that are part of the attribute statement of the assertion.String
getAuthnContextClassUri()
Returns the URI for theAuthnContextClassRef
element that holds the "level of assurance" under which the authentication was made.Instant
getAuthnInstant()
Returns the authentication instant.String
getIssuer()
Returns the entityID of the issuing IdP.NameID
getSubjectNameID()
Returns theNameID
for the subject.
-
-
-
Constructor Detail
-
ResponseProcessingResultImpl
public ResponseProcessingResultImpl(Assertion assertion)
Constructor.- Parameters:
assertion
- theAssertion
-
-
Method Detail
-
getAssertion
public Assertion getAssertion()
Returns theAssertion
from the response.- Specified by:
getAssertion
in interfaceResponseProcessingResult
- Returns:
- the
Assertion
-
getAttributes
public List<Attribute> getAttributes()
Returns the attributes that are part of the attribute statement of the assertion.- Specified by:
getAttributes
in interfaceResponseProcessingResult
- Returns:
- an (unmodifiable) list of attributes
-
getAuthnContextClassUri
public String getAuthnContextClassUri()
Returns the URI for theAuthnContextClassRef
element that holds the "level of assurance" under which the authentication was made.- Specified by:
getAuthnContextClassUri
in interfaceResponseProcessingResult
- Returns:
- LoA URI
-
getAuthnInstant
public Instant getAuthnInstant()
Returns the authentication instant.- Specified by:
getAuthnInstant
in interfaceResponseProcessingResult
- Returns:
- the instant at which the user authenticated
-
getIssuer
public String getIssuer()
Returns the entityID of the issuing IdP.- Specified by:
getIssuer
in interfaceResponseProcessingResult
- Returns:
- entityID for the IdP
-
getSubjectNameID
public NameID getSubjectNameID()
Returns theNameID
for the subject.- Specified by:
getSubjectNameID
in interfaceResponseProcessingResult
- Returns:
- the nameID
-
-