public TenantService()

in service/src/main/java/org/apache/fineract/cn/provisioner/internal/service/TenantService.java [66:81]


  public TenantService(@Qualifier(ProvisionerConstants.LOGGER_NAME) final Logger logger,
                       final Environment environment,
                       final TenantApplicationService tenantApplicationService,
                       @SuppressWarnings("SpringJavaAutowiringInspection") final TenantAuthorizationDataRepository tenantAuthorizationDataRepository,
                       final TenantCassandraRepository tenantCassandraRepository,
                       final IdentityServiceInitializer identityServiceInitializer,
                       final ProvisionerProperties provisionerProperties) {
    super();
    this.logger = logger;
    this.environment = environment;
    this.tenantApplicationService = tenantApplicationService;
    this.tenantAuthorizationDataRepository = tenantAuthorizationDataRepository;
    this.tenantCassandraRepository = tenantCassandraRepository;
    this.identityServiceInitializer = identityServiceInitializer;
    this.provisionerProperties = provisionerProperties;
  }