Exemplo n.º 1
0
 public DeleteResourceSetAction(
     IResourceSetRepository resourceSetRepository,
     IUmaServerEventSource umaServerEventSource)
 {
     _resourceSetRepository = resourceSetRepository;
     _umaServerEventSource  = umaServerEventSource;
 }
 public DeleteScopeAction(
     IScopeRepository scopeRepository,
     IUmaServerEventSource umaServerEventSource)
 {
     _scopeRepository      = scopeRepository;
     _umaServerEventSource = umaServerEventSource;
 }
Exemplo n.º 3
0
 public UpdatePolicyAction(IPolicyRepository policyRepository, IRepositoryExceptionHelper repositoryExceptionHelper,
                           IResourceSetRepository resourceSetRepository, IUmaServerEventSource umaServerEventSource)
 {
     _policyRepository          = policyRepository;
     _repositoryExceptionHelper = repositoryExceptionHelper;
     _resourceSetRepository     = resourceSetRepository;
     _umaServerEventSource      = umaServerEventSource;
 }
Exemplo n.º 4
0
 public UpdateResourceSetAction(
     IResourceSetRepository resourceSetRepository,
     IResourceSetParameterValidator resourceSetParameterValidator,
     IUmaServerEventSource umaServerEventSource)
 {
     _resourceSetRepository         = resourceSetRepository;
     _resourceSetParameterValidator = resourceSetParameterValidator;
     _umaServerEventSource          = umaServerEventSource;
 }
 public GetIntrospectAction(
     IRptRepository rptRepository,
     ITicketRepository ticketRepository,
     IUmaServerEventSource umaServerEventSource)
 {
     _rptRepository        = rptRepository;
     _ticketRepository     = ticketRepository;
     _umaServerEventSource = umaServerEventSource;
 }
 public InsertScopeAction(
     IScopeRepository scopeRepository,
     IScopeParameterValidator scopeParameterValidator,
     IUmaServerEventSource umaServerEventSource)
 {
     _scopeRepository         = scopeRepository;
     _scopeParameterValidator = scopeParameterValidator;
     _umaServerEventSource    = umaServerEventSource;
 }
Exemplo n.º 7
0
 public DeleteAuthorizationPolicyAction(
     IPolicyRepository policyRepository,
     IRepositoryExceptionHelper repositoryExceptionHelper,
     IUmaServerEventSource umaServerEventSource)
 {
     _policyRepository          = policyRepository;
     _repositoryExceptionHelper = repositoryExceptionHelper;
     _umaServerEventSource      = umaServerEventSource;
 }
Exemplo n.º 8
0
 public AuthorizationPolicyValidator(
     IBasicAuthorizationPolicy basicAuthorizationPolicy,
     IResourceSetRepository resourceSetRepository,
     IUmaServerEventSource umaServerEventSource)
 {
     _basicAuthorizationPolicy = basicAuthorizationPolicy;
     _resourceSetRepository    = resourceSetRepository;
     _umaServerEventSource     = umaServerEventSource;
 }
Exemplo n.º 9
0
 public AddPermissionAction(
     IResourceSetRepository resourceSetRepository,
     ITicketStore ticketStore,
     IRepositoryExceptionHelper repositoryExceptionHelper,
     IUmaConfigurationService configurationService,
     IUmaServerEventSource umaServerEventSource)
 {
     _resourceSetRepository     = resourceSetRepository;
     _ticketStore               = ticketStore;
     _repositoryExceptionHelper = repositoryExceptionHelper;
     _configurationService      = configurationService;
     _umaServerEventSource      = umaServerEventSource;
 }
Exemplo n.º 10
0
 public GetTokenByTicketIdAction(ITicketStore ticketStore, IUmaConfigurationService configurationService,
                                 IUmaServerEventSource umaServerEventSource, IAuthorizationPolicyValidator authorizationPolicyValidator, IAuthenticateInstructionGenerator authenticateInstructionGenerator,
                                 IAuthenticateClient authenticateClient, IJwtGenerator jwtGenerator, IClientHelper clientHelper, ITokenStore tokenStore)
 {
     _ticketStore                      = ticketStore;
     _configurationService             = configurationService;
     _umaServerEventSource             = umaServerEventSource;
     _authorizationPolicyValidator     = authorizationPolicyValidator;
     _authenticateInstructionGenerator = authenticateInstructionGenerator;
     _authenticateClient               = authenticateClient;
     _jwtGenerator                     = jwtGenerator;
     _clientHelper                     = clientHelper;
     _tokenStore = tokenStore;
 }
Exemplo n.º 11
0
 public GetAuthorizationAction(
     ITicketRepository ticketRepository,
     IAuthorizationPolicyValidator authorizationPolicyValidator,
     IConfigurationService configurationService,
     IRptRepository rptRepository,
     IRepositoryExceptionHelper repositoryExceptionHelper,
     IUmaServerEventSource umaServerEventSource)
 {
     _ticketRepository             = ticketRepository;
     _authorizationPolicyValidator = authorizationPolicyValidator;
     _configurationService         = configurationService;
     _rptRepository             = rptRepository;
     _repositoryExceptionHelper = repositoryExceptionHelper;
     _umaServerEventSource      = umaServerEventSource;
 }