public RoleService()

in src/main/java/com/epam/digital/data/platform/report/service/RoleService.java [50:62]


  public RoleService(
      @Value("${PWD_ADMIN}") String adminPassword,
      @Value("${PWD_AUDITOR}") String auditorPassword,
      GroupService groupService,
      UserService userService,
      DataSourceService dataSourceService) {
    this.groupService = groupService;
    this.userService = userService;
    this.dataSourceService = dataSourceService;

    this.rolePasswordMap.put(ADMIN_ROLE_NAME, adminPassword);
    this.rolePasswordMap.put(AUDITOR_ROLE_NAME, auditorPassword);
  }