Interface RelyingPartyRegistrationRepository
- All Known Subinterfaces:
IterableRelyingPartyRegistrationRepository
- All Known Implementing Classes:
CachingRelyingPartyRegistrationRepository,InMemoryRelyingPartyRegistrationRepository
public interface RelyingPartyRegistrationRepository
A repository for
RelyingPartyRegistrations- Since:
- 5.2
-
Method Summary
Modifier and TypeMethodDescriptionfindByRegistrationId(String registrationId) Returns the relying party registration identified by the providedregistrationId, ornullif not found.default RelyingPartyRegistrationfindUniqueByAssertingPartyEntityId(String entityId) Returns the unique relying party registration associated with the asserting party'sentityIdornullif there is no unique match.
-
Method Details
-
findByRegistrationId
Returns the relying party registration identified by the providedregistrationId, ornullif not found.- Parameters:
registrationId- the registration identifier- Returns:
- the
RelyingPartyRegistrationif found, otherwisenull
-
findUniqueByAssertingPartyEntityId
Returns the unique relying party registration associated with the asserting party'sentityIdornullif there is no unique match.- Parameters:
entityId- the asserting party's entity id- Returns:
- the unique
RelyingPartyRegistrationassociated the given asserting party;nullof there is no unique match asserting party - Since:
- 6.1
-