Interface SAMLArtifactMap.SAMLArtifactMapEntry
-
- All Known Implementing Classes:
BasicSAMLArtifactMapEntry,ExpiringSAMLArtifactMapEntry
- Enclosing interface:
- SAMLArtifactMap
public static interface SAMLArtifactMap.SAMLArtifactMapEntryRepresents a mapping between an artifact and a SAML message with some associated information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetArtifact()Gets the artifact that maps to the SAML message.StringgetIssuerId()Gets the ID of the issuer of the artifact.StringgetRelyingPartyId()Gets the ID of the relying party the artifact was sent to.SAMLObjectgetSamlMessage()Gets SAML message the artifact maps to.
-
-
-
Method Detail
-
getArtifact
@Nonnull @NotEmpty String getArtifact()
Gets the artifact that maps to the SAML message.- Returns:
- artifact that maps to the SAML message
-
getIssuerId
@Nonnull @NotEmpty String getIssuerId()
Gets the ID of the issuer of the artifact.- Returns:
- ID of the issuer of the artifact
-
getRelyingPartyId
@Nonnull @NotEmpty String getRelyingPartyId()
Gets the ID of the relying party the artifact was sent to.- Returns:
- ID of the relying party the artifact was sent to
-
getSamlMessage
@Nonnull SAMLObject getSamlMessage()
Gets SAML message the artifact maps to.- Returns:
- SAML message the artifact maps to
-
-