@lansweeper/data-platform-outbound-grpc 0.10.0 → 0.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +6 -0
- package/gen-proto/outbound_pb.js +48 -0
- package/generated-go/outbound.pb.go +11645 -11635
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +1 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFieldsOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/outbound.proto +1 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFields.java +419 -226
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFieldsOrBuilder.java +29 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3806 -3805
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.9.1-sources.jar → outbound-model-0.10.0-sources.jar} +0 -0
- package/model/target/{outbound-model-0.9.1.jar → outbound-model-0.10.0.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +1 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.9.1-sources.jar → outbound-service-0.10.0-sources.jar} +0 -0
- package/service/target/{outbound-service-0.9.1.jar → outbound-service-0.10.0.jar} +0 -0
package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFields.java
CHANGED
|
@@ -23,6 +23,7 @@ private static final long serialVersionUID = 0L;
|
|
|
23
23
|
super(builder);
|
|
24
24
|
}
|
|
25
25
|
private LegacyFields() {
|
|
26
|
+
assetId_ = "";
|
|
26
27
|
groupLink_ = java.util.Collections.emptyList();
|
|
27
28
|
ipLocationKey_ = "";
|
|
28
29
|
ipLocationId_ = "";
|
|
@@ -49,6 +50,65 @@ private static final long serialVersionUID = 0L;
|
|
|
49
50
|
}
|
|
50
51
|
|
|
51
52
|
private int bitField0_;
|
|
53
|
+
public static final int ASSET_ID_FIELD_NUMBER = 19;
|
|
54
|
+
@SuppressWarnings("serial")
|
|
55
|
+
private volatile java.lang.Object assetId_ = "";
|
|
56
|
+
/**
|
|
57
|
+
* <pre>
|
|
58
|
+
* Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
|
|
59
|
+
* </pre>
|
|
60
|
+
*
|
|
61
|
+
* <code>optional string asset_id = 19;</code>
|
|
62
|
+
* @return Whether the assetId field is set.
|
|
63
|
+
*/
|
|
64
|
+
@java.lang.Override
|
|
65
|
+
public boolean hasAssetId() {
|
|
66
|
+
return ((bitField0_ & 0x00000001) != 0);
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* <pre>
|
|
70
|
+
* Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
|
|
71
|
+
* </pre>
|
|
72
|
+
*
|
|
73
|
+
* <code>optional string asset_id = 19;</code>
|
|
74
|
+
* @return The assetId.
|
|
75
|
+
*/
|
|
76
|
+
@java.lang.Override
|
|
77
|
+
public java.lang.String getAssetId() {
|
|
78
|
+
java.lang.Object ref = assetId_;
|
|
79
|
+
if (ref instanceof java.lang.String) {
|
|
80
|
+
return (java.lang.String) ref;
|
|
81
|
+
} else {
|
|
82
|
+
com.google.protobuf.ByteString bs =
|
|
83
|
+
(com.google.protobuf.ByteString) ref;
|
|
84
|
+
java.lang.String s = bs.toStringUtf8();
|
|
85
|
+
assetId_ = s;
|
|
86
|
+
return s;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* <pre>
|
|
91
|
+
* Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
|
|
92
|
+
* </pre>
|
|
93
|
+
*
|
|
94
|
+
* <code>optional string asset_id = 19;</code>
|
|
95
|
+
* @return The bytes for assetId.
|
|
96
|
+
*/
|
|
97
|
+
@java.lang.Override
|
|
98
|
+
public com.google.protobuf.ByteString
|
|
99
|
+
getAssetIdBytes() {
|
|
100
|
+
java.lang.Object ref = assetId_;
|
|
101
|
+
if (ref instanceof java.lang.String) {
|
|
102
|
+
com.google.protobuf.ByteString b =
|
|
103
|
+
com.google.protobuf.ByteString.copyFromUtf8(
|
|
104
|
+
(java.lang.String) ref);
|
|
105
|
+
assetId_ = b;
|
|
106
|
+
return b;
|
|
107
|
+
} else {
|
|
108
|
+
return (com.google.protobuf.ByteString) ref;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
52
112
|
public static final int LAST_TRIED_FIELD_NUMBER = 1;
|
|
53
113
|
private com.google.protobuf.Timestamp lastTried_;
|
|
54
114
|
/**
|
|
@@ -57,7 +117,7 @@ private static final long serialVersionUID = 0L;
|
|
|
57
117
|
*/
|
|
58
118
|
@java.lang.Override
|
|
59
119
|
public boolean hasLastTried() {
|
|
60
|
-
return ((bitField0_ &
|
|
120
|
+
return ((bitField0_ & 0x00000002) != 0);
|
|
61
121
|
}
|
|
62
122
|
/**
|
|
63
123
|
* <code>optional .google.protobuf.Timestamp last_tried = 1;</code>
|
|
@@ -83,7 +143,7 @@ private static final long serialVersionUID = 0L;
|
|
|
83
143
|
*/
|
|
84
144
|
@java.lang.Override
|
|
85
145
|
public boolean hasLastActiveScan() {
|
|
86
|
-
return ((bitField0_ &
|
|
146
|
+
return ((bitField0_ & 0x00000004) != 0);
|
|
87
147
|
}
|
|
88
148
|
/**
|
|
89
149
|
* <code>optional .google.protobuf.Timestamp last_active_scan = 2;</code>
|
|
@@ -109,7 +169,7 @@ private static final long serialVersionUID = 0L;
|
|
|
109
169
|
*/
|
|
110
170
|
@java.lang.Override
|
|
111
171
|
public boolean hasLastIpScan() {
|
|
112
|
-
return ((bitField0_ &
|
|
172
|
+
return ((bitField0_ & 0x00000008) != 0);
|
|
113
173
|
}
|
|
114
174
|
/**
|
|
115
175
|
* <code>optional .google.protobuf.Timestamp last_ip_scan = 3;</code>
|
|
@@ -135,7 +195,7 @@ private static final long serialVersionUID = 0L;
|
|
|
135
195
|
*/
|
|
136
196
|
@java.lang.Override
|
|
137
197
|
public boolean hasLastSaved() {
|
|
138
|
-
return ((bitField0_ &
|
|
198
|
+
return ((bitField0_ & 0x00000010) != 0);
|
|
139
199
|
}
|
|
140
200
|
/**
|
|
141
201
|
* <code>optional .google.protobuf.Timestamp last_saved = 4;</code>
|
|
@@ -161,7 +221,7 @@ private static final long serialVersionUID = 0L;
|
|
|
161
221
|
*/
|
|
162
222
|
@java.lang.Override
|
|
163
223
|
public boolean hasLastSccmScan() {
|
|
164
|
-
return ((bitField0_ &
|
|
224
|
+
return ((bitField0_ & 0x00000020) != 0);
|
|
165
225
|
}
|
|
166
226
|
/**
|
|
167
227
|
* <code>optional .google.protobuf.Timestamp last_sccm_scan = 5;</code>
|
|
@@ -187,7 +247,7 @@ private static final long serialVersionUID = 0L;
|
|
|
187
247
|
*/
|
|
188
248
|
@java.lang.Override
|
|
189
249
|
public boolean hasLastLsAgent() {
|
|
190
|
-
return ((bitField0_ &
|
|
250
|
+
return ((bitField0_ & 0x00000040) != 0);
|
|
191
251
|
}
|
|
192
252
|
/**
|
|
193
253
|
* <code>optional .google.protobuf.Timestamp last_ls_agent = 6;</code>
|
|
@@ -213,7 +273,7 @@ private static final long serialVersionUID = 0L;
|
|
|
213
273
|
*/
|
|
214
274
|
@java.lang.Override
|
|
215
275
|
public boolean hasLastLsFallBack() {
|
|
216
|
-
return ((bitField0_ &
|
|
276
|
+
return ((bitField0_ & 0x00000080) != 0);
|
|
217
277
|
}
|
|
218
278
|
/**
|
|
219
279
|
* <code>optional .google.protobuf.Timestamp last_ls_fall_back = 7;</code>
|
|
@@ -239,7 +299,7 @@ private static final long serialVersionUID = 0L;
|
|
|
239
299
|
*/
|
|
240
300
|
@java.lang.Override
|
|
241
301
|
public boolean hasLastWorkGroupScan() {
|
|
242
|
-
return ((bitField0_ &
|
|
302
|
+
return ((bitField0_ & 0x00000100) != 0);
|
|
243
303
|
}
|
|
244
304
|
/**
|
|
245
305
|
* <code>optional .google.protobuf.Timestamp last_work_group_scan = 8;</code>
|
|
@@ -265,7 +325,7 @@ private static final long serialVersionUID = 0L;
|
|
|
265
325
|
*/
|
|
266
326
|
@java.lang.Override
|
|
267
327
|
public boolean hasLastAssetRadarScan() {
|
|
268
|
-
return ((bitField0_ &
|
|
328
|
+
return ((bitField0_ & 0x00000200) != 0);
|
|
269
329
|
}
|
|
270
330
|
/**
|
|
271
331
|
* <code>optional .google.protobuf.Timestamp last_asset_radar_scan = 9;</code>
|
|
@@ -291,7 +351,7 @@ private static final long serialVersionUID = 0L;
|
|
|
291
351
|
*/
|
|
292
352
|
@java.lang.Override
|
|
293
353
|
public boolean hasLastPerformanceScan() {
|
|
294
|
-
return ((bitField0_ &
|
|
354
|
+
return ((bitField0_ & 0x00000400) != 0);
|
|
295
355
|
}
|
|
296
356
|
/**
|
|
297
357
|
* <code>optional .google.protobuf.Timestamp last_performance_scan = 10;</code>
|
|
@@ -317,7 +377,7 @@ private static final long serialVersionUID = 0L;
|
|
|
317
377
|
*/
|
|
318
378
|
@java.lang.Override
|
|
319
379
|
public boolean hasLastLsPush() {
|
|
320
|
-
return ((bitField0_ &
|
|
380
|
+
return ((bitField0_ & 0x00000800) != 0);
|
|
321
381
|
}
|
|
322
382
|
/**
|
|
323
383
|
* <code>optional .google.protobuf.Timestamp last_ls_push = 11;</code>
|
|
@@ -343,7 +403,7 @@ private static final long serialVersionUID = 0L;
|
|
|
343
403
|
*/
|
|
344
404
|
@java.lang.Override
|
|
345
405
|
public boolean hasLastScheduled() {
|
|
346
|
-
return ((bitField0_ &
|
|
406
|
+
return ((bitField0_ & 0x00001000) != 0);
|
|
347
407
|
}
|
|
348
408
|
/**
|
|
349
409
|
* <code>optional .google.protobuf.Timestamp last_scheduled = 12;</code>
|
|
@@ -369,7 +429,7 @@ private static final long serialVersionUID = 0L;
|
|
|
369
429
|
*/
|
|
370
430
|
@java.lang.Override
|
|
371
431
|
public boolean hasLastTriggered() {
|
|
372
|
-
return ((bitField0_ &
|
|
432
|
+
return ((bitField0_ & 0x00002000) != 0);
|
|
373
433
|
}
|
|
374
434
|
/**
|
|
375
435
|
* <code>optional .google.protobuf.Timestamp last_triggered = 13;</code>
|
|
@@ -395,7 +455,7 @@ private static final long serialVersionUID = 0L;
|
|
|
395
455
|
*/
|
|
396
456
|
@java.lang.Override
|
|
397
457
|
public boolean hasLastLsAgentDirect() {
|
|
398
|
-
return ((bitField0_ &
|
|
458
|
+
return ((bitField0_ & 0x00004000) != 0);
|
|
399
459
|
}
|
|
400
460
|
/**
|
|
401
461
|
* <code>optional .google.protobuf.Timestamp last_ls_agent_direct = 14;</code>
|
|
@@ -425,7 +485,7 @@ private static final long serialVersionUID = 0L;
|
|
|
425
485
|
*/
|
|
426
486
|
@java.lang.Override
|
|
427
487
|
public boolean hasCustom() {
|
|
428
|
-
return ((bitField0_ &
|
|
488
|
+
return ((bitField0_ & 0x00008000) != 0);
|
|
429
489
|
}
|
|
430
490
|
/**
|
|
431
491
|
* <pre>
|
|
@@ -525,7 +585,7 @@ private static final long serialVersionUID = 0L;
|
|
|
525
585
|
*/
|
|
526
586
|
@java.lang.Override
|
|
527
587
|
public boolean hasIpLocationKey() {
|
|
528
|
-
return ((bitField0_ &
|
|
588
|
+
return ((bitField0_ & 0x00010000) != 0);
|
|
529
589
|
}
|
|
530
590
|
/**
|
|
531
591
|
* <pre>
|
|
@@ -584,7 +644,7 @@ private static final long serialVersionUID = 0L;
|
|
|
584
644
|
*/
|
|
585
645
|
@java.lang.Override
|
|
586
646
|
public boolean hasIpLocationId() {
|
|
587
|
-
return ((bitField0_ &
|
|
647
|
+
return ((bitField0_ & 0x00020000) != 0);
|
|
588
648
|
}
|
|
589
649
|
/**
|
|
590
650
|
* <pre>
|
|
@@ -644,60 +704,63 @@ private static final long serialVersionUID = 0L;
|
|
|
644
704
|
@java.lang.Override
|
|
645
705
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
646
706
|
throws java.io.IOException {
|
|
647
|
-
if (((bitField0_ &
|
|
707
|
+
if (((bitField0_ & 0x00000002) != 0)) {
|
|
648
708
|
output.writeMessage(1, getLastTried());
|
|
649
709
|
}
|
|
650
|
-
if (((bitField0_ &
|
|
710
|
+
if (((bitField0_ & 0x00000004) != 0)) {
|
|
651
711
|
output.writeMessage(2, getLastActiveScan());
|
|
652
712
|
}
|
|
653
|
-
if (((bitField0_ &
|
|
713
|
+
if (((bitField0_ & 0x00000008) != 0)) {
|
|
654
714
|
output.writeMessage(3, getLastIpScan());
|
|
655
715
|
}
|
|
656
|
-
if (((bitField0_ &
|
|
716
|
+
if (((bitField0_ & 0x00000010) != 0)) {
|
|
657
717
|
output.writeMessage(4, getLastSaved());
|
|
658
718
|
}
|
|
659
|
-
if (((bitField0_ &
|
|
719
|
+
if (((bitField0_ & 0x00000020) != 0)) {
|
|
660
720
|
output.writeMessage(5, getLastSccmScan());
|
|
661
721
|
}
|
|
662
|
-
if (((bitField0_ &
|
|
722
|
+
if (((bitField0_ & 0x00000040) != 0)) {
|
|
663
723
|
output.writeMessage(6, getLastLsAgent());
|
|
664
724
|
}
|
|
665
|
-
if (((bitField0_ &
|
|
725
|
+
if (((bitField0_ & 0x00000080) != 0)) {
|
|
666
726
|
output.writeMessage(7, getLastLsFallBack());
|
|
667
727
|
}
|
|
668
|
-
if (((bitField0_ &
|
|
728
|
+
if (((bitField0_ & 0x00000100) != 0)) {
|
|
669
729
|
output.writeMessage(8, getLastWorkGroupScan());
|
|
670
730
|
}
|
|
671
|
-
if (((bitField0_ &
|
|
731
|
+
if (((bitField0_ & 0x00000200) != 0)) {
|
|
672
732
|
output.writeMessage(9, getLastAssetRadarScan());
|
|
673
733
|
}
|
|
674
|
-
if (((bitField0_ &
|
|
734
|
+
if (((bitField0_ & 0x00000400) != 0)) {
|
|
675
735
|
output.writeMessage(10, getLastPerformanceScan());
|
|
676
736
|
}
|
|
677
|
-
if (((bitField0_ &
|
|
737
|
+
if (((bitField0_ & 0x00000800) != 0)) {
|
|
678
738
|
output.writeMessage(11, getLastLsPush());
|
|
679
739
|
}
|
|
680
|
-
if (((bitField0_ &
|
|
740
|
+
if (((bitField0_ & 0x00001000) != 0)) {
|
|
681
741
|
output.writeMessage(12, getLastScheduled());
|
|
682
742
|
}
|
|
683
|
-
if (((bitField0_ &
|
|
743
|
+
if (((bitField0_ & 0x00002000) != 0)) {
|
|
684
744
|
output.writeMessage(13, getLastTriggered());
|
|
685
745
|
}
|
|
686
|
-
if (((bitField0_ &
|
|
746
|
+
if (((bitField0_ & 0x00004000) != 0)) {
|
|
687
747
|
output.writeMessage(14, getLastLsAgentDirect());
|
|
688
748
|
}
|
|
689
|
-
if (((bitField0_ &
|
|
749
|
+
if (((bitField0_ & 0x00008000) != 0)) {
|
|
690
750
|
output.writeMessage(15, getCustom());
|
|
691
751
|
}
|
|
692
752
|
for (int i = 0; i < groupLink_.size(); i++) {
|
|
693
753
|
output.writeMessage(16, groupLink_.get(i));
|
|
694
754
|
}
|
|
695
|
-
if (((bitField0_ &
|
|
755
|
+
if (((bitField0_ & 0x00010000) != 0)) {
|
|
696
756
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 17, ipLocationKey_);
|
|
697
757
|
}
|
|
698
|
-
if (((bitField0_ &
|
|
758
|
+
if (((bitField0_ & 0x00020000) != 0)) {
|
|
699
759
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 18, ipLocationId_);
|
|
700
760
|
}
|
|
761
|
+
if (((bitField0_ & 0x00000001) != 0)) {
|
|
762
|
+
com.google.protobuf.GeneratedMessageV3.writeString(output, 19, assetId_);
|
|
763
|
+
}
|
|
701
764
|
getUnknownFields().writeTo(output);
|
|
702
765
|
}
|
|
703
766
|
|
|
@@ -707,63 +770,63 @@ private static final long serialVersionUID = 0L;
|
|
|
707
770
|
if (size != -1) return size;
|
|
708
771
|
|
|
709
772
|
size = 0;
|
|
710
|
-
if (((bitField0_ &
|
|
773
|
+
if (((bitField0_ & 0x00000002) != 0)) {
|
|
711
774
|
size += com.google.protobuf.CodedOutputStream
|
|
712
775
|
.computeMessageSize(1, getLastTried());
|
|
713
776
|
}
|
|
714
|
-
if (((bitField0_ &
|
|
777
|
+
if (((bitField0_ & 0x00000004) != 0)) {
|
|
715
778
|
size += com.google.protobuf.CodedOutputStream
|
|
716
779
|
.computeMessageSize(2, getLastActiveScan());
|
|
717
780
|
}
|
|
718
|
-
if (((bitField0_ &
|
|
781
|
+
if (((bitField0_ & 0x00000008) != 0)) {
|
|
719
782
|
size += com.google.protobuf.CodedOutputStream
|
|
720
783
|
.computeMessageSize(3, getLastIpScan());
|
|
721
784
|
}
|
|
722
|
-
if (((bitField0_ &
|
|
785
|
+
if (((bitField0_ & 0x00000010) != 0)) {
|
|
723
786
|
size += com.google.protobuf.CodedOutputStream
|
|
724
787
|
.computeMessageSize(4, getLastSaved());
|
|
725
788
|
}
|
|
726
|
-
if (((bitField0_ &
|
|
789
|
+
if (((bitField0_ & 0x00000020) != 0)) {
|
|
727
790
|
size += com.google.protobuf.CodedOutputStream
|
|
728
791
|
.computeMessageSize(5, getLastSccmScan());
|
|
729
792
|
}
|
|
730
|
-
if (((bitField0_ &
|
|
793
|
+
if (((bitField0_ & 0x00000040) != 0)) {
|
|
731
794
|
size += com.google.protobuf.CodedOutputStream
|
|
732
795
|
.computeMessageSize(6, getLastLsAgent());
|
|
733
796
|
}
|
|
734
|
-
if (((bitField0_ &
|
|
797
|
+
if (((bitField0_ & 0x00000080) != 0)) {
|
|
735
798
|
size += com.google.protobuf.CodedOutputStream
|
|
736
799
|
.computeMessageSize(7, getLastLsFallBack());
|
|
737
800
|
}
|
|
738
|
-
if (((bitField0_ &
|
|
801
|
+
if (((bitField0_ & 0x00000100) != 0)) {
|
|
739
802
|
size += com.google.protobuf.CodedOutputStream
|
|
740
803
|
.computeMessageSize(8, getLastWorkGroupScan());
|
|
741
804
|
}
|
|
742
|
-
if (((bitField0_ &
|
|
805
|
+
if (((bitField0_ & 0x00000200) != 0)) {
|
|
743
806
|
size += com.google.protobuf.CodedOutputStream
|
|
744
807
|
.computeMessageSize(9, getLastAssetRadarScan());
|
|
745
808
|
}
|
|
746
|
-
if (((bitField0_ &
|
|
809
|
+
if (((bitField0_ & 0x00000400) != 0)) {
|
|
747
810
|
size += com.google.protobuf.CodedOutputStream
|
|
748
811
|
.computeMessageSize(10, getLastPerformanceScan());
|
|
749
812
|
}
|
|
750
|
-
if (((bitField0_ &
|
|
813
|
+
if (((bitField0_ & 0x00000800) != 0)) {
|
|
751
814
|
size += com.google.protobuf.CodedOutputStream
|
|
752
815
|
.computeMessageSize(11, getLastLsPush());
|
|
753
816
|
}
|
|
754
|
-
if (((bitField0_ &
|
|
817
|
+
if (((bitField0_ & 0x00001000) != 0)) {
|
|
755
818
|
size += com.google.protobuf.CodedOutputStream
|
|
756
819
|
.computeMessageSize(12, getLastScheduled());
|
|
757
820
|
}
|
|
758
|
-
if (((bitField0_ &
|
|
821
|
+
if (((bitField0_ & 0x00002000) != 0)) {
|
|
759
822
|
size += com.google.protobuf.CodedOutputStream
|
|
760
823
|
.computeMessageSize(13, getLastTriggered());
|
|
761
824
|
}
|
|
762
|
-
if (((bitField0_ &
|
|
825
|
+
if (((bitField0_ & 0x00004000) != 0)) {
|
|
763
826
|
size += com.google.protobuf.CodedOutputStream
|
|
764
827
|
.computeMessageSize(14, getLastLsAgentDirect());
|
|
765
828
|
}
|
|
766
|
-
if (((bitField0_ &
|
|
829
|
+
if (((bitField0_ & 0x00008000) != 0)) {
|
|
767
830
|
size += com.google.protobuf.CodedOutputStream
|
|
768
831
|
.computeMessageSize(15, getCustom());
|
|
769
832
|
}
|
|
@@ -771,12 +834,15 @@ private static final long serialVersionUID = 0L;
|
|
|
771
834
|
size += com.google.protobuf.CodedOutputStream
|
|
772
835
|
.computeMessageSize(16, groupLink_.get(i));
|
|
773
836
|
}
|
|
774
|
-
if (((bitField0_ &
|
|
837
|
+
if (((bitField0_ & 0x00010000) != 0)) {
|
|
775
838
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(17, ipLocationKey_);
|
|
776
839
|
}
|
|
777
|
-
if (((bitField0_ &
|
|
840
|
+
if (((bitField0_ & 0x00020000) != 0)) {
|
|
778
841
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(18, ipLocationId_);
|
|
779
842
|
}
|
|
843
|
+
if (((bitField0_ & 0x00000001) != 0)) {
|
|
844
|
+
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(19, assetId_);
|
|
845
|
+
}
|
|
780
846
|
size += getUnknownFields().getSerializedSize();
|
|
781
847
|
memoizedSize = size;
|
|
782
848
|
return size;
|
|
@@ -792,6 +858,11 @@ private static final long serialVersionUID = 0L;
|
|
|
792
858
|
}
|
|
793
859
|
com.lansweeper.dp.outbound.v1.LegacyFields other = (com.lansweeper.dp.outbound.v1.LegacyFields) obj;
|
|
794
860
|
|
|
861
|
+
if (hasAssetId() != other.hasAssetId()) return false;
|
|
862
|
+
if (hasAssetId()) {
|
|
863
|
+
if (!getAssetId()
|
|
864
|
+
.equals(other.getAssetId())) return false;
|
|
865
|
+
}
|
|
795
866
|
if (hasLastTried() != other.hasLastTried()) return false;
|
|
796
867
|
if (hasLastTried()) {
|
|
797
868
|
if (!getLastTried()
|
|
@@ -890,6 +961,10 @@ private static final long serialVersionUID = 0L;
|
|
|
890
961
|
}
|
|
891
962
|
int hash = 41;
|
|
892
963
|
hash = (19 * hash) + getDescriptor().hashCode();
|
|
964
|
+
if (hasAssetId()) {
|
|
965
|
+
hash = (37 * hash) + ASSET_ID_FIELD_NUMBER;
|
|
966
|
+
hash = (53 * hash) + getAssetId().hashCode();
|
|
967
|
+
}
|
|
893
968
|
if (hasLastTried()) {
|
|
894
969
|
hash = (37 * hash) + LAST_TRIED_FIELD_NUMBER;
|
|
895
970
|
hash = (53 * hash) + getLastTried().hashCode();
|
|
@@ -1120,6 +1195,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1120
1195
|
public Builder clear() {
|
|
1121
1196
|
super.clear();
|
|
1122
1197
|
bitField0_ = 0;
|
|
1198
|
+
assetId_ = "";
|
|
1123
1199
|
lastTried_ = null;
|
|
1124
1200
|
if (lastTriedBuilder_ != null) {
|
|
1125
1201
|
lastTriedBuilder_.dispose();
|
|
@@ -1201,7 +1277,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1201
1277
|
groupLink_ = null;
|
|
1202
1278
|
groupLinkBuilder_.clear();
|
|
1203
1279
|
}
|
|
1204
|
-
bitField0_ = (bitField0_ & ~
|
|
1280
|
+
bitField0_ = (bitField0_ & ~0x00010000);
|
|
1205
1281
|
ipLocationKey_ = "";
|
|
1206
1282
|
ipLocationId_ = "";
|
|
1207
1283
|
return this;
|
|
@@ -1238,9 +1314,9 @@ private static final long serialVersionUID = 0L;
|
|
|
1238
1314
|
|
|
1239
1315
|
private void buildPartialRepeatedFields(com.lansweeper.dp.outbound.v1.LegacyFields result) {
|
|
1240
1316
|
if (groupLinkBuilder_ == null) {
|
|
1241
|
-
if (((bitField0_ &
|
|
1317
|
+
if (((bitField0_ & 0x00010000) != 0)) {
|
|
1242
1318
|
groupLink_ = java.util.Collections.unmodifiableList(groupLink_);
|
|
1243
|
-
bitField0_ = (bitField0_ & ~
|
|
1319
|
+
bitField0_ = (bitField0_ & ~0x00010000);
|
|
1244
1320
|
}
|
|
1245
1321
|
result.groupLink_ = groupLink_;
|
|
1246
1322
|
} else {
|
|
@@ -1252,103 +1328,107 @@ private static final long serialVersionUID = 0L;
|
|
|
1252
1328
|
int from_bitField0_ = bitField0_;
|
|
1253
1329
|
int to_bitField0_ = 0;
|
|
1254
1330
|
if (((from_bitField0_ & 0x00000001) != 0)) {
|
|
1331
|
+
result.assetId_ = assetId_;
|
|
1332
|
+
to_bitField0_ |= 0x00000001;
|
|
1333
|
+
}
|
|
1334
|
+
if (((from_bitField0_ & 0x00000002) != 0)) {
|
|
1255
1335
|
result.lastTried_ = lastTriedBuilder_ == null
|
|
1256
1336
|
? lastTried_
|
|
1257
1337
|
: lastTriedBuilder_.build();
|
|
1258
|
-
to_bitField0_ |=
|
|
1338
|
+
to_bitField0_ |= 0x00000002;
|
|
1259
1339
|
}
|
|
1260
|
-
if (((from_bitField0_ &
|
|
1340
|
+
if (((from_bitField0_ & 0x00000004) != 0)) {
|
|
1261
1341
|
result.lastActiveScan_ = lastActiveScanBuilder_ == null
|
|
1262
1342
|
? lastActiveScan_
|
|
1263
1343
|
: lastActiveScanBuilder_.build();
|
|
1264
|
-
to_bitField0_ |=
|
|
1344
|
+
to_bitField0_ |= 0x00000004;
|
|
1265
1345
|
}
|
|
1266
|
-
if (((from_bitField0_ &
|
|
1346
|
+
if (((from_bitField0_ & 0x00000008) != 0)) {
|
|
1267
1347
|
result.lastIpScan_ = lastIpScanBuilder_ == null
|
|
1268
1348
|
? lastIpScan_
|
|
1269
1349
|
: lastIpScanBuilder_.build();
|
|
1270
|
-
to_bitField0_ |=
|
|
1350
|
+
to_bitField0_ |= 0x00000008;
|
|
1271
1351
|
}
|
|
1272
|
-
if (((from_bitField0_ &
|
|
1352
|
+
if (((from_bitField0_ & 0x00000010) != 0)) {
|
|
1273
1353
|
result.lastSaved_ = lastSavedBuilder_ == null
|
|
1274
1354
|
? lastSaved_
|
|
1275
1355
|
: lastSavedBuilder_.build();
|
|
1276
|
-
to_bitField0_ |=
|
|
1356
|
+
to_bitField0_ |= 0x00000010;
|
|
1277
1357
|
}
|
|
1278
|
-
if (((from_bitField0_ &
|
|
1358
|
+
if (((from_bitField0_ & 0x00000020) != 0)) {
|
|
1279
1359
|
result.lastSccmScan_ = lastSccmScanBuilder_ == null
|
|
1280
1360
|
? lastSccmScan_
|
|
1281
1361
|
: lastSccmScanBuilder_.build();
|
|
1282
|
-
to_bitField0_ |=
|
|
1362
|
+
to_bitField0_ |= 0x00000020;
|
|
1283
1363
|
}
|
|
1284
|
-
if (((from_bitField0_ &
|
|
1364
|
+
if (((from_bitField0_ & 0x00000040) != 0)) {
|
|
1285
1365
|
result.lastLsAgent_ = lastLsAgentBuilder_ == null
|
|
1286
1366
|
? lastLsAgent_
|
|
1287
1367
|
: lastLsAgentBuilder_.build();
|
|
1288
|
-
to_bitField0_ |=
|
|
1368
|
+
to_bitField0_ |= 0x00000040;
|
|
1289
1369
|
}
|
|
1290
|
-
if (((from_bitField0_ &
|
|
1370
|
+
if (((from_bitField0_ & 0x00000080) != 0)) {
|
|
1291
1371
|
result.lastLsFallBack_ = lastLsFallBackBuilder_ == null
|
|
1292
1372
|
? lastLsFallBack_
|
|
1293
1373
|
: lastLsFallBackBuilder_.build();
|
|
1294
|
-
to_bitField0_ |=
|
|
1374
|
+
to_bitField0_ |= 0x00000080;
|
|
1295
1375
|
}
|
|
1296
|
-
if (((from_bitField0_ &
|
|
1376
|
+
if (((from_bitField0_ & 0x00000100) != 0)) {
|
|
1297
1377
|
result.lastWorkGroupScan_ = lastWorkGroupScanBuilder_ == null
|
|
1298
1378
|
? lastWorkGroupScan_
|
|
1299
1379
|
: lastWorkGroupScanBuilder_.build();
|
|
1300
|
-
to_bitField0_ |=
|
|
1380
|
+
to_bitField0_ |= 0x00000100;
|
|
1301
1381
|
}
|
|
1302
|
-
if (((from_bitField0_ &
|
|
1382
|
+
if (((from_bitField0_ & 0x00000200) != 0)) {
|
|
1303
1383
|
result.lastAssetRadarScan_ = lastAssetRadarScanBuilder_ == null
|
|
1304
1384
|
? lastAssetRadarScan_
|
|
1305
1385
|
: lastAssetRadarScanBuilder_.build();
|
|
1306
|
-
to_bitField0_ |=
|
|
1386
|
+
to_bitField0_ |= 0x00000200;
|
|
1307
1387
|
}
|
|
1308
|
-
if (((from_bitField0_ &
|
|
1388
|
+
if (((from_bitField0_ & 0x00000400) != 0)) {
|
|
1309
1389
|
result.lastPerformanceScan_ = lastPerformanceScanBuilder_ == null
|
|
1310
1390
|
? lastPerformanceScan_
|
|
1311
1391
|
: lastPerformanceScanBuilder_.build();
|
|
1312
|
-
to_bitField0_ |=
|
|
1392
|
+
to_bitField0_ |= 0x00000400;
|
|
1313
1393
|
}
|
|
1314
|
-
if (((from_bitField0_ &
|
|
1394
|
+
if (((from_bitField0_ & 0x00000800) != 0)) {
|
|
1315
1395
|
result.lastLsPush_ = lastLsPushBuilder_ == null
|
|
1316
1396
|
? lastLsPush_
|
|
1317
1397
|
: lastLsPushBuilder_.build();
|
|
1318
|
-
to_bitField0_ |=
|
|
1398
|
+
to_bitField0_ |= 0x00000800;
|
|
1319
1399
|
}
|
|
1320
|
-
if (((from_bitField0_ &
|
|
1400
|
+
if (((from_bitField0_ & 0x00001000) != 0)) {
|
|
1321
1401
|
result.lastScheduled_ = lastScheduledBuilder_ == null
|
|
1322
1402
|
? lastScheduled_
|
|
1323
1403
|
: lastScheduledBuilder_.build();
|
|
1324
|
-
to_bitField0_ |=
|
|
1404
|
+
to_bitField0_ |= 0x00001000;
|
|
1325
1405
|
}
|
|
1326
|
-
if (((from_bitField0_ &
|
|
1406
|
+
if (((from_bitField0_ & 0x00002000) != 0)) {
|
|
1327
1407
|
result.lastTriggered_ = lastTriggeredBuilder_ == null
|
|
1328
1408
|
? lastTriggered_
|
|
1329
1409
|
: lastTriggeredBuilder_.build();
|
|
1330
|
-
to_bitField0_ |=
|
|
1410
|
+
to_bitField0_ |= 0x00002000;
|
|
1331
1411
|
}
|
|
1332
|
-
if (((from_bitField0_ &
|
|
1412
|
+
if (((from_bitField0_ & 0x00004000) != 0)) {
|
|
1333
1413
|
result.lastLsAgentDirect_ = lastLsAgentDirectBuilder_ == null
|
|
1334
1414
|
? lastLsAgentDirect_
|
|
1335
1415
|
: lastLsAgentDirectBuilder_.build();
|
|
1336
|
-
to_bitField0_ |=
|
|
1416
|
+
to_bitField0_ |= 0x00004000;
|
|
1337
1417
|
}
|
|
1338
|
-
if (((from_bitField0_ &
|
|
1418
|
+
if (((from_bitField0_ & 0x00008000) != 0)) {
|
|
1339
1419
|
result.custom_ = customBuilder_ == null
|
|
1340
1420
|
? custom_
|
|
1341
1421
|
: customBuilder_.build();
|
|
1342
|
-
to_bitField0_ |= 0x00004000;
|
|
1343
|
-
}
|
|
1344
|
-
if (((from_bitField0_ & 0x00010000) != 0)) {
|
|
1345
|
-
result.ipLocationKey_ = ipLocationKey_;
|
|
1346
1422
|
to_bitField0_ |= 0x00008000;
|
|
1347
1423
|
}
|
|
1348
1424
|
if (((from_bitField0_ & 0x00020000) != 0)) {
|
|
1349
|
-
result.
|
|
1425
|
+
result.ipLocationKey_ = ipLocationKey_;
|
|
1350
1426
|
to_bitField0_ |= 0x00010000;
|
|
1351
1427
|
}
|
|
1428
|
+
if (((from_bitField0_ & 0x00040000) != 0)) {
|
|
1429
|
+
result.ipLocationId_ = ipLocationId_;
|
|
1430
|
+
to_bitField0_ |= 0x00020000;
|
|
1431
|
+
}
|
|
1352
1432
|
result.bitField0_ |= to_bitField0_;
|
|
1353
1433
|
}
|
|
1354
1434
|
|
|
@@ -1396,6 +1476,11 @@ private static final long serialVersionUID = 0L;
|
|
|
1396
1476
|
|
|
1397
1477
|
public Builder mergeFrom(com.lansweeper.dp.outbound.v1.LegacyFields other) {
|
|
1398
1478
|
if (other == com.lansweeper.dp.outbound.v1.LegacyFields.getDefaultInstance()) return this;
|
|
1479
|
+
if (other.hasAssetId()) {
|
|
1480
|
+
assetId_ = other.assetId_;
|
|
1481
|
+
bitField0_ |= 0x00000001;
|
|
1482
|
+
onChanged();
|
|
1483
|
+
}
|
|
1399
1484
|
if (other.hasLastTried()) {
|
|
1400
1485
|
mergeLastTried(other.getLastTried());
|
|
1401
1486
|
}
|
|
@@ -1445,7 +1530,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1445
1530
|
if (!other.groupLink_.isEmpty()) {
|
|
1446
1531
|
if (groupLink_.isEmpty()) {
|
|
1447
1532
|
groupLink_ = other.groupLink_;
|
|
1448
|
-
bitField0_ = (bitField0_ & ~
|
|
1533
|
+
bitField0_ = (bitField0_ & ~0x00010000);
|
|
1449
1534
|
} else {
|
|
1450
1535
|
ensureGroupLinkIsMutable();
|
|
1451
1536
|
groupLink_.addAll(other.groupLink_);
|
|
@@ -1458,7 +1543,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1458
1543
|
groupLinkBuilder_.dispose();
|
|
1459
1544
|
groupLinkBuilder_ = null;
|
|
1460
1545
|
groupLink_ = other.groupLink_;
|
|
1461
|
-
bitField0_ = (bitField0_ & ~
|
|
1546
|
+
bitField0_ = (bitField0_ & ~0x00010000);
|
|
1462
1547
|
groupLinkBuilder_ =
|
|
1463
1548
|
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
|
|
1464
1549
|
getGroupLinkFieldBuilder() : null;
|
|
@@ -1469,12 +1554,12 @@ private static final long serialVersionUID = 0L;
|
|
|
1469
1554
|
}
|
|
1470
1555
|
if (other.hasIpLocationKey()) {
|
|
1471
1556
|
ipLocationKey_ = other.ipLocationKey_;
|
|
1472
|
-
bitField0_ |=
|
|
1557
|
+
bitField0_ |= 0x00020000;
|
|
1473
1558
|
onChanged();
|
|
1474
1559
|
}
|
|
1475
1560
|
if (other.hasIpLocationId()) {
|
|
1476
1561
|
ipLocationId_ = other.ipLocationId_;
|
|
1477
|
-
bitField0_ |=
|
|
1562
|
+
bitField0_ |= 0x00040000;
|
|
1478
1563
|
onChanged();
|
|
1479
1564
|
}
|
|
1480
1565
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
@@ -1507,105 +1592,105 @@ private static final long serialVersionUID = 0L;
|
|
|
1507
1592
|
input.readMessage(
|
|
1508
1593
|
getLastTriedFieldBuilder().getBuilder(),
|
|
1509
1594
|
extensionRegistry);
|
|
1510
|
-
bitField0_ |=
|
|
1595
|
+
bitField0_ |= 0x00000002;
|
|
1511
1596
|
break;
|
|
1512
1597
|
} // case 10
|
|
1513
1598
|
case 18: {
|
|
1514
1599
|
input.readMessage(
|
|
1515
1600
|
getLastActiveScanFieldBuilder().getBuilder(),
|
|
1516
1601
|
extensionRegistry);
|
|
1517
|
-
bitField0_ |=
|
|
1602
|
+
bitField0_ |= 0x00000004;
|
|
1518
1603
|
break;
|
|
1519
1604
|
} // case 18
|
|
1520
1605
|
case 26: {
|
|
1521
1606
|
input.readMessage(
|
|
1522
1607
|
getLastIpScanFieldBuilder().getBuilder(),
|
|
1523
1608
|
extensionRegistry);
|
|
1524
|
-
bitField0_ |=
|
|
1609
|
+
bitField0_ |= 0x00000008;
|
|
1525
1610
|
break;
|
|
1526
1611
|
} // case 26
|
|
1527
1612
|
case 34: {
|
|
1528
1613
|
input.readMessage(
|
|
1529
1614
|
getLastSavedFieldBuilder().getBuilder(),
|
|
1530
1615
|
extensionRegistry);
|
|
1531
|
-
bitField0_ |=
|
|
1616
|
+
bitField0_ |= 0x00000010;
|
|
1532
1617
|
break;
|
|
1533
1618
|
} // case 34
|
|
1534
1619
|
case 42: {
|
|
1535
1620
|
input.readMessage(
|
|
1536
1621
|
getLastSccmScanFieldBuilder().getBuilder(),
|
|
1537
1622
|
extensionRegistry);
|
|
1538
|
-
bitField0_ |=
|
|
1623
|
+
bitField0_ |= 0x00000020;
|
|
1539
1624
|
break;
|
|
1540
1625
|
} // case 42
|
|
1541
1626
|
case 50: {
|
|
1542
1627
|
input.readMessage(
|
|
1543
1628
|
getLastLsAgentFieldBuilder().getBuilder(),
|
|
1544
1629
|
extensionRegistry);
|
|
1545
|
-
bitField0_ |=
|
|
1630
|
+
bitField0_ |= 0x00000040;
|
|
1546
1631
|
break;
|
|
1547
1632
|
} // case 50
|
|
1548
1633
|
case 58: {
|
|
1549
1634
|
input.readMessage(
|
|
1550
1635
|
getLastLsFallBackFieldBuilder().getBuilder(),
|
|
1551
1636
|
extensionRegistry);
|
|
1552
|
-
bitField0_ |=
|
|
1637
|
+
bitField0_ |= 0x00000080;
|
|
1553
1638
|
break;
|
|
1554
1639
|
} // case 58
|
|
1555
1640
|
case 66: {
|
|
1556
1641
|
input.readMessage(
|
|
1557
1642
|
getLastWorkGroupScanFieldBuilder().getBuilder(),
|
|
1558
1643
|
extensionRegistry);
|
|
1559
|
-
bitField0_ |=
|
|
1644
|
+
bitField0_ |= 0x00000100;
|
|
1560
1645
|
break;
|
|
1561
1646
|
} // case 66
|
|
1562
1647
|
case 74: {
|
|
1563
1648
|
input.readMessage(
|
|
1564
1649
|
getLastAssetRadarScanFieldBuilder().getBuilder(),
|
|
1565
1650
|
extensionRegistry);
|
|
1566
|
-
bitField0_ |=
|
|
1651
|
+
bitField0_ |= 0x00000200;
|
|
1567
1652
|
break;
|
|
1568
1653
|
} // case 74
|
|
1569
1654
|
case 82: {
|
|
1570
1655
|
input.readMessage(
|
|
1571
1656
|
getLastPerformanceScanFieldBuilder().getBuilder(),
|
|
1572
1657
|
extensionRegistry);
|
|
1573
|
-
bitField0_ |=
|
|
1658
|
+
bitField0_ |= 0x00000400;
|
|
1574
1659
|
break;
|
|
1575
1660
|
} // case 82
|
|
1576
1661
|
case 90: {
|
|
1577
1662
|
input.readMessage(
|
|
1578
1663
|
getLastLsPushFieldBuilder().getBuilder(),
|
|
1579
1664
|
extensionRegistry);
|
|
1580
|
-
bitField0_ |=
|
|
1665
|
+
bitField0_ |= 0x00000800;
|
|
1581
1666
|
break;
|
|
1582
1667
|
} // case 90
|
|
1583
1668
|
case 98: {
|
|
1584
1669
|
input.readMessage(
|
|
1585
1670
|
getLastScheduledFieldBuilder().getBuilder(),
|
|
1586
1671
|
extensionRegistry);
|
|
1587
|
-
bitField0_ |=
|
|
1672
|
+
bitField0_ |= 0x00001000;
|
|
1588
1673
|
break;
|
|
1589
1674
|
} // case 98
|
|
1590
1675
|
case 106: {
|
|
1591
1676
|
input.readMessage(
|
|
1592
1677
|
getLastTriggeredFieldBuilder().getBuilder(),
|
|
1593
1678
|
extensionRegistry);
|
|
1594
|
-
bitField0_ |=
|
|
1679
|
+
bitField0_ |= 0x00002000;
|
|
1595
1680
|
break;
|
|
1596
1681
|
} // case 106
|
|
1597
1682
|
case 114: {
|
|
1598
1683
|
input.readMessage(
|
|
1599
1684
|
getLastLsAgentDirectFieldBuilder().getBuilder(),
|
|
1600
1685
|
extensionRegistry);
|
|
1601
|
-
bitField0_ |=
|
|
1686
|
+
bitField0_ |= 0x00004000;
|
|
1602
1687
|
break;
|
|
1603
1688
|
} // case 114
|
|
1604
1689
|
case 122: {
|
|
1605
1690
|
input.readMessage(
|
|
1606
1691
|
getCustomFieldBuilder().getBuilder(),
|
|
1607
1692
|
extensionRegistry);
|
|
1608
|
-
bitField0_ |=
|
|
1693
|
+
bitField0_ |= 0x00008000;
|
|
1609
1694
|
break;
|
|
1610
1695
|
} // case 122
|
|
1611
1696
|
case 130: {
|
|
@@ -1623,14 +1708,19 @@ private static final long serialVersionUID = 0L;
|
|
|
1623
1708
|
} // case 130
|
|
1624
1709
|
case 138: {
|
|
1625
1710
|
ipLocationKey_ = input.readStringRequireUtf8();
|
|
1626
|
-
bitField0_ |=
|
|
1711
|
+
bitField0_ |= 0x00020000;
|
|
1627
1712
|
break;
|
|
1628
1713
|
} // case 138
|
|
1629
1714
|
case 146: {
|
|
1630
1715
|
ipLocationId_ = input.readStringRequireUtf8();
|
|
1631
|
-
bitField0_ |=
|
|
1716
|
+
bitField0_ |= 0x00040000;
|
|
1632
1717
|
break;
|
|
1633
1718
|
} // case 146
|
|
1719
|
+
case 154: {
|
|
1720
|
+
assetId_ = input.readStringRequireUtf8();
|
|
1721
|
+
bitField0_ |= 0x00000001;
|
|
1722
|
+
break;
|
|
1723
|
+
} // case 154
|
|
1634
1724
|
default: {
|
|
1635
1725
|
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
|
|
1636
1726
|
done = true; // was an endgroup tag
|
|
@@ -1646,7 +1736,110 @@ private static final long serialVersionUID = 0L;
|
|
|
1646
1736
|
} // finally
|
|
1647
1737
|
return this;
|
|
1648
1738
|
}
|
|
1649
|
-
private int bitField0_;
|
|
1739
|
+
private int bitField0_;
|
|
1740
|
+
|
|
1741
|
+
private java.lang.Object assetId_ = "";
|
|
1742
|
+
/**
|
|
1743
|
+
* <pre>
|
|
1744
|
+
* Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
|
|
1745
|
+
* </pre>
|
|
1746
|
+
*
|
|
1747
|
+
* <code>optional string asset_id = 19;</code>
|
|
1748
|
+
* @return Whether the assetId field is set.
|
|
1749
|
+
*/
|
|
1750
|
+
public boolean hasAssetId() {
|
|
1751
|
+
return ((bitField0_ & 0x00000001) != 0);
|
|
1752
|
+
}
|
|
1753
|
+
/**
|
|
1754
|
+
* <pre>
|
|
1755
|
+
* Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
|
|
1756
|
+
* </pre>
|
|
1757
|
+
*
|
|
1758
|
+
* <code>optional string asset_id = 19;</code>
|
|
1759
|
+
* @return The assetId.
|
|
1760
|
+
*/
|
|
1761
|
+
public java.lang.String getAssetId() {
|
|
1762
|
+
java.lang.Object ref = assetId_;
|
|
1763
|
+
if (!(ref instanceof java.lang.String)) {
|
|
1764
|
+
com.google.protobuf.ByteString bs =
|
|
1765
|
+
(com.google.protobuf.ByteString) ref;
|
|
1766
|
+
java.lang.String s = bs.toStringUtf8();
|
|
1767
|
+
assetId_ = s;
|
|
1768
|
+
return s;
|
|
1769
|
+
} else {
|
|
1770
|
+
return (java.lang.String) ref;
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1773
|
+
/**
|
|
1774
|
+
* <pre>
|
|
1775
|
+
* Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
|
|
1776
|
+
* </pre>
|
|
1777
|
+
*
|
|
1778
|
+
* <code>optional string asset_id = 19;</code>
|
|
1779
|
+
* @return The bytes for assetId.
|
|
1780
|
+
*/
|
|
1781
|
+
public com.google.protobuf.ByteString
|
|
1782
|
+
getAssetIdBytes() {
|
|
1783
|
+
java.lang.Object ref = assetId_;
|
|
1784
|
+
if (ref instanceof String) {
|
|
1785
|
+
com.google.protobuf.ByteString b =
|
|
1786
|
+
com.google.protobuf.ByteString.copyFromUtf8(
|
|
1787
|
+
(java.lang.String) ref);
|
|
1788
|
+
assetId_ = b;
|
|
1789
|
+
return b;
|
|
1790
|
+
} else {
|
|
1791
|
+
return (com.google.protobuf.ByteString) ref;
|
|
1792
|
+
}
|
|
1793
|
+
}
|
|
1794
|
+
/**
|
|
1795
|
+
* <pre>
|
|
1796
|
+
* Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
|
|
1797
|
+
* </pre>
|
|
1798
|
+
*
|
|
1799
|
+
* <code>optional string asset_id = 19;</code>
|
|
1800
|
+
* @param value The assetId to set.
|
|
1801
|
+
* @return This builder for chaining.
|
|
1802
|
+
*/
|
|
1803
|
+
public Builder setAssetId(
|
|
1804
|
+
java.lang.String value) {
|
|
1805
|
+
if (value == null) { throw new NullPointerException(); }
|
|
1806
|
+
assetId_ = value;
|
|
1807
|
+
bitField0_ |= 0x00000001;
|
|
1808
|
+
onChanged();
|
|
1809
|
+
return this;
|
|
1810
|
+
}
|
|
1811
|
+
/**
|
|
1812
|
+
* <pre>
|
|
1813
|
+
* Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
|
|
1814
|
+
* </pre>
|
|
1815
|
+
*
|
|
1816
|
+
* <code>optional string asset_id = 19;</code>
|
|
1817
|
+
* @return This builder for chaining.
|
|
1818
|
+
*/
|
|
1819
|
+
public Builder clearAssetId() {
|
|
1820
|
+
assetId_ = getDefaultInstance().getAssetId();
|
|
1821
|
+
bitField0_ = (bitField0_ & ~0x00000001);
|
|
1822
|
+
onChanged();
|
|
1823
|
+
return this;
|
|
1824
|
+
}
|
|
1825
|
+
/**
|
|
1826
|
+
* <pre>
|
|
1827
|
+
* Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
|
|
1828
|
+
* </pre>
|
|
1829
|
+
*
|
|
1830
|
+
* <code>optional string asset_id = 19;</code>
|
|
1831
|
+
* @param value The bytes for assetId to set.
|
|
1832
|
+
* @return This builder for chaining.
|
|
1833
|
+
*/
|
|
1834
|
+
public Builder setAssetIdBytes(
|
|
1835
|
+
com.google.protobuf.ByteString value) {
|
|
1836
|
+
if (value == null) { throw new NullPointerException(); }
|
|
1837
|
+
checkByteStringIsUtf8(value);
|
|
1838
|
+
assetId_ = value;
|
|
1839
|
+
bitField0_ |= 0x00000001;
|
|
1840
|
+
onChanged();
|
|
1841
|
+
return this;
|
|
1842
|
+
}
|
|
1650
1843
|
|
|
1651
1844
|
private com.google.protobuf.Timestamp lastTried_;
|
|
1652
1845
|
private com.google.protobuf.SingleFieldBuilderV3<
|
|
@@ -1656,7 +1849,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1656
1849
|
* @return Whether the lastTried field is set.
|
|
1657
1850
|
*/
|
|
1658
1851
|
public boolean hasLastTried() {
|
|
1659
|
-
return ((bitField0_ &
|
|
1852
|
+
return ((bitField0_ & 0x00000002) != 0);
|
|
1660
1853
|
}
|
|
1661
1854
|
/**
|
|
1662
1855
|
* <code>optional .google.protobuf.Timestamp last_tried = 1;</code>
|
|
@@ -1681,7 +1874,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1681
1874
|
} else {
|
|
1682
1875
|
lastTriedBuilder_.setMessage(value);
|
|
1683
1876
|
}
|
|
1684
|
-
bitField0_ |=
|
|
1877
|
+
bitField0_ |= 0x00000002;
|
|
1685
1878
|
onChanged();
|
|
1686
1879
|
return this;
|
|
1687
1880
|
}
|
|
@@ -1695,7 +1888,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1695
1888
|
} else {
|
|
1696
1889
|
lastTriedBuilder_.setMessage(builderForValue.build());
|
|
1697
1890
|
}
|
|
1698
|
-
bitField0_ |=
|
|
1891
|
+
bitField0_ |= 0x00000002;
|
|
1699
1892
|
onChanged();
|
|
1700
1893
|
return this;
|
|
1701
1894
|
}
|
|
@@ -1704,7 +1897,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1704
1897
|
*/
|
|
1705
1898
|
public Builder mergeLastTried(com.google.protobuf.Timestamp value) {
|
|
1706
1899
|
if (lastTriedBuilder_ == null) {
|
|
1707
|
-
if (((bitField0_ &
|
|
1900
|
+
if (((bitField0_ & 0x00000002) != 0) &&
|
|
1708
1901
|
lastTried_ != null &&
|
|
1709
1902
|
lastTried_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
1710
1903
|
getLastTriedBuilder().mergeFrom(value);
|
|
@@ -1715,7 +1908,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1715
1908
|
lastTriedBuilder_.mergeFrom(value);
|
|
1716
1909
|
}
|
|
1717
1910
|
if (lastTried_ != null) {
|
|
1718
|
-
bitField0_ |=
|
|
1911
|
+
bitField0_ |= 0x00000002;
|
|
1719
1912
|
onChanged();
|
|
1720
1913
|
}
|
|
1721
1914
|
return this;
|
|
@@ -1724,7 +1917,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1724
1917
|
* <code>optional .google.protobuf.Timestamp last_tried = 1;</code>
|
|
1725
1918
|
*/
|
|
1726
1919
|
public Builder clearLastTried() {
|
|
1727
|
-
bitField0_ = (bitField0_ & ~
|
|
1920
|
+
bitField0_ = (bitField0_ & ~0x00000002);
|
|
1728
1921
|
lastTried_ = null;
|
|
1729
1922
|
if (lastTriedBuilder_ != null) {
|
|
1730
1923
|
lastTriedBuilder_.dispose();
|
|
@@ -1737,7 +1930,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1737
1930
|
* <code>optional .google.protobuf.Timestamp last_tried = 1;</code>
|
|
1738
1931
|
*/
|
|
1739
1932
|
public com.google.protobuf.Timestamp.Builder getLastTriedBuilder() {
|
|
1740
|
-
bitField0_ |=
|
|
1933
|
+
bitField0_ |= 0x00000002;
|
|
1741
1934
|
onChanged();
|
|
1742
1935
|
return getLastTriedFieldBuilder().getBuilder();
|
|
1743
1936
|
}
|
|
@@ -1777,7 +1970,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1777
1970
|
* @return Whether the lastActiveScan field is set.
|
|
1778
1971
|
*/
|
|
1779
1972
|
public boolean hasLastActiveScan() {
|
|
1780
|
-
return ((bitField0_ &
|
|
1973
|
+
return ((bitField0_ & 0x00000004) != 0);
|
|
1781
1974
|
}
|
|
1782
1975
|
/**
|
|
1783
1976
|
* <code>optional .google.protobuf.Timestamp last_active_scan = 2;</code>
|
|
@@ -1802,7 +1995,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1802
1995
|
} else {
|
|
1803
1996
|
lastActiveScanBuilder_.setMessage(value);
|
|
1804
1997
|
}
|
|
1805
|
-
bitField0_ |=
|
|
1998
|
+
bitField0_ |= 0x00000004;
|
|
1806
1999
|
onChanged();
|
|
1807
2000
|
return this;
|
|
1808
2001
|
}
|
|
@@ -1816,7 +2009,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1816
2009
|
} else {
|
|
1817
2010
|
lastActiveScanBuilder_.setMessage(builderForValue.build());
|
|
1818
2011
|
}
|
|
1819
|
-
bitField0_ |=
|
|
2012
|
+
bitField0_ |= 0x00000004;
|
|
1820
2013
|
onChanged();
|
|
1821
2014
|
return this;
|
|
1822
2015
|
}
|
|
@@ -1825,7 +2018,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1825
2018
|
*/
|
|
1826
2019
|
public Builder mergeLastActiveScan(com.google.protobuf.Timestamp value) {
|
|
1827
2020
|
if (lastActiveScanBuilder_ == null) {
|
|
1828
|
-
if (((bitField0_ &
|
|
2021
|
+
if (((bitField0_ & 0x00000004) != 0) &&
|
|
1829
2022
|
lastActiveScan_ != null &&
|
|
1830
2023
|
lastActiveScan_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
1831
2024
|
getLastActiveScanBuilder().mergeFrom(value);
|
|
@@ -1836,7 +2029,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1836
2029
|
lastActiveScanBuilder_.mergeFrom(value);
|
|
1837
2030
|
}
|
|
1838
2031
|
if (lastActiveScan_ != null) {
|
|
1839
|
-
bitField0_ |=
|
|
2032
|
+
bitField0_ |= 0x00000004;
|
|
1840
2033
|
onChanged();
|
|
1841
2034
|
}
|
|
1842
2035
|
return this;
|
|
@@ -1845,7 +2038,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1845
2038
|
* <code>optional .google.protobuf.Timestamp last_active_scan = 2;</code>
|
|
1846
2039
|
*/
|
|
1847
2040
|
public Builder clearLastActiveScan() {
|
|
1848
|
-
bitField0_ = (bitField0_ & ~
|
|
2041
|
+
bitField0_ = (bitField0_ & ~0x00000004);
|
|
1849
2042
|
lastActiveScan_ = null;
|
|
1850
2043
|
if (lastActiveScanBuilder_ != null) {
|
|
1851
2044
|
lastActiveScanBuilder_.dispose();
|
|
@@ -1858,7 +2051,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1858
2051
|
* <code>optional .google.protobuf.Timestamp last_active_scan = 2;</code>
|
|
1859
2052
|
*/
|
|
1860
2053
|
public com.google.protobuf.Timestamp.Builder getLastActiveScanBuilder() {
|
|
1861
|
-
bitField0_ |=
|
|
2054
|
+
bitField0_ |= 0x00000004;
|
|
1862
2055
|
onChanged();
|
|
1863
2056
|
return getLastActiveScanFieldBuilder().getBuilder();
|
|
1864
2057
|
}
|
|
@@ -1898,7 +2091,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1898
2091
|
* @return Whether the lastIpScan field is set.
|
|
1899
2092
|
*/
|
|
1900
2093
|
public boolean hasLastIpScan() {
|
|
1901
|
-
return ((bitField0_ &
|
|
2094
|
+
return ((bitField0_ & 0x00000008) != 0);
|
|
1902
2095
|
}
|
|
1903
2096
|
/**
|
|
1904
2097
|
* <code>optional .google.protobuf.Timestamp last_ip_scan = 3;</code>
|
|
@@ -1923,7 +2116,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1923
2116
|
} else {
|
|
1924
2117
|
lastIpScanBuilder_.setMessage(value);
|
|
1925
2118
|
}
|
|
1926
|
-
bitField0_ |=
|
|
2119
|
+
bitField0_ |= 0x00000008;
|
|
1927
2120
|
onChanged();
|
|
1928
2121
|
return this;
|
|
1929
2122
|
}
|
|
@@ -1937,7 +2130,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1937
2130
|
} else {
|
|
1938
2131
|
lastIpScanBuilder_.setMessage(builderForValue.build());
|
|
1939
2132
|
}
|
|
1940
|
-
bitField0_ |=
|
|
2133
|
+
bitField0_ |= 0x00000008;
|
|
1941
2134
|
onChanged();
|
|
1942
2135
|
return this;
|
|
1943
2136
|
}
|
|
@@ -1946,7 +2139,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1946
2139
|
*/
|
|
1947
2140
|
public Builder mergeLastIpScan(com.google.protobuf.Timestamp value) {
|
|
1948
2141
|
if (lastIpScanBuilder_ == null) {
|
|
1949
|
-
if (((bitField0_ &
|
|
2142
|
+
if (((bitField0_ & 0x00000008) != 0) &&
|
|
1950
2143
|
lastIpScan_ != null &&
|
|
1951
2144
|
lastIpScan_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
1952
2145
|
getLastIpScanBuilder().mergeFrom(value);
|
|
@@ -1957,7 +2150,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1957
2150
|
lastIpScanBuilder_.mergeFrom(value);
|
|
1958
2151
|
}
|
|
1959
2152
|
if (lastIpScan_ != null) {
|
|
1960
|
-
bitField0_ |=
|
|
2153
|
+
bitField0_ |= 0x00000008;
|
|
1961
2154
|
onChanged();
|
|
1962
2155
|
}
|
|
1963
2156
|
return this;
|
|
@@ -1966,7 +2159,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1966
2159
|
* <code>optional .google.protobuf.Timestamp last_ip_scan = 3;</code>
|
|
1967
2160
|
*/
|
|
1968
2161
|
public Builder clearLastIpScan() {
|
|
1969
|
-
bitField0_ = (bitField0_ & ~
|
|
2162
|
+
bitField0_ = (bitField0_ & ~0x00000008);
|
|
1970
2163
|
lastIpScan_ = null;
|
|
1971
2164
|
if (lastIpScanBuilder_ != null) {
|
|
1972
2165
|
lastIpScanBuilder_.dispose();
|
|
@@ -1979,7 +2172,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1979
2172
|
* <code>optional .google.protobuf.Timestamp last_ip_scan = 3;</code>
|
|
1980
2173
|
*/
|
|
1981
2174
|
public com.google.protobuf.Timestamp.Builder getLastIpScanBuilder() {
|
|
1982
|
-
bitField0_ |=
|
|
2175
|
+
bitField0_ |= 0x00000008;
|
|
1983
2176
|
onChanged();
|
|
1984
2177
|
return getLastIpScanFieldBuilder().getBuilder();
|
|
1985
2178
|
}
|
|
@@ -2019,7 +2212,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2019
2212
|
* @return Whether the lastSaved field is set.
|
|
2020
2213
|
*/
|
|
2021
2214
|
public boolean hasLastSaved() {
|
|
2022
|
-
return ((bitField0_ &
|
|
2215
|
+
return ((bitField0_ & 0x00000010) != 0);
|
|
2023
2216
|
}
|
|
2024
2217
|
/**
|
|
2025
2218
|
* <code>optional .google.protobuf.Timestamp last_saved = 4;</code>
|
|
@@ -2044,7 +2237,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2044
2237
|
} else {
|
|
2045
2238
|
lastSavedBuilder_.setMessage(value);
|
|
2046
2239
|
}
|
|
2047
|
-
bitField0_ |=
|
|
2240
|
+
bitField0_ |= 0x00000010;
|
|
2048
2241
|
onChanged();
|
|
2049
2242
|
return this;
|
|
2050
2243
|
}
|
|
@@ -2058,7 +2251,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2058
2251
|
} else {
|
|
2059
2252
|
lastSavedBuilder_.setMessage(builderForValue.build());
|
|
2060
2253
|
}
|
|
2061
|
-
bitField0_ |=
|
|
2254
|
+
bitField0_ |= 0x00000010;
|
|
2062
2255
|
onChanged();
|
|
2063
2256
|
return this;
|
|
2064
2257
|
}
|
|
@@ -2067,7 +2260,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2067
2260
|
*/
|
|
2068
2261
|
public Builder mergeLastSaved(com.google.protobuf.Timestamp value) {
|
|
2069
2262
|
if (lastSavedBuilder_ == null) {
|
|
2070
|
-
if (((bitField0_ &
|
|
2263
|
+
if (((bitField0_ & 0x00000010) != 0) &&
|
|
2071
2264
|
lastSaved_ != null &&
|
|
2072
2265
|
lastSaved_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
2073
2266
|
getLastSavedBuilder().mergeFrom(value);
|
|
@@ -2078,7 +2271,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2078
2271
|
lastSavedBuilder_.mergeFrom(value);
|
|
2079
2272
|
}
|
|
2080
2273
|
if (lastSaved_ != null) {
|
|
2081
|
-
bitField0_ |=
|
|
2274
|
+
bitField0_ |= 0x00000010;
|
|
2082
2275
|
onChanged();
|
|
2083
2276
|
}
|
|
2084
2277
|
return this;
|
|
@@ -2087,7 +2280,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2087
2280
|
* <code>optional .google.protobuf.Timestamp last_saved = 4;</code>
|
|
2088
2281
|
*/
|
|
2089
2282
|
public Builder clearLastSaved() {
|
|
2090
|
-
bitField0_ = (bitField0_ & ~
|
|
2283
|
+
bitField0_ = (bitField0_ & ~0x00000010);
|
|
2091
2284
|
lastSaved_ = null;
|
|
2092
2285
|
if (lastSavedBuilder_ != null) {
|
|
2093
2286
|
lastSavedBuilder_.dispose();
|
|
@@ -2100,7 +2293,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2100
2293
|
* <code>optional .google.protobuf.Timestamp last_saved = 4;</code>
|
|
2101
2294
|
*/
|
|
2102
2295
|
public com.google.protobuf.Timestamp.Builder getLastSavedBuilder() {
|
|
2103
|
-
bitField0_ |=
|
|
2296
|
+
bitField0_ |= 0x00000010;
|
|
2104
2297
|
onChanged();
|
|
2105
2298
|
return getLastSavedFieldBuilder().getBuilder();
|
|
2106
2299
|
}
|
|
@@ -2140,7 +2333,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2140
2333
|
* @return Whether the lastSccmScan field is set.
|
|
2141
2334
|
*/
|
|
2142
2335
|
public boolean hasLastSccmScan() {
|
|
2143
|
-
return ((bitField0_ &
|
|
2336
|
+
return ((bitField0_ & 0x00000020) != 0);
|
|
2144
2337
|
}
|
|
2145
2338
|
/**
|
|
2146
2339
|
* <code>optional .google.protobuf.Timestamp last_sccm_scan = 5;</code>
|
|
@@ -2165,7 +2358,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2165
2358
|
} else {
|
|
2166
2359
|
lastSccmScanBuilder_.setMessage(value);
|
|
2167
2360
|
}
|
|
2168
|
-
bitField0_ |=
|
|
2361
|
+
bitField0_ |= 0x00000020;
|
|
2169
2362
|
onChanged();
|
|
2170
2363
|
return this;
|
|
2171
2364
|
}
|
|
@@ -2179,7 +2372,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2179
2372
|
} else {
|
|
2180
2373
|
lastSccmScanBuilder_.setMessage(builderForValue.build());
|
|
2181
2374
|
}
|
|
2182
|
-
bitField0_ |=
|
|
2375
|
+
bitField0_ |= 0x00000020;
|
|
2183
2376
|
onChanged();
|
|
2184
2377
|
return this;
|
|
2185
2378
|
}
|
|
@@ -2188,7 +2381,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2188
2381
|
*/
|
|
2189
2382
|
public Builder mergeLastSccmScan(com.google.protobuf.Timestamp value) {
|
|
2190
2383
|
if (lastSccmScanBuilder_ == null) {
|
|
2191
|
-
if (((bitField0_ &
|
|
2384
|
+
if (((bitField0_ & 0x00000020) != 0) &&
|
|
2192
2385
|
lastSccmScan_ != null &&
|
|
2193
2386
|
lastSccmScan_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
2194
2387
|
getLastSccmScanBuilder().mergeFrom(value);
|
|
@@ -2199,7 +2392,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2199
2392
|
lastSccmScanBuilder_.mergeFrom(value);
|
|
2200
2393
|
}
|
|
2201
2394
|
if (lastSccmScan_ != null) {
|
|
2202
|
-
bitField0_ |=
|
|
2395
|
+
bitField0_ |= 0x00000020;
|
|
2203
2396
|
onChanged();
|
|
2204
2397
|
}
|
|
2205
2398
|
return this;
|
|
@@ -2208,7 +2401,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2208
2401
|
* <code>optional .google.protobuf.Timestamp last_sccm_scan = 5;</code>
|
|
2209
2402
|
*/
|
|
2210
2403
|
public Builder clearLastSccmScan() {
|
|
2211
|
-
bitField0_ = (bitField0_ & ~
|
|
2404
|
+
bitField0_ = (bitField0_ & ~0x00000020);
|
|
2212
2405
|
lastSccmScan_ = null;
|
|
2213
2406
|
if (lastSccmScanBuilder_ != null) {
|
|
2214
2407
|
lastSccmScanBuilder_.dispose();
|
|
@@ -2221,7 +2414,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2221
2414
|
* <code>optional .google.protobuf.Timestamp last_sccm_scan = 5;</code>
|
|
2222
2415
|
*/
|
|
2223
2416
|
public com.google.protobuf.Timestamp.Builder getLastSccmScanBuilder() {
|
|
2224
|
-
bitField0_ |=
|
|
2417
|
+
bitField0_ |= 0x00000020;
|
|
2225
2418
|
onChanged();
|
|
2226
2419
|
return getLastSccmScanFieldBuilder().getBuilder();
|
|
2227
2420
|
}
|
|
@@ -2261,7 +2454,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2261
2454
|
* @return Whether the lastLsAgent field is set.
|
|
2262
2455
|
*/
|
|
2263
2456
|
public boolean hasLastLsAgent() {
|
|
2264
|
-
return ((bitField0_ &
|
|
2457
|
+
return ((bitField0_ & 0x00000040) != 0);
|
|
2265
2458
|
}
|
|
2266
2459
|
/**
|
|
2267
2460
|
* <code>optional .google.protobuf.Timestamp last_ls_agent = 6;</code>
|
|
@@ -2286,7 +2479,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2286
2479
|
} else {
|
|
2287
2480
|
lastLsAgentBuilder_.setMessage(value);
|
|
2288
2481
|
}
|
|
2289
|
-
bitField0_ |=
|
|
2482
|
+
bitField0_ |= 0x00000040;
|
|
2290
2483
|
onChanged();
|
|
2291
2484
|
return this;
|
|
2292
2485
|
}
|
|
@@ -2300,7 +2493,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2300
2493
|
} else {
|
|
2301
2494
|
lastLsAgentBuilder_.setMessage(builderForValue.build());
|
|
2302
2495
|
}
|
|
2303
|
-
bitField0_ |=
|
|
2496
|
+
bitField0_ |= 0x00000040;
|
|
2304
2497
|
onChanged();
|
|
2305
2498
|
return this;
|
|
2306
2499
|
}
|
|
@@ -2309,7 +2502,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2309
2502
|
*/
|
|
2310
2503
|
public Builder mergeLastLsAgent(com.google.protobuf.Timestamp value) {
|
|
2311
2504
|
if (lastLsAgentBuilder_ == null) {
|
|
2312
|
-
if (((bitField0_ &
|
|
2505
|
+
if (((bitField0_ & 0x00000040) != 0) &&
|
|
2313
2506
|
lastLsAgent_ != null &&
|
|
2314
2507
|
lastLsAgent_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
2315
2508
|
getLastLsAgentBuilder().mergeFrom(value);
|
|
@@ -2320,7 +2513,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2320
2513
|
lastLsAgentBuilder_.mergeFrom(value);
|
|
2321
2514
|
}
|
|
2322
2515
|
if (lastLsAgent_ != null) {
|
|
2323
|
-
bitField0_ |=
|
|
2516
|
+
bitField0_ |= 0x00000040;
|
|
2324
2517
|
onChanged();
|
|
2325
2518
|
}
|
|
2326
2519
|
return this;
|
|
@@ -2329,7 +2522,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2329
2522
|
* <code>optional .google.protobuf.Timestamp last_ls_agent = 6;</code>
|
|
2330
2523
|
*/
|
|
2331
2524
|
public Builder clearLastLsAgent() {
|
|
2332
|
-
bitField0_ = (bitField0_ & ~
|
|
2525
|
+
bitField0_ = (bitField0_ & ~0x00000040);
|
|
2333
2526
|
lastLsAgent_ = null;
|
|
2334
2527
|
if (lastLsAgentBuilder_ != null) {
|
|
2335
2528
|
lastLsAgentBuilder_.dispose();
|
|
@@ -2342,7 +2535,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2342
2535
|
* <code>optional .google.protobuf.Timestamp last_ls_agent = 6;</code>
|
|
2343
2536
|
*/
|
|
2344
2537
|
public com.google.protobuf.Timestamp.Builder getLastLsAgentBuilder() {
|
|
2345
|
-
bitField0_ |=
|
|
2538
|
+
bitField0_ |= 0x00000040;
|
|
2346
2539
|
onChanged();
|
|
2347
2540
|
return getLastLsAgentFieldBuilder().getBuilder();
|
|
2348
2541
|
}
|
|
@@ -2382,7 +2575,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2382
2575
|
* @return Whether the lastLsFallBack field is set.
|
|
2383
2576
|
*/
|
|
2384
2577
|
public boolean hasLastLsFallBack() {
|
|
2385
|
-
return ((bitField0_ &
|
|
2578
|
+
return ((bitField0_ & 0x00000080) != 0);
|
|
2386
2579
|
}
|
|
2387
2580
|
/**
|
|
2388
2581
|
* <code>optional .google.protobuf.Timestamp last_ls_fall_back = 7;</code>
|
|
@@ -2407,7 +2600,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2407
2600
|
} else {
|
|
2408
2601
|
lastLsFallBackBuilder_.setMessage(value);
|
|
2409
2602
|
}
|
|
2410
|
-
bitField0_ |=
|
|
2603
|
+
bitField0_ |= 0x00000080;
|
|
2411
2604
|
onChanged();
|
|
2412
2605
|
return this;
|
|
2413
2606
|
}
|
|
@@ -2421,7 +2614,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2421
2614
|
} else {
|
|
2422
2615
|
lastLsFallBackBuilder_.setMessage(builderForValue.build());
|
|
2423
2616
|
}
|
|
2424
|
-
bitField0_ |=
|
|
2617
|
+
bitField0_ |= 0x00000080;
|
|
2425
2618
|
onChanged();
|
|
2426
2619
|
return this;
|
|
2427
2620
|
}
|
|
@@ -2430,7 +2623,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2430
2623
|
*/
|
|
2431
2624
|
public Builder mergeLastLsFallBack(com.google.protobuf.Timestamp value) {
|
|
2432
2625
|
if (lastLsFallBackBuilder_ == null) {
|
|
2433
|
-
if (((bitField0_ &
|
|
2626
|
+
if (((bitField0_ & 0x00000080) != 0) &&
|
|
2434
2627
|
lastLsFallBack_ != null &&
|
|
2435
2628
|
lastLsFallBack_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
2436
2629
|
getLastLsFallBackBuilder().mergeFrom(value);
|
|
@@ -2441,7 +2634,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2441
2634
|
lastLsFallBackBuilder_.mergeFrom(value);
|
|
2442
2635
|
}
|
|
2443
2636
|
if (lastLsFallBack_ != null) {
|
|
2444
|
-
bitField0_ |=
|
|
2637
|
+
bitField0_ |= 0x00000080;
|
|
2445
2638
|
onChanged();
|
|
2446
2639
|
}
|
|
2447
2640
|
return this;
|
|
@@ -2450,7 +2643,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2450
2643
|
* <code>optional .google.protobuf.Timestamp last_ls_fall_back = 7;</code>
|
|
2451
2644
|
*/
|
|
2452
2645
|
public Builder clearLastLsFallBack() {
|
|
2453
|
-
bitField0_ = (bitField0_ & ~
|
|
2646
|
+
bitField0_ = (bitField0_ & ~0x00000080);
|
|
2454
2647
|
lastLsFallBack_ = null;
|
|
2455
2648
|
if (lastLsFallBackBuilder_ != null) {
|
|
2456
2649
|
lastLsFallBackBuilder_.dispose();
|
|
@@ -2463,7 +2656,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2463
2656
|
* <code>optional .google.protobuf.Timestamp last_ls_fall_back = 7;</code>
|
|
2464
2657
|
*/
|
|
2465
2658
|
public com.google.protobuf.Timestamp.Builder getLastLsFallBackBuilder() {
|
|
2466
|
-
bitField0_ |=
|
|
2659
|
+
bitField0_ |= 0x00000080;
|
|
2467
2660
|
onChanged();
|
|
2468
2661
|
return getLastLsFallBackFieldBuilder().getBuilder();
|
|
2469
2662
|
}
|
|
@@ -2503,7 +2696,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2503
2696
|
* @return Whether the lastWorkGroupScan field is set.
|
|
2504
2697
|
*/
|
|
2505
2698
|
public boolean hasLastWorkGroupScan() {
|
|
2506
|
-
return ((bitField0_ &
|
|
2699
|
+
return ((bitField0_ & 0x00000100) != 0);
|
|
2507
2700
|
}
|
|
2508
2701
|
/**
|
|
2509
2702
|
* <code>optional .google.protobuf.Timestamp last_work_group_scan = 8;</code>
|
|
@@ -2528,7 +2721,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2528
2721
|
} else {
|
|
2529
2722
|
lastWorkGroupScanBuilder_.setMessage(value);
|
|
2530
2723
|
}
|
|
2531
|
-
bitField0_ |=
|
|
2724
|
+
bitField0_ |= 0x00000100;
|
|
2532
2725
|
onChanged();
|
|
2533
2726
|
return this;
|
|
2534
2727
|
}
|
|
@@ -2542,7 +2735,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2542
2735
|
} else {
|
|
2543
2736
|
lastWorkGroupScanBuilder_.setMessage(builderForValue.build());
|
|
2544
2737
|
}
|
|
2545
|
-
bitField0_ |=
|
|
2738
|
+
bitField0_ |= 0x00000100;
|
|
2546
2739
|
onChanged();
|
|
2547
2740
|
return this;
|
|
2548
2741
|
}
|
|
@@ -2551,7 +2744,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2551
2744
|
*/
|
|
2552
2745
|
public Builder mergeLastWorkGroupScan(com.google.protobuf.Timestamp value) {
|
|
2553
2746
|
if (lastWorkGroupScanBuilder_ == null) {
|
|
2554
|
-
if (((bitField0_ &
|
|
2747
|
+
if (((bitField0_ & 0x00000100) != 0) &&
|
|
2555
2748
|
lastWorkGroupScan_ != null &&
|
|
2556
2749
|
lastWorkGroupScan_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
2557
2750
|
getLastWorkGroupScanBuilder().mergeFrom(value);
|
|
@@ -2562,7 +2755,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2562
2755
|
lastWorkGroupScanBuilder_.mergeFrom(value);
|
|
2563
2756
|
}
|
|
2564
2757
|
if (lastWorkGroupScan_ != null) {
|
|
2565
|
-
bitField0_ |=
|
|
2758
|
+
bitField0_ |= 0x00000100;
|
|
2566
2759
|
onChanged();
|
|
2567
2760
|
}
|
|
2568
2761
|
return this;
|
|
@@ -2571,7 +2764,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2571
2764
|
* <code>optional .google.protobuf.Timestamp last_work_group_scan = 8;</code>
|
|
2572
2765
|
*/
|
|
2573
2766
|
public Builder clearLastWorkGroupScan() {
|
|
2574
|
-
bitField0_ = (bitField0_ & ~
|
|
2767
|
+
bitField0_ = (bitField0_ & ~0x00000100);
|
|
2575
2768
|
lastWorkGroupScan_ = null;
|
|
2576
2769
|
if (lastWorkGroupScanBuilder_ != null) {
|
|
2577
2770
|
lastWorkGroupScanBuilder_.dispose();
|
|
@@ -2584,7 +2777,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2584
2777
|
* <code>optional .google.protobuf.Timestamp last_work_group_scan = 8;</code>
|
|
2585
2778
|
*/
|
|
2586
2779
|
public com.google.protobuf.Timestamp.Builder getLastWorkGroupScanBuilder() {
|
|
2587
|
-
bitField0_ |=
|
|
2780
|
+
bitField0_ |= 0x00000100;
|
|
2588
2781
|
onChanged();
|
|
2589
2782
|
return getLastWorkGroupScanFieldBuilder().getBuilder();
|
|
2590
2783
|
}
|
|
@@ -2624,7 +2817,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2624
2817
|
* @return Whether the lastAssetRadarScan field is set.
|
|
2625
2818
|
*/
|
|
2626
2819
|
public boolean hasLastAssetRadarScan() {
|
|
2627
|
-
return ((bitField0_ &
|
|
2820
|
+
return ((bitField0_ & 0x00000200) != 0);
|
|
2628
2821
|
}
|
|
2629
2822
|
/**
|
|
2630
2823
|
* <code>optional .google.protobuf.Timestamp last_asset_radar_scan = 9;</code>
|
|
@@ -2649,7 +2842,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2649
2842
|
} else {
|
|
2650
2843
|
lastAssetRadarScanBuilder_.setMessage(value);
|
|
2651
2844
|
}
|
|
2652
|
-
bitField0_ |=
|
|
2845
|
+
bitField0_ |= 0x00000200;
|
|
2653
2846
|
onChanged();
|
|
2654
2847
|
return this;
|
|
2655
2848
|
}
|
|
@@ -2663,7 +2856,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2663
2856
|
} else {
|
|
2664
2857
|
lastAssetRadarScanBuilder_.setMessage(builderForValue.build());
|
|
2665
2858
|
}
|
|
2666
|
-
bitField0_ |=
|
|
2859
|
+
bitField0_ |= 0x00000200;
|
|
2667
2860
|
onChanged();
|
|
2668
2861
|
return this;
|
|
2669
2862
|
}
|
|
@@ -2672,7 +2865,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2672
2865
|
*/
|
|
2673
2866
|
public Builder mergeLastAssetRadarScan(com.google.protobuf.Timestamp value) {
|
|
2674
2867
|
if (lastAssetRadarScanBuilder_ == null) {
|
|
2675
|
-
if (((bitField0_ &
|
|
2868
|
+
if (((bitField0_ & 0x00000200) != 0) &&
|
|
2676
2869
|
lastAssetRadarScan_ != null &&
|
|
2677
2870
|
lastAssetRadarScan_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
2678
2871
|
getLastAssetRadarScanBuilder().mergeFrom(value);
|
|
@@ -2683,7 +2876,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2683
2876
|
lastAssetRadarScanBuilder_.mergeFrom(value);
|
|
2684
2877
|
}
|
|
2685
2878
|
if (lastAssetRadarScan_ != null) {
|
|
2686
|
-
bitField0_ |=
|
|
2879
|
+
bitField0_ |= 0x00000200;
|
|
2687
2880
|
onChanged();
|
|
2688
2881
|
}
|
|
2689
2882
|
return this;
|
|
@@ -2692,7 +2885,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2692
2885
|
* <code>optional .google.protobuf.Timestamp last_asset_radar_scan = 9;</code>
|
|
2693
2886
|
*/
|
|
2694
2887
|
public Builder clearLastAssetRadarScan() {
|
|
2695
|
-
bitField0_ = (bitField0_ & ~
|
|
2888
|
+
bitField0_ = (bitField0_ & ~0x00000200);
|
|
2696
2889
|
lastAssetRadarScan_ = null;
|
|
2697
2890
|
if (lastAssetRadarScanBuilder_ != null) {
|
|
2698
2891
|
lastAssetRadarScanBuilder_.dispose();
|
|
@@ -2705,7 +2898,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2705
2898
|
* <code>optional .google.protobuf.Timestamp last_asset_radar_scan = 9;</code>
|
|
2706
2899
|
*/
|
|
2707
2900
|
public com.google.protobuf.Timestamp.Builder getLastAssetRadarScanBuilder() {
|
|
2708
|
-
bitField0_ |=
|
|
2901
|
+
bitField0_ |= 0x00000200;
|
|
2709
2902
|
onChanged();
|
|
2710
2903
|
return getLastAssetRadarScanFieldBuilder().getBuilder();
|
|
2711
2904
|
}
|
|
@@ -2745,7 +2938,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2745
2938
|
* @return Whether the lastPerformanceScan field is set.
|
|
2746
2939
|
*/
|
|
2747
2940
|
public boolean hasLastPerformanceScan() {
|
|
2748
|
-
return ((bitField0_ &
|
|
2941
|
+
return ((bitField0_ & 0x00000400) != 0);
|
|
2749
2942
|
}
|
|
2750
2943
|
/**
|
|
2751
2944
|
* <code>optional .google.protobuf.Timestamp last_performance_scan = 10;</code>
|
|
@@ -2770,7 +2963,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2770
2963
|
} else {
|
|
2771
2964
|
lastPerformanceScanBuilder_.setMessage(value);
|
|
2772
2965
|
}
|
|
2773
|
-
bitField0_ |=
|
|
2966
|
+
bitField0_ |= 0x00000400;
|
|
2774
2967
|
onChanged();
|
|
2775
2968
|
return this;
|
|
2776
2969
|
}
|
|
@@ -2784,7 +2977,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2784
2977
|
} else {
|
|
2785
2978
|
lastPerformanceScanBuilder_.setMessage(builderForValue.build());
|
|
2786
2979
|
}
|
|
2787
|
-
bitField0_ |=
|
|
2980
|
+
bitField0_ |= 0x00000400;
|
|
2788
2981
|
onChanged();
|
|
2789
2982
|
return this;
|
|
2790
2983
|
}
|
|
@@ -2793,7 +2986,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2793
2986
|
*/
|
|
2794
2987
|
public Builder mergeLastPerformanceScan(com.google.protobuf.Timestamp value) {
|
|
2795
2988
|
if (lastPerformanceScanBuilder_ == null) {
|
|
2796
|
-
if (((bitField0_ &
|
|
2989
|
+
if (((bitField0_ & 0x00000400) != 0) &&
|
|
2797
2990
|
lastPerformanceScan_ != null &&
|
|
2798
2991
|
lastPerformanceScan_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
2799
2992
|
getLastPerformanceScanBuilder().mergeFrom(value);
|
|
@@ -2804,7 +2997,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2804
2997
|
lastPerformanceScanBuilder_.mergeFrom(value);
|
|
2805
2998
|
}
|
|
2806
2999
|
if (lastPerformanceScan_ != null) {
|
|
2807
|
-
bitField0_ |=
|
|
3000
|
+
bitField0_ |= 0x00000400;
|
|
2808
3001
|
onChanged();
|
|
2809
3002
|
}
|
|
2810
3003
|
return this;
|
|
@@ -2813,7 +3006,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2813
3006
|
* <code>optional .google.protobuf.Timestamp last_performance_scan = 10;</code>
|
|
2814
3007
|
*/
|
|
2815
3008
|
public Builder clearLastPerformanceScan() {
|
|
2816
|
-
bitField0_ = (bitField0_ & ~
|
|
3009
|
+
bitField0_ = (bitField0_ & ~0x00000400);
|
|
2817
3010
|
lastPerformanceScan_ = null;
|
|
2818
3011
|
if (lastPerformanceScanBuilder_ != null) {
|
|
2819
3012
|
lastPerformanceScanBuilder_.dispose();
|
|
@@ -2826,7 +3019,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2826
3019
|
* <code>optional .google.protobuf.Timestamp last_performance_scan = 10;</code>
|
|
2827
3020
|
*/
|
|
2828
3021
|
public com.google.protobuf.Timestamp.Builder getLastPerformanceScanBuilder() {
|
|
2829
|
-
bitField0_ |=
|
|
3022
|
+
bitField0_ |= 0x00000400;
|
|
2830
3023
|
onChanged();
|
|
2831
3024
|
return getLastPerformanceScanFieldBuilder().getBuilder();
|
|
2832
3025
|
}
|
|
@@ -2866,7 +3059,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2866
3059
|
* @return Whether the lastLsPush field is set.
|
|
2867
3060
|
*/
|
|
2868
3061
|
public boolean hasLastLsPush() {
|
|
2869
|
-
return ((bitField0_ &
|
|
3062
|
+
return ((bitField0_ & 0x00000800) != 0);
|
|
2870
3063
|
}
|
|
2871
3064
|
/**
|
|
2872
3065
|
* <code>optional .google.protobuf.Timestamp last_ls_push = 11;</code>
|
|
@@ -2891,7 +3084,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2891
3084
|
} else {
|
|
2892
3085
|
lastLsPushBuilder_.setMessage(value);
|
|
2893
3086
|
}
|
|
2894
|
-
bitField0_ |=
|
|
3087
|
+
bitField0_ |= 0x00000800;
|
|
2895
3088
|
onChanged();
|
|
2896
3089
|
return this;
|
|
2897
3090
|
}
|
|
@@ -2905,7 +3098,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2905
3098
|
} else {
|
|
2906
3099
|
lastLsPushBuilder_.setMessage(builderForValue.build());
|
|
2907
3100
|
}
|
|
2908
|
-
bitField0_ |=
|
|
3101
|
+
bitField0_ |= 0x00000800;
|
|
2909
3102
|
onChanged();
|
|
2910
3103
|
return this;
|
|
2911
3104
|
}
|
|
@@ -2914,7 +3107,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2914
3107
|
*/
|
|
2915
3108
|
public Builder mergeLastLsPush(com.google.protobuf.Timestamp value) {
|
|
2916
3109
|
if (lastLsPushBuilder_ == null) {
|
|
2917
|
-
if (((bitField0_ &
|
|
3110
|
+
if (((bitField0_ & 0x00000800) != 0) &&
|
|
2918
3111
|
lastLsPush_ != null &&
|
|
2919
3112
|
lastLsPush_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
2920
3113
|
getLastLsPushBuilder().mergeFrom(value);
|
|
@@ -2925,7 +3118,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2925
3118
|
lastLsPushBuilder_.mergeFrom(value);
|
|
2926
3119
|
}
|
|
2927
3120
|
if (lastLsPush_ != null) {
|
|
2928
|
-
bitField0_ |=
|
|
3121
|
+
bitField0_ |= 0x00000800;
|
|
2929
3122
|
onChanged();
|
|
2930
3123
|
}
|
|
2931
3124
|
return this;
|
|
@@ -2934,7 +3127,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2934
3127
|
* <code>optional .google.protobuf.Timestamp last_ls_push = 11;</code>
|
|
2935
3128
|
*/
|
|
2936
3129
|
public Builder clearLastLsPush() {
|
|
2937
|
-
bitField0_ = (bitField0_ & ~
|
|
3130
|
+
bitField0_ = (bitField0_ & ~0x00000800);
|
|
2938
3131
|
lastLsPush_ = null;
|
|
2939
3132
|
if (lastLsPushBuilder_ != null) {
|
|
2940
3133
|
lastLsPushBuilder_.dispose();
|
|
@@ -2947,7 +3140,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2947
3140
|
* <code>optional .google.protobuf.Timestamp last_ls_push = 11;</code>
|
|
2948
3141
|
*/
|
|
2949
3142
|
public com.google.protobuf.Timestamp.Builder getLastLsPushBuilder() {
|
|
2950
|
-
bitField0_ |=
|
|
3143
|
+
bitField0_ |= 0x00000800;
|
|
2951
3144
|
onChanged();
|
|
2952
3145
|
return getLastLsPushFieldBuilder().getBuilder();
|
|
2953
3146
|
}
|
|
@@ -2987,7 +3180,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2987
3180
|
* @return Whether the lastScheduled field is set.
|
|
2988
3181
|
*/
|
|
2989
3182
|
public boolean hasLastScheduled() {
|
|
2990
|
-
return ((bitField0_ &
|
|
3183
|
+
return ((bitField0_ & 0x00001000) != 0);
|
|
2991
3184
|
}
|
|
2992
3185
|
/**
|
|
2993
3186
|
* <code>optional .google.protobuf.Timestamp last_scheduled = 12;</code>
|
|
@@ -3012,7 +3205,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3012
3205
|
} else {
|
|
3013
3206
|
lastScheduledBuilder_.setMessage(value);
|
|
3014
3207
|
}
|
|
3015
|
-
bitField0_ |=
|
|
3208
|
+
bitField0_ |= 0x00001000;
|
|
3016
3209
|
onChanged();
|
|
3017
3210
|
return this;
|
|
3018
3211
|
}
|
|
@@ -3026,7 +3219,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3026
3219
|
} else {
|
|
3027
3220
|
lastScheduledBuilder_.setMessage(builderForValue.build());
|
|
3028
3221
|
}
|
|
3029
|
-
bitField0_ |=
|
|
3222
|
+
bitField0_ |= 0x00001000;
|
|
3030
3223
|
onChanged();
|
|
3031
3224
|
return this;
|
|
3032
3225
|
}
|
|
@@ -3035,7 +3228,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3035
3228
|
*/
|
|
3036
3229
|
public Builder mergeLastScheduled(com.google.protobuf.Timestamp value) {
|
|
3037
3230
|
if (lastScheduledBuilder_ == null) {
|
|
3038
|
-
if (((bitField0_ &
|
|
3231
|
+
if (((bitField0_ & 0x00001000) != 0) &&
|
|
3039
3232
|
lastScheduled_ != null &&
|
|
3040
3233
|
lastScheduled_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
3041
3234
|
getLastScheduledBuilder().mergeFrom(value);
|
|
@@ -3046,7 +3239,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3046
3239
|
lastScheduledBuilder_.mergeFrom(value);
|
|
3047
3240
|
}
|
|
3048
3241
|
if (lastScheduled_ != null) {
|
|
3049
|
-
bitField0_ |=
|
|
3242
|
+
bitField0_ |= 0x00001000;
|
|
3050
3243
|
onChanged();
|
|
3051
3244
|
}
|
|
3052
3245
|
return this;
|
|
@@ -3055,7 +3248,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3055
3248
|
* <code>optional .google.protobuf.Timestamp last_scheduled = 12;</code>
|
|
3056
3249
|
*/
|
|
3057
3250
|
public Builder clearLastScheduled() {
|
|
3058
|
-
bitField0_ = (bitField0_ & ~
|
|
3251
|
+
bitField0_ = (bitField0_ & ~0x00001000);
|
|
3059
3252
|
lastScheduled_ = null;
|
|
3060
3253
|
if (lastScheduledBuilder_ != null) {
|
|
3061
3254
|
lastScheduledBuilder_.dispose();
|
|
@@ -3068,7 +3261,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3068
3261
|
* <code>optional .google.protobuf.Timestamp last_scheduled = 12;</code>
|
|
3069
3262
|
*/
|
|
3070
3263
|
public com.google.protobuf.Timestamp.Builder getLastScheduledBuilder() {
|
|
3071
|
-
bitField0_ |=
|
|
3264
|
+
bitField0_ |= 0x00001000;
|
|
3072
3265
|
onChanged();
|
|
3073
3266
|
return getLastScheduledFieldBuilder().getBuilder();
|
|
3074
3267
|
}
|
|
@@ -3108,7 +3301,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3108
3301
|
* @return Whether the lastTriggered field is set.
|
|
3109
3302
|
*/
|
|
3110
3303
|
public boolean hasLastTriggered() {
|
|
3111
|
-
return ((bitField0_ &
|
|
3304
|
+
return ((bitField0_ & 0x00002000) != 0);
|
|
3112
3305
|
}
|
|
3113
3306
|
/**
|
|
3114
3307
|
* <code>optional .google.protobuf.Timestamp last_triggered = 13;</code>
|
|
@@ -3133,7 +3326,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3133
3326
|
} else {
|
|
3134
3327
|
lastTriggeredBuilder_.setMessage(value);
|
|
3135
3328
|
}
|
|
3136
|
-
bitField0_ |=
|
|
3329
|
+
bitField0_ |= 0x00002000;
|
|
3137
3330
|
onChanged();
|
|
3138
3331
|
return this;
|
|
3139
3332
|
}
|
|
@@ -3147,7 +3340,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3147
3340
|
} else {
|
|
3148
3341
|
lastTriggeredBuilder_.setMessage(builderForValue.build());
|
|
3149
3342
|
}
|
|
3150
|
-
bitField0_ |=
|
|
3343
|
+
bitField0_ |= 0x00002000;
|
|
3151
3344
|
onChanged();
|
|
3152
3345
|
return this;
|
|
3153
3346
|
}
|
|
@@ -3156,7 +3349,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3156
3349
|
*/
|
|
3157
3350
|
public Builder mergeLastTriggered(com.google.protobuf.Timestamp value) {
|
|
3158
3351
|
if (lastTriggeredBuilder_ == null) {
|
|
3159
|
-
if (((bitField0_ &
|
|
3352
|
+
if (((bitField0_ & 0x00002000) != 0) &&
|
|
3160
3353
|
lastTriggered_ != null &&
|
|
3161
3354
|
lastTriggered_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
3162
3355
|
getLastTriggeredBuilder().mergeFrom(value);
|
|
@@ -3167,7 +3360,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3167
3360
|
lastTriggeredBuilder_.mergeFrom(value);
|
|
3168
3361
|
}
|
|
3169
3362
|
if (lastTriggered_ != null) {
|
|
3170
|
-
bitField0_ |=
|
|
3363
|
+
bitField0_ |= 0x00002000;
|
|
3171
3364
|
onChanged();
|
|
3172
3365
|
}
|
|
3173
3366
|
return this;
|
|
@@ -3176,7 +3369,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3176
3369
|
* <code>optional .google.protobuf.Timestamp last_triggered = 13;</code>
|
|
3177
3370
|
*/
|
|
3178
3371
|
public Builder clearLastTriggered() {
|
|
3179
|
-
bitField0_ = (bitField0_ & ~
|
|
3372
|
+
bitField0_ = (bitField0_ & ~0x00002000);
|
|
3180
3373
|
lastTriggered_ = null;
|
|
3181
3374
|
if (lastTriggeredBuilder_ != null) {
|
|
3182
3375
|
lastTriggeredBuilder_.dispose();
|
|
@@ -3189,7 +3382,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3189
3382
|
* <code>optional .google.protobuf.Timestamp last_triggered = 13;</code>
|
|
3190
3383
|
*/
|
|
3191
3384
|
public com.google.protobuf.Timestamp.Builder getLastTriggeredBuilder() {
|
|
3192
|
-
bitField0_ |=
|
|
3385
|
+
bitField0_ |= 0x00002000;
|
|
3193
3386
|
onChanged();
|
|
3194
3387
|
return getLastTriggeredFieldBuilder().getBuilder();
|
|
3195
3388
|
}
|
|
@@ -3229,7 +3422,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3229
3422
|
* @return Whether the lastLsAgentDirect field is set.
|
|
3230
3423
|
*/
|
|
3231
3424
|
public boolean hasLastLsAgentDirect() {
|
|
3232
|
-
return ((bitField0_ &
|
|
3425
|
+
return ((bitField0_ & 0x00004000) != 0);
|
|
3233
3426
|
}
|
|
3234
3427
|
/**
|
|
3235
3428
|
* <code>optional .google.protobuf.Timestamp last_ls_agent_direct = 14;</code>
|
|
@@ -3254,7 +3447,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3254
3447
|
} else {
|
|
3255
3448
|
lastLsAgentDirectBuilder_.setMessage(value);
|
|
3256
3449
|
}
|
|
3257
|
-
bitField0_ |=
|
|
3450
|
+
bitField0_ |= 0x00004000;
|
|
3258
3451
|
onChanged();
|
|
3259
3452
|
return this;
|
|
3260
3453
|
}
|
|
@@ -3268,7 +3461,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3268
3461
|
} else {
|
|
3269
3462
|
lastLsAgentDirectBuilder_.setMessage(builderForValue.build());
|
|
3270
3463
|
}
|
|
3271
|
-
bitField0_ |=
|
|
3464
|
+
bitField0_ |= 0x00004000;
|
|
3272
3465
|
onChanged();
|
|
3273
3466
|
return this;
|
|
3274
3467
|
}
|
|
@@ -3277,7 +3470,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3277
3470
|
*/
|
|
3278
3471
|
public Builder mergeLastLsAgentDirect(com.google.protobuf.Timestamp value) {
|
|
3279
3472
|
if (lastLsAgentDirectBuilder_ == null) {
|
|
3280
|
-
if (((bitField0_ &
|
|
3473
|
+
if (((bitField0_ & 0x00004000) != 0) &&
|
|
3281
3474
|
lastLsAgentDirect_ != null &&
|
|
3282
3475
|
lastLsAgentDirect_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
3283
3476
|
getLastLsAgentDirectBuilder().mergeFrom(value);
|
|
@@ -3288,7 +3481,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3288
3481
|
lastLsAgentDirectBuilder_.mergeFrom(value);
|
|
3289
3482
|
}
|
|
3290
3483
|
if (lastLsAgentDirect_ != null) {
|
|
3291
|
-
bitField0_ |=
|
|
3484
|
+
bitField0_ |= 0x00004000;
|
|
3292
3485
|
onChanged();
|
|
3293
3486
|
}
|
|
3294
3487
|
return this;
|
|
@@ -3297,7 +3490,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3297
3490
|
* <code>optional .google.protobuf.Timestamp last_ls_agent_direct = 14;</code>
|
|
3298
3491
|
*/
|
|
3299
3492
|
public Builder clearLastLsAgentDirect() {
|
|
3300
|
-
bitField0_ = (bitField0_ & ~
|
|
3493
|
+
bitField0_ = (bitField0_ & ~0x00004000);
|
|
3301
3494
|
lastLsAgentDirect_ = null;
|
|
3302
3495
|
if (lastLsAgentDirectBuilder_ != null) {
|
|
3303
3496
|
lastLsAgentDirectBuilder_.dispose();
|
|
@@ -3310,7 +3503,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3310
3503
|
* <code>optional .google.protobuf.Timestamp last_ls_agent_direct = 14;</code>
|
|
3311
3504
|
*/
|
|
3312
3505
|
public com.google.protobuf.Timestamp.Builder getLastLsAgentDirectBuilder() {
|
|
3313
|
-
bitField0_ |=
|
|
3506
|
+
bitField0_ |= 0x00004000;
|
|
3314
3507
|
onChanged();
|
|
3315
3508
|
return getLastLsAgentDirectFieldBuilder().getBuilder();
|
|
3316
3509
|
}
|
|
@@ -3354,7 +3547,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3354
3547
|
* @return Whether the custom field is set.
|
|
3355
3548
|
*/
|
|
3356
3549
|
public boolean hasCustom() {
|
|
3357
|
-
return ((bitField0_ &
|
|
3550
|
+
return ((bitField0_ & 0x00008000) != 0);
|
|
3358
3551
|
}
|
|
3359
3552
|
/**
|
|
3360
3553
|
* <pre>
|
|
@@ -3387,7 +3580,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3387
3580
|
} else {
|
|
3388
3581
|
customBuilder_.setMessage(value);
|
|
3389
3582
|
}
|
|
3390
|
-
bitField0_ |=
|
|
3583
|
+
bitField0_ |= 0x00008000;
|
|
3391
3584
|
onChanged();
|
|
3392
3585
|
return this;
|
|
3393
3586
|
}
|
|
@@ -3405,7 +3598,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3405
3598
|
} else {
|
|
3406
3599
|
customBuilder_.setMessage(builderForValue.build());
|
|
3407
3600
|
}
|
|
3408
|
-
bitField0_ |=
|
|
3601
|
+
bitField0_ |= 0x00008000;
|
|
3409
3602
|
onChanged();
|
|
3410
3603
|
return this;
|
|
3411
3604
|
}
|
|
@@ -3418,7 +3611,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3418
3611
|
*/
|
|
3419
3612
|
public Builder mergeCustom(com.lansweeper.dp.outbound.v1.AssetCustom value) {
|
|
3420
3613
|
if (customBuilder_ == null) {
|
|
3421
|
-
if (((bitField0_ &
|
|
3614
|
+
if (((bitField0_ & 0x00008000) != 0) &&
|
|
3422
3615
|
custom_ != null &&
|
|
3423
3616
|
custom_ != com.lansweeper.dp.outbound.v1.AssetCustom.getDefaultInstance()) {
|
|
3424
3617
|
getCustomBuilder().mergeFrom(value);
|
|
@@ -3429,7 +3622,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3429
3622
|
customBuilder_.mergeFrom(value);
|
|
3430
3623
|
}
|
|
3431
3624
|
if (custom_ != null) {
|
|
3432
|
-
bitField0_ |=
|
|
3625
|
+
bitField0_ |= 0x00008000;
|
|
3433
3626
|
onChanged();
|
|
3434
3627
|
}
|
|
3435
3628
|
return this;
|
|
@@ -3442,7 +3635,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3442
3635
|
* <code>optional .com.lansweeper.dp.outbound.v1.AssetCustom custom = 15;</code>
|
|
3443
3636
|
*/
|
|
3444
3637
|
public Builder clearCustom() {
|
|
3445
|
-
bitField0_ = (bitField0_ & ~
|
|
3638
|
+
bitField0_ = (bitField0_ & ~0x00008000);
|
|
3446
3639
|
custom_ = null;
|
|
3447
3640
|
if (customBuilder_ != null) {
|
|
3448
3641
|
customBuilder_.dispose();
|
|
@@ -3459,7 +3652,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3459
3652
|
* <code>optional .com.lansweeper.dp.outbound.v1.AssetCustom custom = 15;</code>
|
|
3460
3653
|
*/
|
|
3461
3654
|
public com.lansweeper.dp.outbound.v1.AssetCustom.Builder getCustomBuilder() {
|
|
3462
|
-
bitField0_ |=
|
|
3655
|
+
bitField0_ |= 0x00008000;
|
|
3463
3656
|
onChanged();
|
|
3464
3657
|
return getCustomFieldBuilder().getBuilder();
|
|
3465
3658
|
}
|
|
@@ -3502,9 +3695,9 @@ private static final long serialVersionUID = 0L;
|
|
|
3502
3695
|
private java.util.List<com.lansweeper.dp.outbound.v1.AssetGroupLink> groupLink_ =
|
|
3503
3696
|
java.util.Collections.emptyList();
|
|
3504
3697
|
private void ensureGroupLinkIsMutable() {
|
|
3505
|
-
if (!((bitField0_ &
|
|
3698
|
+
if (!((bitField0_ & 0x00010000) != 0)) {
|
|
3506
3699
|
groupLink_ = new java.util.ArrayList<com.lansweeper.dp.outbound.v1.AssetGroupLink>(groupLink_);
|
|
3507
|
-
bitField0_ |=
|
|
3700
|
+
bitField0_ |= 0x00010000;
|
|
3508
3701
|
}
|
|
3509
3702
|
}
|
|
3510
3703
|
|
|
@@ -3698,7 +3891,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3698
3891
|
public Builder clearGroupLink() {
|
|
3699
3892
|
if (groupLinkBuilder_ == null) {
|
|
3700
3893
|
groupLink_ = java.util.Collections.emptyList();
|
|
3701
|
-
bitField0_ = (bitField0_ & ~
|
|
3894
|
+
bitField0_ = (bitField0_ & ~0x00010000);
|
|
3702
3895
|
onChanged();
|
|
3703
3896
|
} else {
|
|
3704
3897
|
groupLinkBuilder_.clear();
|
|
@@ -3803,7 +3996,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3803
3996
|
groupLinkBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
|
|
3804
3997
|
com.lansweeper.dp.outbound.v1.AssetGroupLink, com.lansweeper.dp.outbound.v1.AssetGroupLink.Builder, com.lansweeper.dp.outbound.v1.AssetGroupLinkOrBuilder>(
|
|
3805
3998
|
groupLink_,
|
|
3806
|
-
((bitField0_ &
|
|
3999
|
+
((bitField0_ & 0x00010000) != 0),
|
|
3807
4000
|
getParentForChildren(),
|
|
3808
4001
|
isClean());
|
|
3809
4002
|
groupLink_ = null;
|
|
@@ -3821,7 +4014,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3821
4014
|
* @return Whether the ipLocationKey field is set.
|
|
3822
4015
|
*/
|
|
3823
4016
|
public boolean hasIpLocationKey() {
|
|
3824
|
-
return ((bitField0_ &
|
|
4017
|
+
return ((bitField0_ & 0x00020000) != 0);
|
|
3825
4018
|
}
|
|
3826
4019
|
/**
|
|
3827
4020
|
* <pre>
|
|
@@ -3877,7 +4070,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3877
4070
|
java.lang.String value) {
|
|
3878
4071
|
if (value == null) { throw new NullPointerException(); }
|
|
3879
4072
|
ipLocationKey_ = value;
|
|
3880
|
-
bitField0_ |=
|
|
4073
|
+
bitField0_ |= 0x00020000;
|
|
3881
4074
|
onChanged();
|
|
3882
4075
|
return this;
|
|
3883
4076
|
}
|
|
@@ -3891,7 +4084,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3891
4084
|
*/
|
|
3892
4085
|
public Builder clearIpLocationKey() {
|
|
3893
4086
|
ipLocationKey_ = getDefaultInstance().getIpLocationKey();
|
|
3894
|
-
bitField0_ = (bitField0_ & ~
|
|
4087
|
+
bitField0_ = (bitField0_ & ~0x00020000);
|
|
3895
4088
|
onChanged();
|
|
3896
4089
|
return this;
|
|
3897
4090
|
}
|
|
@@ -3909,7 +4102,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3909
4102
|
if (value == null) { throw new NullPointerException(); }
|
|
3910
4103
|
checkByteStringIsUtf8(value);
|
|
3911
4104
|
ipLocationKey_ = value;
|
|
3912
|
-
bitField0_ |=
|
|
4105
|
+
bitField0_ |= 0x00020000;
|
|
3913
4106
|
onChanged();
|
|
3914
4107
|
return this;
|
|
3915
4108
|
}
|
|
@@ -3924,7 +4117,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3924
4117
|
* @return Whether the ipLocationId field is set.
|
|
3925
4118
|
*/
|
|
3926
4119
|
public boolean hasIpLocationId() {
|
|
3927
|
-
return ((bitField0_ &
|
|
4120
|
+
return ((bitField0_ & 0x00040000) != 0);
|
|
3928
4121
|
}
|
|
3929
4122
|
/**
|
|
3930
4123
|
* <pre>
|
|
@@ -3980,7 +4173,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3980
4173
|
java.lang.String value) {
|
|
3981
4174
|
if (value == null) { throw new NullPointerException(); }
|
|
3982
4175
|
ipLocationId_ = value;
|
|
3983
|
-
bitField0_ |=
|
|
4176
|
+
bitField0_ |= 0x00040000;
|
|
3984
4177
|
onChanged();
|
|
3985
4178
|
return this;
|
|
3986
4179
|
}
|
|
@@ -3994,7 +4187,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3994
4187
|
*/
|
|
3995
4188
|
public Builder clearIpLocationId() {
|
|
3996
4189
|
ipLocationId_ = getDefaultInstance().getIpLocationId();
|
|
3997
|
-
bitField0_ = (bitField0_ & ~
|
|
4190
|
+
bitField0_ = (bitField0_ & ~0x00040000);
|
|
3998
4191
|
onChanged();
|
|
3999
4192
|
return this;
|
|
4000
4193
|
}
|
|
@@ -4012,7 +4205,7 @@ private static final long serialVersionUID = 0L;
|
|
|
4012
4205
|
if (value == null) { throw new NullPointerException(); }
|
|
4013
4206
|
checkByteStringIsUtf8(value);
|
|
4014
4207
|
ipLocationId_ = value;
|
|
4015
|
-
bitField0_ |=
|
|
4208
|
+
bitField0_ |= 0x00040000;
|
|
4016
4209
|
onChanged();
|
|
4017
4210
|
return this;
|
|
4018
4211
|
}
|