Interface ReactiveClientRegistrationRepository
- All Known Implementing Classes:
- InMemoryReactiveClientRegistrationRepository
public interface ReactiveClientRegistrationRepository
A reactive repository for OAuth 2.0 / OpenID Connect 1.0 
ClientRegistration(s).
 NOTE: Client registration information is ultimately stored and owned by the associated Authorization Server. Therefore, this repository provides the capability to store a sub-set copy of the primary client registration information externally from the Authorization Server.
- Since:
- 5.1
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionreactor.core.publisher.Mono<ClientRegistration>findByRegistrationId(String registrationId) Returns the client registration identified by the providedregistrationId, ornullif not found.
- 
Method Details- 
findByRegistrationIdReturns the client registration identified by the providedregistrationId, ornullif not found.- Parameters:
- registrationId- the registration identifier
- Returns:
- the ClientRegistrationif found, otherwisenull
 
 
-