Interface ResponseProcessingResult
-
- All Known Implementing Classes:
ResponseProcessingResultImpl
public interface ResponseProcessingResult
Interface that describes the result of a response processing operation. It contains the actualAssertion
that really holds all information, but also "easy to access" methods of the elements that are of most interest.Note that only successful responses are represented. Error responses are represented using the
ResponseStatusErrorException
.- Author:
- Martin Lindström (martin.lindstrom@litsec.se)
-
-
Method Summary
All Methods Instance Methods Abstract 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.
-
-
-
Method Detail
-
getAssertion
Assertion getAssertion()
Returns theAssertion
from the response.- Returns:
- the
Assertion
-
getAttributes
List<Attribute> getAttributes()
Returns the attributes that are part of the attribute statement of the assertion.- Returns:
- an (unmodifiable) list of attributes
-
getAuthnContextClassUri
String getAuthnContextClassUri()
Returns the URI for theAuthnContextClassRef
element that holds the "level of assurance" under which the authentication was made.- Returns:
- LoA URI
-
getAuthnInstant
Instant getAuthnInstant()
Returns the authentication instant.- Returns:
- the instant at which the user authenticated
-
getIssuer
String getIssuer()
Returns the entityID of the issuing IdP.- Returns:
- entityID for the IdP
-
getSubjectNameID
NameID getSubjectNameID()
Returns theNameID
for the subject.- Returns:
- the nameID
-
-