Esempio n. 1
0
 public IndexModel(
     IConsentDiscoveryCacheAccessor consentDiscoveryCacheAccessor,
     IOIDCConsentOrchestratorAdmin oIDCConsentOrchestratorAdmin,
     ILogger <IndexModel> logger)
 {
     _consentDiscoveryCacheAccessor = consentDiscoveryCacheAccessor;
     _oidcConsentOrchestratorAdmin  = oIDCConsentOrchestratorAdmin;
     _logger = logger;
 }
Esempio n. 2
0
 public AuthorizeConsentModel(
     IConsentExternalService consentExternalService,
     IConsentDiscoveryCacheAccessor consentDiscoveryCacheAccessor,
     IOIDCConsentOrchestratorAdmin oidcConsentOrchestratorAdmin,
     IOIDCPipeLineKey oidcPipelineKey,
     IOIDCPipelineStore oidcPipelineStore,
     IFluffyBunnyTokenService fluffyBunnyTokenService,
     IOptions <FluffyBunny4TokenServiceConfiguration> optionsFluffyBunny4TokenServiceConfiguration,
     ITokenServiceDiscoveryCache tokenServiceDiscoveryCache,
     ISerializer serializer,
     ILogger <AuthorizeConsentModel> logger)
 {
     _consentExternalService        = consentExternalService;
     _consentDiscoveryCacheAccessor = consentDiscoveryCacheAccessor;
     _oidcConsentOrchestratorAdmin  = oidcConsentOrchestratorAdmin;
     _oidcPipelineKey         = oidcPipelineKey;
     _oidcPipelineStore       = oidcPipelineStore;
     _fluffyBunnyTokenService = fluffyBunnyTokenService;
     _FluffyBunny4TokenServiceConfiguration = optionsFluffyBunny4TokenServiceConfiguration.Value;
     _tokenServiceDiscoveryCache            = tokenServiceDiscoveryCache;
     _serializer = serializer;
     _logger     = logger;
 }
 public EFOIDCPipelineClientStore(
     IOIDCConsentOrchestratorAdmin oidcConsentOrchestratorAdmin)
 {
     _oidcConsentOrchestratorAdmin = oidcConsentOrchestratorAdmin;
 }