-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAutoInstallState.java
More file actions
84 lines (63 loc) · 1.89 KB
/
AutoInstallState.java
File metadata and controls
84 lines (63 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package io.sentry.autoinstall;
import org.jetbrains.annotations.NotNull;
public class AutoInstallState {
private @NotNull String sentryVersion;
private boolean installSpring = false;
private boolean installLogback = false;
private boolean installLog4j2 = false;
private boolean installJdbc = false;
private boolean installGraphql = false;
private boolean installQuartz = false;
private boolean installProfiler = false;
public AutoInstallState(final @NotNull String sentryVersion) {
this.sentryVersion = sentryVersion;
}
public @NotNull String getSentryVersion() {
return sentryVersion;
}
public void setSentryVersion(@NotNull String sentryVersion) {
this.sentryVersion = sentryVersion;
}
public boolean isInstallSpring() {
return installSpring;
}
public void setInstallSpring(boolean installSpring) {
this.installSpring = installSpring;
}
public boolean isInstallLogback() {
return installLogback;
}
public void setInstallLogback(boolean installLogback) {
this.installLogback = installLogback;
}
public boolean isInstallLog4j2() {
return installLog4j2;
}
public void setInstallLog4j2(boolean installLog4j2) {
this.installLog4j2 = installLog4j2;
}
public boolean isInstallJdbc() {
return installJdbc;
}
public void setInstallJdbc(boolean installJdbc) {
this.installJdbc = installJdbc;
}
public boolean isInstallGraphql() {
return installGraphql;
}
public void setInstallGraphql(boolean installGraphql) {
this.installGraphql = installGraphql;
}
public boolean isInstallQuartz() {
return installQuartz;
}
public void setInstallQuartz(boolean installQuartz) {
this.installQuartz = installQuartz;
}
public boolean isInstallProfiler() {
return installProfiler;
}
public void setInstallProfiler(boolean installProfiler) {
this.installProfiler = installProfiler;
}
}