Segment.java
2.69 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.analytics.testandtarget;
import java.util.Date;
import java.util.Map;
public class Segment {
private long id;
private String path;
private String name;
private String description;
private String segmentRule;
private Date createdAt;
private String createdBy;
private Date modifiedAt;
private String modifiedBy;
private String origin;
private boolean hidden;
private String type;
private Map<String, String> marketingCloudMetadata;
public long getId() {
return this.id;
}
public void setId(long id) {
this.id = id;
}
public String getPath() {
return this.path;
}
public void setPath(String path) {
this.path = path;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getSegmentRule() {
return this.segmentRule;
}
public void setSegmentRule(String segmentRule) {
this.segmentRule = segmentRule;
}
public Date getCreated() {
return this.createdAt;
}
public void setCreated(Date created) {
this.createdAt = created;
}
public String getCreatedBy() {
return this.createdBy;
}
public void setCreatedBy(String createdBy) {
this.createdBy = createdBy;
}
public Date getModified() {
return this.modifiedAt;
}
public void setModified(Date modified) {
this.modifiedAt = modified;
}
public String getModifiedBy() {
return this.modifiedBy;
}
public void setModifiedBy(String modifiedBy) {
this.modifiedBy = modifiedBy;
}
public boolean getHidden() {
return this.hidden;
}
public void setHidden(boolean hidden) {
this.hidden = hidden;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public Map<String, String> getMarketingCloudMetadata() {
return this.marketingCloudMetadata;
}
public void setMarketingCloudMetadata(Map<String, String> metadata) {
this.marketingCloudMetadata = metadata;
}
public String getSource() {
return this.origin;
}
public void setSource(String source) {
this.origin = source;
}
public String toString() {
return "[" + this.getClass().getSimpleName() + " id: " + this.getId() + ", name: " + this.getName() + "]";
}
}