in src/main/java/com/epam/digital/data/platform/user/service/FileService.java [45:54]
public FileService(
@Value("${user-import-ceph.bucket}") String userImportBucket,
@Value("${user-import-archive-ceph.bucket}") String userImportArchiveBucket,
CephService userImportCephService,
CephService userImportArchiveCephService) {
this.userImportBucket = userImportBucket;
this.userImportArchiveBucket = userImportArchiveBucket;
this.userImportCephService = userImportCephService;
this.userImportArchiveCephService = userImportArchiveCephService;
}