mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
15.28.2019 7d103e1e78fa30a588cd019ed7a20efc6e2444ea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package de.micromata.borgbutler.server.rest;
 
import de.micromata.borgbutler.BorgQueueStatistics;
import lombok.Getter;
import lombok.Setter;
 
/**
 * Statistics of all the job queues, especially the number of total queued and running jobs.
 * This is used e. g. by the client for showing a badge near to the menu entry "job monitor" with the number
 * of Jobs in the queues.
 */
public class SystemInfo {
    @Getter
    @Setter
    private BorgQueueStatistics queueStatistics;
 
    @Getter
    @Setter
    private boolean configurationOK;
}