|
@@ -27,9 +27,9 @@ import java.util.Set;
|
|
|
import java.util.concurrent.ExecutorService;
|
|
|
|
|
|
@HealthCheckScoped
|
|
|
-public class CheckController implements FxController {
|
|
|
+public class CheckListController implements FxController {
|
|
|
|
|
|
- private static final Logger LOG = LoggerFactory.getLogger(CheckController.class);
|
|
|
+ private static final Logger LOG = LoggerFactory.getLogger(CheckListController.class);
|
|
|
private static final Set<Worker.State> endStates = Set.of(Worker.State.FAILED, Worker.State.CANCELLED, Worker.State.SUCCEEDED);
|
|
|
|
|
|
private final ObservableList<HealthCheckTask> tasks;
|
|
@@ -49,7 +49,7 @@ public class CheckController implements FxController {
|
|
|
|
|
|
|
|
|
@Inject
|
|
|
- public CheckController(Lazy<Collection<HealthCheckTask>> tasks, ReportWriter reportWriteTask, ObjectProperty<HealthCheckTask> selectedTask, ExecutorService executorService, ResourceBundle resourceBundle) {
|
|
|
+ public CheckListController(Lazy<Collection<HealthCheckTask>> tasks, ReportWriter reportWriteTask, ObjectProperty<HealthCheckTask> selectedTask, ExecutorService executorService, ResourceBundle resourceBundle) {
|
|
|
this.tasks = FXCollections.observableArrayList(tasks.get());
|
|
|
this.reportWriter = reportWriteTask;
|
|
|
this.executorService = executorService;
|