Interface RelyingPartyRegistrationRepository

All Known Implementing Classes:
InMemoryRelyingPartyRegistrationRepository

public interface RelyingPartyRegistrationRepository
A repository for RelyingPartyRegistrations
Since:
5.2
  • Method Details

    • findByRegistrationId

      RelyingPartyRegistration findByRegistrationId(String registrationId)
      Returns the relying party registration identified by the provided registrationId, or null if not found.
      Parameters:
      registrationId - the registration identifier
      Returns:
      the RelyingPartyRegistration if found, otherwise null
    • findUniqueByAssertingPartyEntityId

      default RelyingPartyRegistration findUniqueByAssertingPartyEntityId(String entityId)
      Returns the unique relying party registration associated with the asserting party's entityId or null if there is no unique match.
      Parameters:
      entityId - the asserting party's entity id
      Returns:
      the unique RelyingPartyRegistration associated the given asserting party; null of there is no unique match asserting party
      Since:
      6.1