File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
src/main/java/com/featureprobe/sdk/server/model Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 6
6
7
7
<groupId >com.featureprobe</groupId >
8
8
<artifactId >server-sdk-java</artifactId >
9
- <version >1.4.0 </version >
9
+ <version >1.4.1-SNAPSHOT </version >
10
10
<name >server-sdk-java</name >
11
11
<url >https://github.com/FeatureProbe/server-sdk-java</url >
12
12
<description >FeatureProbe Server Side SDK for Java</description >
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ public final class Toggle {
14
14
15
15
private Boolean enabled ;
16
16
17
+ private Boolean trackAccessEvents ;
18
+
19
+ private Long lastModified ;
20
+
17
21
private Long version ;
18
22
19
23
private Serve disabledServe ;
@@ -140,4 +144,20 @@ public void setForClient(Boolean forClient) {
140
144
this .forClient = forClient ;
141
145
}
142
146
147
+ public void setTrackAccessEvents (Boolean trackAccessEvents ) {
148
+ this .trackAccessEvents = trackAccessEvents ;
149
+ }
150
+
151
+ public Boolean getTrackAccessEvents () {
152
+ return trackAccessEvents ;
153
+ }
154
+
155
+ public void setLastModified (Long lastModified ) {
156
+ this .lastModified = lastModified ;
157
+ }
158
+
159
+ public Long getLastModified () {
160
+ return lastModified ;
161
+ }
162
+
143
163
}
You can’t perform that action at this time.
0 commit comments