public AuthHealthCheck()

in src/main/java/com/googlesource/gerrit/plugins/healthcheck/check/AuthHealthCheck.java [42:56]


  public AuthHealthCheck(
      ListeningExecutorService executor,
      HealthCheckConfig config,
      Realm realm,
      AccountCache byIdCache,
      AuthRequest.Factory authRequestFactory,
      HealthCheckMetrics.Factory healthCheckMetricsFactory) {
    super(executor, config, AUTH, healthCheckMetricsFactory);

    this.realm = realm;
    this.byIdCache = byIdCache;
    this.username = config.getUsername(AUTH);
    this.password = config.getPassword(AUTH);
    this.authRequestFactory = authRequestFactory;
  }