AnalyticsEvent.java
1.31 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
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.analytics.sitecatalyst.impl.model;
import com.day.cq.analytics.sitecatalyst.impl.model.AnalyticsVariable;
public class AnalyticsEvent
extends AnalyticsVariable {
private String type;
private boolean defaultMetric;
private String participation;
private String serialization;
private String rsidList;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public boolean isDefaultMetric() {
return this.defaultMetric;
}
public void setDefaultMetric(boolean defaultMetric) {
this.defaultMetric = defaultMetric;
}
public String getParticipation() {
return this.participation;
}
public void setParticipation(String participation) {
this.participation = participation;
}
public String getSerialization() {
return this.serialization;
}
public void setSerialization(String serialization) {
this.serialization = serialization;
}
public String getRsidList() {
return this.rsidList;
}
public void setRsidList(String rsidList) {
this.rsidList = rsidList;
}
@Override
public boolean isEnabled() {
return !"disabled".equals(this.type);
}
}