1 package com.github.sbugat.rundeckmonitor;
2
3
4
5
6
7
8
9 public final class RundeckMonitorState {
10
11
12 private boolean failedJobs;
13
14
15 private boolean lateJobs;
16
17
18 private boolean disconnected;
19
20
21
22
23
24
25 public boolean isFailedJobs() {
26 return failedJobs;
27 }
28
29
30
31
32
33
34 public void setFailedJobs(final boolean failedJobsArg) {
35 failedJobs = failedJobsArg;
36 }
37
38
39
40
41
42
43 public boolean isLateJobs() {
44 return lateJobs;
45 }
46
47
48
49
50
51
52 public void setLateJobs(final boolean lateJobsArg) {
53 lateJobs = lateJobsArg;
54 }
55
56
57
58
59
60
61 public boolean isDisconnected() {
62 return disconnected;
63 }
64
65
66
67
68
69
70 public void setDisconnected(final boolean disconnectedArg) {
71 disconnected = disconnectedArg;
72 }
73 }