Uses of Interface
com.sun.identity.saml2.assertion.Assertion
-
Packages that use Assertion Package Description com.sun.identity.saml2.assertion Defines SAMLv2 assertion.com.sun.identity.saml2.plugins Defines SAMLv2 Plugin SPIs.com.sun.identity.saml2.profile Package that handles SAML v2 profiles.com.sun.identity.saml2.protocol SAMLv2 Protocol Classes.org.forgerock.am.saml2.impl This package contains the implementation of the SAML2 client APIs. -
-
Uses of Assertion in com.sun.identity.saml2.assertion
Methods in com.sun.identity.saml2.assertion that return Assertion Modifier and Type Method Description Assertion
AssertionFactory. createAssertion()
Returns a new instance ofAssertion
.Assertion
AssertionFactory. createAssertion(String xml)
Returns a new instance ofAssertion
.Assertion
AssertionFactory. createAssertion(Element elem)
Returns a new instance ofAssertion
.Assertion
EncryptedAssertion. decrypt(Set<PrivateKey> privateKeys)
Decrypt the encrypted assertion.Methods in com.sun.identity.saml2.assertion that return types with arguments of type Assertion Modifier and Type Method Description List<Assertion>
Evidence. getAssertion()
Returns theAssertion
(s) in the element.List<Assertion>
Advice. getAssertions()
Returns a list ofAssertion
Method parameters in com.sun.identity.saml2.assertion with type arguments of type Assertion Modifier and Type Method Description void
Evidence. setAssertion(List<Assertion> value)
Sets theAssertion
(s) in the element.void
Advice. setAssertions(List<Assertion> assertions)
Sets a list ofAssertion
-
Uses of Assertion in com.sun.identity.saml2.plugins
Methods in com.sun.identity.saml2.plugins with parameters of type Assertion Modifier and Type Method Description String
SPAccountMapper. getIdentity(Assertion assertion, String hostEntityID, String realm)
Returns the user's distinguished name or the universal ID for the correspondingSAML Assertion
. -
Uses of Assertion in com.sun.identity.saml2.profile
Methods in com.sun.identity.saml2.profile that return Assertion Modifier and Type Method Description static Assertion
AssertionIDRequestUtil. sendAssertionIDRequestURI(String assertionID, String samlAuthorityEntityID, String role, String realm)
Sends the Assertion ID to specifiied Assertion ID Request Service and returnsAssertion
coming from the Assertion ID Request Service. -
Uses of Assertion in com.sun.identity.saml2.protocol
Methods in com.sun.identity.saml2.protocol that return types with arguments of type Assertion Modifier and Type Method Description List<Assertion>
Response. getAssertion()
ReturnsAssertion
(s) of the response.Method parameters in com.sun.identity.saml2.protocol with type arguments of type Assertion Modifier and Type Method Description void
Response. setAssertion(List<Assertion> value)
Sets Assertion(s) of the response. -
Uses of Assertion in org.forgerock.am.saml2.impl
Methods in org.forgerock.am.saml2.impl that return Assertion Modifier and Type Method Description Assertion
Saml2ResponseData. getAssertion()
Get the assertion.Methods in org.forgerock.am.saml2.impl with parameters of type Assertion Modifier and Type Method Description Saml2SsoResult
Saml2SsoResponseUtils. getSsoResultWithoutLocalLogin(Realm realm, String spEntityId, String idpEntityId, Subject subject, Assertion assertion, String storageKey)
Processes the received SAML2 response, without triggering local authentication.Map<String,Set<String>>
Saml2SsoResponseUtils. mapSamlAttributes(Realm realm, String spEntityId, String idpEntityId, Saml2SsoResult ssoResult, Assertion assertion)
Maps the SAML2 attributes from the assertion to local attribute values.void
Saml2ResponseData. setAssertion(Assertion assertion)
Sets the assertion.Constructors in org.forgerock.am.saml2.impl with parameters of type Assertion Constructor Description Saml2ResponseData(String sessionIndex, Subject subject, Assertion assertion, com.sun.identity.saml2.profile.ResponseInfo responseInfo, AuthnRequest authnRequest)
Combine a new set of SAML2 response data as a single object.
-