@lansweeper/data-platform-outbound-grpc 0.3.32 → 0.3.34
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +24 -0
- package/gen-proto/outbound_pb.js +202 -1
- package/generated-go/outbound.pb.go +7369 -7311
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +9 -5
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputer$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputer$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputer.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputerOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroup$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroup$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroup.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroupOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryUser$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryUser$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryUser.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ActiveDirectoryUserOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Processor$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Processor$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Processor.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ProcessorOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +9 -5
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputer.java +323 -138
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryComputerOrBuilder.java +15 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroup.java +286 -101
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryGroupOrBuilder.java +15 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryUser.java +801 -616
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryUserOrBuilder.java +15 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2357 -2349
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Processor.java +247 -54
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ProcessorOrBuilder.java +44 -15
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.3.31-sources.jar → outbound-model-0.3.33-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.31.jar → outbound-model-0.3.33.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +9 -5
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.31-sources.jar → outbound-service-0.3.33-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.31.jar → outbound-service-0.3.33.jar} +0 -0
|
@@ -84,6 +84,32 @@ private static final long serialVersionUID = 0L;
|
|
|
84
84
|
return adObject_ == null ? com.lansweeper.dp.outbound.v1.ActiveDirectoryObject.getDefaultInstance() : adObject_;
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
+
public static final int AD_DOMAIN_FIELD_NUMBER = 16;
|
|
88
|
+
private com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain adDomain_;
|
|
89
|
+
/**
|
|
90
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain ad_domain = 16;</code>
|
|
91
|
+
* @return Whether the adDomain field is set.
|
|
92
|
+
*/
|
|
93
|
+
@java.lang.Override
|
|
94
|
+
public boolean hasAdDomain() {
|
|
95
|
+
return ((bitField0_ & 0x00000002) != 0);
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain ad_domain = 16;</code>
|
|
99
|
+
* @return The adDomain.
|
|
100
|
+
*/
|
|
101
|
+
@java.lang.Override
|
|
102
|
+
public com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain getAdDomain() {
|
|
103
|
+
return adDomain_ == null ? com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.getDefaultInstance() : adDomain_;
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain ad_domain = 16;</code>
|
|
107
|
+
*/
|
|
108
|
+
@java.lang.Override
|
|
109
|
+
public com.lansweeper.dp.outbound.v1.ActiveDirectoryDomainOrBuilder getAdDomainOrBuilder() {
|
|
110
|
+
return adDomain_ == null ? com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.getDefaultInstance() : adDomain_;
|
|
111
|
+
}
|
|
112
|
+
|
|
87
113
|
public static final int SAM_ACCOUNT_NAME_FIELD_NUMBER = 2;
|
|
88
114
|
@SuppressWarnings("serial")
|
|
89
115
|
private volatile java.lang.Object samAccountName_ = "";
|
|
@@ -93,7 +119,7 @@ private static final long serialVersionUID = 0L;
|
|
|
93
119
|
*/
|
|
94
120
|
@java.lang.Override
|
|
95
121
|
public boolean hasSamAccountName() {
|
|
96
|
-
return ((bitField0_ &
|
|
122
|
+
return ((bitField0_ & 0x00000004) != 0);
|
|
97
123
|
}
|
|
98
124
|
/**
|
|
99
125
|
* <code>optional string sam_account_name = 2;</code>
|
|
@@ -140,7 +166,7 @@ private static final long serialVersionUID = 0L;
|
|
|
140
166
|
*/
|
|
141
167
|
@java.lang.Override
|
|
142
168
|
public boolean hasCn() {
|
|
143
|
-
return ((bitField0_ &
|
|
169
|
+
return ((bitField0_ & 0x00000008) != 0);
|
|
144
170
|
}
|
|
145
171
|
/**
|
|
146
172
|
* <code>optional string cn = 3;</code>
|
|
@@ -187,7 +213,7 @@ private static final long serialVersionUID = 0L;
|
|
|
187
213
|
*/
|
|
188
214
|
@java.lang.Override
|
|
189
215
|
public boolean hasOu() {
|
|
190
|
-
return ((bitField0_ &
|
|
216
|
+
return ((bitField0_ & 0x00000010) != 0);
|
|
191
217
|
}
|
|
192
218
|
/**
|
|
193
219
|
* <code>optional string ou = 4;</code>
|
|
@@ -234,7 +260,7 @@ private static final long serialVersionUID = 0L;
|
|
|
234
260
|
*/
|
|
235
261
|
@java.lang.Override
|
|
236
262
|
public boolean hasDescription() {
|
|
237
|
-
return ((bitField0_ &
|
|
263
|
+
return ((bitField0_ & 0x00000020) != 0);
|
|
238
264
|
}
|
|
239
265
|
/**
|
|
240
266
|
* <code>optional string description = 5;</code>
|
|
@@ -281,7 +307,7 @@ private static final long serialVersionUID = 0L;
|
|
|
281
307
|
*/
|
|
282
308
|
@java.lang.Override
|
|
283
309
|
public boolean hasComment() {
|
|
284
|
-
return ((bitField0_ &
|
|
310
|
+
return ((bitField0_ & 0x00000040) != 0);
|
|
285
311
|
}
|
|
286
312
|
/**
|
|
287
313
|
* <code>optional string comment = 6;</code>
|
|
@@ -328,7 +354,7 @@ private static final long serialVersionUID = 0L;
|
|
|
328
354
|
*/
|
|
329
355
|
@java.lang.Override
|
|
330
356
|
public boolean hasCompany() {
|
|
331
|
-
return ((bitField0_ &
|
|
357
|
+
return ((bitField0_ & 0x00000080) != 0);
|
|
332
358
|
}
|
|
333
359
|
/**
|
|
334
360
|
* <code>optional string company = 7;</code>
|
|
@@ -375,7 +401,7 @@ private static final long serialVersionUID = 0L;
|
|
|
375
401
|
*/
|
|
376
402
|
@java.lang.Override
|
|
377
403
|
public boolean hasLocation() {
|
|
378
|
-
return ((bitField0_ &
|
|
404
|
+
return ((bitField0_ & 0x00000100) != 0);
|
|
379
405
|
}
|
|
380
406
|
/**
|
|
381
407
|
* <code>optional string location = 8;</code>
|
|
@@ -422,7 +448,7 @@ private static final long serialVersionUID = 0L;
|
|
|
422
448
|
*/
|
|
423
449
|
@java.lang.Override
|
|
424
450
|
public boolean hasIpAddress() {
|
|
425
|
-
return ((bitField0_ &
|
|
451
|
+
return ((bitField0_ & 0x00000200) != 0);
|
|
426
452
|
}
|
|
427
453
|
/**
|
|
428
454
|
* <code>optional string ip_address = 9;</code>
|
|
@@ -468,7 +494,7 @@ private static final long serialVersionUID = 0L;
|
|
|
468
494
|
*/
|
|
469
495
|
@java.lang.Override
|
|
470
496
|
public boolean hasEnabled() {
|
|
471
|
-
return ((bitField0_ &
|
|
497
|
+
return ((bitField0_ & 0x00000400) != 0);
|
|
472
498
|
}
|
|
473
499
|
/**
|
|
474
500
|
* <code>optional bool enabled = 10;</code>
|
|
@@ -488,7 +514,7 @@ private static final long serialVersionUID = 0L;
|
|
|
488
514
|
*/
|
|
489
515
|
@java.lang.Override
|
|
490
516
|
public boolean hasBitlockerRecoveryInfo() {
|
|
491
|
-
return ((bitField0_ &
|
|
517
|
+
return ((bitField0_ & 0x00000800) != 0);
|
|
492
518
|
}
|
|
493
519
|
/**
|
|
494
520
|
* <code>optional string bitlocker_recovery_info = 11;</code>
|
|
@@ -535,7 +561,7 @@ private static final long serialVersionUID = 0L;
|
|
|
535
561
|
*/
|
|
536
562
|
@java.lang.Override
|
|
537
563
|
public boolean hasOperatingSystem() {
|
|
538
|
-
return ((bitField0_ &
|
|
564
|
+
return ((bitField0_ & 0x00001000) != 0);
|
|
539
565
|
}
|
|
540
566
|
/**
|
|
541
567
|
* <code>optional string operating_system = 12;</code>
|
|
@@ -582,7 +608,7 @@ private static final long serialVersionUID = 0L;
|
|
|
582
608
|
*/
|
|
583
609
|
@java.lang.Override
|
|
584
610
|
public boolean hasOperatingSystemVersion() {
|
|
585
|
-
return ((bitField0_ &
|
|
611
|
+
return ((bitField0_ & 0x00002000) != 0);
|
|
586
612
|
}
|
|
587
613
|
/**
|
|
588
614
|
* <code>optional string operating_system_version = 13;</code>
|
|
@@ -633,7 +659,7 @@ private static final long serialVersionUID = 0L;
|
|
|
633
659
|
*/
|
|
634
660
|
@java.lang.Override
|
|
635
661
|
public boolean hasManagedByUserOid() {
|
|
636
|
-
return ((bitField0_ &
|
|
662
|
+
return ((bitField0_ & 0x00004000) != 0);
|
|
637
663
|
}
|
|
638
664
|
/**
|
|
639
665
|
* <pre>
|
|
@@ -692,7 +718,7 @@ private static final long serialVersionUID = 0L;
|
|
|
692
718
|
*/
|
|
693
719
|
@java.lang.Override
|
|
694
720
|
public boolean hasManagedByGroupOid() {
|
|
695
|
-
return ((bitField0_ &
|
|
721
|
+
return ((bitField0_ & 0x00008000) != 0);
|
|
696
722
|
}
|
|
697
723
|
/**
|
|
698
724
|
* <pre>
|
|
@@ -755,48 +781,51 @@ private static final long serialVersionUID = 0L;
|
|
|
755
781
|
if (((bitField0_ & 0x00000001) != 0)) {
|
|
756
782
|
output.writeMessage(1, getAdObject());
|
|
757
783
|
}
|
|
758
|
-
if (((bitField0_ &
|
|
784
|
+
if (((bitField0_ & 0x00000004) != 0)) {
|
|
759
785
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, samAccountName_);
|
|
760
786
|
}
|
|
761
|
-
if (((bitField0_ &
|
|
787
|
+
if (((bitField0_ & 0x00000008) != 0)) {
|
|
762
788
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, cn_);
|
|
763
789
|
}
|
|
764
|
-
if (((bitField0_ &
|
|
790
|
+
if (((bitField0_ & 0x00000010) != 0)) {
|
|
765
791
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, ou_);
|
|
766
792
|
}
|
|
767
|
-
if (((bitField0_ &
|
|
793
|
+
if (((bitField0_ & 0x00000020) != 0)) {
|
|
768
794
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, description_);
|
|
769
795
|
}
|
|
770
|
-
if (((bitField0_ &
|
|
796
|
+
if (((bitField0_ & 0x00000040) != 0)) {
|
|
771
797
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 6, comment_);
|
|
772
798
|
}
|
|
773
|
-
if (((bitField0_ &
|
|
799
|
+
if (((bitField0_ & 0x00000080) != 0)) {
|
|
774
800
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 7, company_);
|
|
775
801
|
}
|
|
776
|
-
if (((bitField0_ &
|
|
802
|
+
if (((bitField0_ & 0x00000100) != 0)) {
|
|
777
803
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 8, location_);
|
|
778
804
|
}
|
|
779
|
-
if (((bitField0_ &
|
|
805
|
+
if (((bitField0_ & 0x00000200) != 0)) {
|
|
780
806
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 9, ipAddress_);
|
|
781
807
|
}
|
|
782
|
-
if (((bitField0_ &
|
|
808
|
+
if (((bitField0_ & 0x00000400) != 0)) {
|
|
783
809
|
output.writeBool(10, enabled_);
|
|
784
810
|
}
|
|
785
|
-
if (((bitField0_ &
|
|
811
|
+
if (((bitField0_ & 0x00000800) != 0)) {
|
|
786
812
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 11, bitlockerRecoveryInfo_);
|
|
787
813
|
}
|
|
788
|
-
if (((bitField0_ &
|
|
814
|
+
if (((bitField0_ & 0x00001000) != 0)) {
|
|
789
815
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 12, operatingSystem_);
|
|
790
816
|
}
|
|
791
|
-
if (((bitField0_ &
|
|
817
|
+
if (((bitField0_ & 0x00002000) != 0)) {
|
|
792
818
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 13, operatingSystemVersion_);
|
|
793
819
|
}
|
|
794
|
-
if (((bitField0_ &
|
|
820
|
+
if (((bitField0_ & 0x00004000) != 0)) {
|
|
795
821
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 14, managedByUserOid_);
|
|
796
822
|
}
|
|
797
|
-
if (((bitField0_ &
|
|
823
|
+
if (((bitField0_ & 0x00008000) != 0)) {
|
|
798
824
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 15, managedByGroupOid_);
|
|
799
825
|
}
|
|
826
|
+
if (((bitField0_ & 0x00000002) != 0)) {
|
|
827
|
+
output.writeMessage(16, getAdDomain());
|
|
828
|
+
}
|
|
800
829
|
getUnknownFields().writeTo(output);
|
|
801
830
|
}
|
|
802
831
|
|
|
@@ -810,49 +839,53 @@ private static final long serialVersionUID = 0L;
|
|
|
810
839
|
size += com.google.protobuf.CodedOutputStream
|
|
811
840
|
.computeMessageSize(1, getAdObject());
|
|
812
841
|
}
|
|
813
|
-
if (((bitField0_ &
|
|
842
|
+
if (((bitField0_ & 0x00000004) != 0)) {
|
|
814
843
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, samAccountName_);
|
|
815
844
|
}
|
|
816
|
-
if (((bitField0_ &
|
|
845
|
+
if (((bitField0_ & 0x00000008) != 0)) {
|
|
817
846
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, cn_);
|
|
818
847
|
}
|
|
819
|
-
if (((bitField0_ &
|
|
848
|
+
if (((bitField0_ & 0x00000010) != 0)) {
|
|
820
849
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, ou_);
|
|
821
850
|
}
|
|
822
|
-
if (((bitField0_ &
|
|
851
|
+
if (((bitField0_ & 0x00000020) != 0)) {
|
|
823
852
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, description_);
|
|
824
853
|
}
|
|
825
|
-
if (((bitField0_ &
|
|
854
|
+
if (((bitField0_ & 0x00000040) != 0)) {
|
|
826
855
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, comment_);
|
|
827
856
|
}
|
|
828
|
-
if (((bitField0_ &
|
|
857
|
+
if (((bitField0_ & 0x00000080) != 0)) {
|
|
829
858
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, company_);
|
|
830
859
|
}
|
|
831
|
-
if (((bitField0_ &
|
|
860
|
+
if (((bitField0_ & 0x00000100) != 0)) {
|
|
832
861
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(8, location_);
|
|
833
862
|
}
|
|
834
|
-
if (((bitField0_ &
|
|
863
|
+
if (((bitField0_ & 0x00000200) != 0)) {
|
|
835
864
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(9, ipAddress_);
|
|
836
865
|
}
|
|
837
|
-
if (((bitField0_ &
|
|
866
|
+
if (((bitField0_ & 0x00000400) != 0)) {
|
|
838
867
|
size += com.google.protobuf.CodedOutputStream
|
|
839
868
|
.computeBoolSize(10, enabled_);
|
|
840
869
|
}
|
|
841
|
-
if (((bitField0_ &
|
|
870
|
+
if (((bitField0_ & 0x00000800) != 0)) {
|
|
842
871
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(11, bitlockerRecoveryInfo_);
|
|
843
872
|
}
|
|
844
|
-
if (((bitField0_ &
|
|
873
|
+
if (((bitField0_ & 0x00001000) != 0)) {
|
|
845
874
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(12, operatingSystem_);
|
|
846
875
|
}
|
|
847
|
-
if (((bitField0_ &
|
|
876
|
+
if (((bitField0_ & 0x00002000) != 0)) {
|
|
848
877
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(13, operatingSystemVersion_);
|
|
849
878
|
}
|
|
850
|
-
if (((bitField0_ &
|
|
879
|
+
if (((bitField0_ & 0x00004000) != 0)) {
|
|
851
880
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(14, managedByUserOid_);
|
|
852
881
|
}
|
|
853
|
-
if (((bitField0_ &
|
|
882
|
+
if (((bitField0_ & 0x00008000) != 0)) {
|
|
854
883
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(15, managedByGroupOid_);
|
|
855
884
|
}
|
|
885
|
+
if (((bitField0_ & 0x00000002) != 0)) {
|
|
886
|
+
size += com.google.protobuf.CodedOutputStream
|
|
887
|
+
.computeMessageSize(16, getAdDomain());
|
|
888
|
+
}
|
|
856
889
|
size += getUnknownFields().getSerializedSize();
|
|
857
890
|
memoizedSize = size;
|
|
858
891
|
return size;
|
|
@@ -873,6 +906,11 @@ private static final long serialVersionUID = 0L;
|
|
|
873
906
|
if (!getAdObject()
|
|
874
907
|
.equals(other.getAdObject())) return false;
|
|
875
908
|
}
|
|
909
|
+
if (hasAdDomain() != other.hasAdDomain()) return false;
|
|
910
|
+
if (hasAdDomain()) {
|
|
911
|
+
if (!getAdDomain()
|
|
912
|
+
.equals(other.getAdDomain())) return false;
|
|
913
|
+
}
|
|
876
914
|
if (hasSamAccountName() != other.hasSamAccountName()) return false;
|
|
877
915
|
if (hasSamAccountName()) {
|
|
878
916
|
if (!getSamAccountName()
|
|
@@ -958,6 +996,10 @@ private static final long serialVersionUID = 0L;
|
|
|
958
996
|
hash = (37 * hash) + AD_OBJECT_FIELD_NUMBER;
|
|
959
997
|
hash = (53 * hash) + getAdObject().hashCode();
|
|
960
998
|
}
|
|
999
|
+
if (hasAdDomain()) {
|
|
1000
|
+
hash = (37 * hash) + AD_DOMAIN_FIELD_NUMBER;
|
|
1001
|
+
hash = (53 * hash) + getAdDomain().hashCode();
|
|
1002
|
+
}
|
|
961
1003
|
if (hasSamAccountName()) {
|
|
962
1004
|
hash = (37 * hash) + SAM_ACCOUNT_NAME_FIELD_NUMBER;
|
|
963
1005
|
hash = (53 * hash) + getSamAccountName().hashCode();
|
|
@@ -1151,6 +1193,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1151
1193
|
if (com.google.protobuf.GeneratedMessageV3
|
|
1152
1194
|
.alwaysUseFieldBuilders) {
|
|
1153
1195
|
getAdObjectFieldBuilder();
|
|
1196
|
+
getAdDomainFieldBuilder();
|
|
1154
1197
|
}
|
|
1155
1198
|
}
|
|
1156
1199
|
@java.lang.Override
|
|
@@ -1162,6 +1205,11 @@ private static final long serialVersionUID = 0L;
|
|
|
1162
1205
|
adObjectBuilder_.dispose();
|
|
1163
1206
|
adObjectBuilder_ = null;
|
|
1164
1207
|
}
|
|
1208
|
+
adDomain_ = null;
|
|
1209
|
+
if (adDomainBuilder_ != null) {
|
|
1210
|
+
adDomainBuilder_.dispose();
|
|
1211
|
+
adDomainBuilder_ = null;
|
|
1212
|
+
}
|
|
1165
1213
|
samAccountName_ = "";
|
|
1166
1214
|
cn_ = "";
|
|
1167
1215
|
ou_ = "";
|
|
@@ -1217,61 +1265,67 @@ private static final long serialVersionUID = 0L;
|
|
|
1217
1265
|
to_bitField0_ |= 0x00000001;
|
|
1218
1266
|
}
|
|
1219
1267
|
if (((from_bitField0_ & 0x00000002) != 0)) {
|
|
1220
|
-
result.
|
|
1268
|
+
result.adDomain_ = adDomainBuilder_ == null
|
|
1269
|
+
? adDomain_
|
|
1270
|
+
: adDomainBuilder_.build();
|
|
1221
1271
|
to_bitField0_ |= 0x00000002;
|
|
1222
1272
|
}
|
|
1223
1273
|
if (((from_bitField0_ & 0x00000004) != 0)) {
|
|
1224
|
-
result.
|
|
1274
|
+
result.samAccountName_ = samAccountName_;
|
|
1225
1275
|
to_bitField0_ |= 0x00000004;
|
|
1226
1276
|
}
|
|
1227
1277
|
if (((from_bitField0_ & 0x00000008) != 0)) {
|
|
1228
|
-
result.
|
|
1278
|
+
result.cn_ = cn_;
|
|
1229
1279
|
to_bitField0_ |= 0x00000008;
|
|
1230
1280
|
}
|
|
1231
1281
|
if (((from_bitField0_ & 0x00000010) != 0)) {
|
|
1232
|
-
result.
|
|
1282
|
+
result.ou_ = ou_;
|
|
1233
1283
|
to_bitField0_ |= 0x00000010;
|
|
1234
1284
|
}
|
|
1235
1285
|
if (((from_bitField0_ & 0x00000020) != 0)) {
|
|
1236
|
-
result.
|
|
1286
|
+
result.description_ = description_;
|
|
1237
1287
|
to_bitField0_ |= 0x00000020;
|
|
1238
1288
|
}
|
|
1239
1289
|
if (((from_bitField0_ & 0x00000040) != 0)) {
|
|
1240
|
-
result.
|
|
1290
|
+
result.comment_ = comment_;
|
|
1241
1291
|
to_bitField0_ |= 0x00000040;
|
|
1242
1292
|
}
|
|
1243
1293
|
if (((from_bitField0_ & 0x00000080) != 0)) {
|
|
1244
|
-
result.
|
|
1294
|
+
result.company_ = company_;
|
|
1245
1295
|
to_bitField0_ |= 0x00000080;
|
|
1246
1296
|
}
|
|
1247
1297
|
if (((from_bitField0_ & 0x00000100) != 0)) {
|
|
1248
|
-
result.
|
|
1298
|
+
result.location_ = location_;
|
|
1249
1299
|
to_bitField0_ |= 0x00000100;
|
|
1250
1300
|
}
|
|
1251
1301
|
if (((from_bitField0_ & 0x00000200) != 0)) {
|
|
1252
|
-
result.
|
|
1302
|
+
result.ipAddress_ = ipAddress_;
|
|
1253
1303
|
to_bitField0_ |= 0x00000200;
|
|
1254
1304
|
}
|
|
1255
1305
|
if (((from_bitField0_ & 0x00000400) != 0)) {
|
|
1256
|
-
result.
|
|
1306
|
+
result.enabled_ = enabled_;
|
|
1257
1307
|
to_bitField0_ |= 0x00000400;
|
|
1258
1308
|
}
|
|
1259
1309
|
if (((from_bitField0_ & 0x00000800) != 0)) {
|
|
1260
|
-
result.
|
|
1310
|
+
result.bitlockerRecoveryInfo_ = bitlockerRecoveryInfo_;
|
|
1261
1311
|
to_bitField0_ |= 0x00000800;
|
|
1262
1312
|
}
|
|
1263
1313
|
if (((from_bitField0_ & 0x00001000) != 0)) {
|
|
1264
|
-
result.
|
|
1314
|
+
result.operatingSystem_ = operatingSystem_;
|
|
1265
1315
|
to_bitField0_ |= 0x00001000;
|
|
1266
1316
|
}
|
|
1267
1317
|
if (((from_bitField0_ & 0x00002000) != 0)) {
|
|
1268
|
-
result.
|
|
1318
|
+
result.operatingSystemVersion_ = operatingSystemVersion_;
|
|
1269
1319
|
to_bitField0_ |= 0x00002000;
|
|
1270
1320
|
}
|
|
1271
1321
|
if (((from_bitField0_ & 0x00004000) != 0)) {
|
|
1272
|
-
result.
|
|
1322
|
+
result.managedByUserOid_ = managedByUserOid_;
|
|
1273
1323
|
to_bitField0_ |= 0x00004000;
|
|
1274
1324
|
}
|
|
1325
|
+
if (((from_bitField0_ & 0x00008000) != 0)) {
|
|
1326
|
+
result.managedByGroupOid_ = managedByGroupOid_;
|
|
1327
|
+
to_bitField0_ |= 0x00008000;
|
|
1328
|
+
}
|
|
1275
1329
|
result.bitField0_ |= to_bitField0_;
|
|
1276
1330
|
}
|
|
1277
1331
|
|
|
@@ -1322,44 +1376,47 @@ private static final long serialVersionUID = 0L;
|
|
|
1322
1376
|
if (other.hasAdObject()) {
|
|
1323
1377
|
mergeAdObject(other.getAdObject());
|
|
1324
1378
|
}
|
|
1379
|
+
if (other.hasAdDomain()) {
|
|
1380
|
+
mergeAdDomain(other.getAdDomain());
|
|
1381
|
+
}
|
|
1325
1382
|
if (other.hasSamAccountName()) {
|
|
1326
1383
|
samAccountName_ = other.samAccountName_;
|
|
1327
|
-
bitField0_ |=
|
|
1384
|
+
bitField0_ |= 0x00000004;
|
|
1328
1385
|
onChanged();
|
|
1329
1386
|
}
|
|
1330
1387
|
if (other.hasCn()) {
|
|
1331
1388
|
cn_ = other.cn_;
|
|
1332
|
-
bitField0_ |=
|
|
1389
|
+
bitField0_ |= 0x00000008;
|
|
1333
1390
|
onChanged();
|
|
1334
1391
|
}
|
|
1335
1392
|
if (other.hasOu()) {
|
|
1336
1393
|
ou_ = other.ou_;
|
|
1337
|
-
bitField0_ |=
|
|
1394
|
+
bitField0_ |= 0x00000010;
|
|
1338
1395
|
onChanged();
|
|
1339
1396
|
}
|
|
1340
1397
|
if (other.hasDescription()) {
|
|
1341
1398
|
description_ = other.description_;
|
|
1342
|
-
bitField0_ |=
|
|
1399
|
+
bitField0_ |= 0x00000020;
|
|
1343
1400
|
onChanged();
|
|
1344
1401
|
}
|
|
1345
1402
|
if (other.hasComment()) {
|
|
1346
1403
|
comment_ = other.comment_;
|
|
1347
|
-
bitField0_ |=
|
|
1404
|
+
bitField0_ |= 0x00000040;
|
|
1348
1405
|
onChanged();
|
|
1349
1406
|
}
|
|
1350
1407
|
if (other.hasCompany()) {
|
|
1351
1408
|
company_ = other.company_;
|
|
1352
|
-
bitField0_ |=
|
|
1409
|
+
bitField0_ |= 0x00000080;
|
|
1353
1410
|
onChanged();
|
|
1354
1411
|
}
|
|
1355
1412
|
if (other.hasLocation()) {
|
|
1356
1413
|
location_ = other.location_;
|
|
1357
|
-
bitField0_ |=
|
|
1414
|
+
bitField0_ |= 0x00000100;
|
|
1358
1415
|
onChanged();
|
|
1359
1416
|
}
|
|
1360
1417
|
if (other.hasIpAddress()) {
|
|
1361
1418
|
ipAddress_ = other.ipAddress_;
|
|
1362
|
-
bitField0_ |=
|
|
1419
|
+
bitField0_ |= 0x00000200;
|
|
1363
1420
|
onChanged();
|
|
1364
1421
|
}
|
|
1365
1422
|
if (other.hasEnabled()) {
|
|
@@ -1367,27 +1424,27 @@ private static final long serialVersionUID = 0L;
|
|
|
1367
1424
|
}
|
|
1368
1425
|
if (other.hasBitlockerRecoveryInfo()) {
|
|
1369
1426
|
bitlockerRecoveryInfo_ = other.bitlockerRecoveryInfo_;
|
|
1370
|
-
bitField0_ |=
|
|
1427
|
+
bitField0_ |= 0x00000800;
|
|
1371
1428
|
onChanged();
|
|
1372
1429
|
}
|
|
1373
1430
|
if (other.hasOperatingSystem()) {
|
|
1374
1431
|
operatingSystem_ = other.operatingSystem_;
|
|
1375
|
-
bitField0_ |=
|
|
1432
|
+
bitField0_ |= 0x00001000;
|
|
1376
1433
|
onChanged();
|
|
1377
1434
|
}
|
|
1378
1435
|
if (other.hasOperatingSystemVersion()) {
|
|
1379
1436
|
operatingSystemVersion_ = other.operatingSystemVersion_;
|
|
1380
|
-
bitField0_ |=
|
|
1437
|
+
bitField0_ |= 0x00002000;
|
|
1381
1438
|
onChanged();
|
|
1382
1439
|
}
|
|
1383
1440
|
if (other.hasManagedByUserOid()) {
|
|
1384
1441
|
managedByUserOid_ = other.managedByUserOid_;
|
|
1385
|
-
bitField0_ |=
|
|
1442
|
+
bitField0_ |= 0x00004000;
|
|
1386
1443
|
onChanged();
|
|
1387
1444
|
}
|
|
1388
1445
|
if (other.hasManagedByGroupOid()) {
|
|
1389
1446
|
managedByGroupOid_ = other.managedByGroupOid_;
|
|
1390
|
-
bitField0_ |=
|
|
1447
|
+
bitField0_ |= 0x00008000;
|
|
1391
1448
|
onChanged();
|
|
1392
1449
|
}
|
|
1393
1450
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
@@ -1425,74 +1482,81 @@ private static final long serialVersionUID = 0L;
|
|
|
1425
1482
|
} // case 10
|
|
1426
1483
|
case 18: {
|
|
1427
1484
|
samAccountName_ = input.readStringRequireUtf8();
|
|
1428
|
-
bitField0_ |=
|
|
1485
|
+
bitField0_ |= 0x00000004;
|
|
1429
1486
|
break;
|
|
1430
1487
|
} // case 18
|
|
1431
1488
|
case 26: {
|
|
1432
1489
|
cn_ = input.readStringRequireUtf8();
|
|
1433
|
-
bitField0_ |=
|
|
1490
|
+
bitField0_ |= 0x00000008;
|
|
1434
1491
|
break;
|
|
1435
1492
|
} // case 26
|
|
1436
1493
|
case 34: {
|
|
1437
1494
|
ou_ = input.readStringRequireUtf8();
|
|
1438
|
-
bitField0_ |=
|
|
1495
|
+
bitField0_ |= 0x00000010;
|
|
1439
1496
|
break;
|
|
1440
1497
|
} // case 34
|
|
1441
1498
|
case 42: {
|
|
1442
1499
|
description_ = input.readStringRequireUtf8();
|
|
1443
|
-
bitField0_ |=
|
|
1500
|
+
bitField0_ |= 0x00000020;
|
|
1444
1501
|
break;
|
|
1445
1502
|
} // case 42
|
|
1446
1503
|
case 50: {
|
|
1447
1504
|
comment_ = input.readStringRequireUtf8();
|
|
1448
|
-
bitField0_ |=
|
|
1505
|
+
bitField0_ |= 0x00000040;
|
|
1449
1506
|
break;
|
|
1450
1507
|
} // case 50
|
|
1451
1508
|
case 58: {
|
|
1452
1509
|
company_ = input.readStringRequireUtf8();
|
|
1453
|
-
bitField0_ |=
|
|
1510
|
+
bitField0_ |= 0x00000080;
|
|
1454
1511
|
break;
|
|
1455
1512
|
} // case 58
|
|
1456
1513
|
case 66: {
|
|
1457
1514
|
location_ = input.readStringRequireUtf8();
|
|
1458
|
-
bitField0_ |=
|
|
1515
|
+
bitField0_ |= 0x00000100;
|
|
1459
1516
|
break;
|
|
1460
1517
|
} // case 66
|
|
1461
1518
|
case 74: {
|
|
1462
1519
|
ipAddress_ = input.readStringRequireUtf8();
|
|
1463
|
-
bitField0_ |=
|
|
1520
|
+
bitField0_ |= 0x00000200;
|
|
1464
1521
|
break;
|
|
1465
1522
|
} // case 74
|
|
1466
1523
|
case 80: {
|
|
1467
1524
|
enabled_ = input.readBool();
|
|
1468
|
-
bitField0_ |=
|
|
1525
|
+
bitField0_ |= 0x00000400;
|
|
1469
1526
|
break;
|
|
1470
1527
|
} // case 80
|
|
1471
1528
|
case 90: {
|
|
1472
1529
|
bitlockerRecoveryInfo_ = input.readStringRequireUtf8();
|
|
1473
|
-
bitField0_ |=
|
|
1530
|
+
bitField0_ |= 0x00000800;
|
|
1474
1531
|
break;
|
|
1475
1532
|
} // case 90
|
|
1476
1533
|
case 98: {
|
|
1477
1534
|
operatingSystem_ = input.readStringRequireUtf8();
|
|
1478
|
-
bitField0_ |=
|
|
1535
|
+
bitField0_ |= 0x00001000;
|
|
1479
1536
|
break;
|
|
1480
1537
|
} // case 98
|
|
1481
1538
|
case 106: {
|
|
1482
1539
|
operatingSystemVersion_ = input.readStringRequireUtf8();
|
|
1483
|
-
bitField0_ |=
|
|
1540
|
+
bitField0_ |= 0x00002000;
|
|
1484
1541
|
break;
|
|
1485
1542
|
} // case 106
|
|
1486
1543
|
case 114: {
|
|
1487
1544
|
managedByUserOid_ = input.readStringRequireUtf8();
|
|
1488
|
-
bitField0_ |=
|
|
1545
|
+
bitField0_ |= 0x00004000;
|
|
1489
1546
|
break;
|
|
1490
1547
|
} // case 114
|
|
1491
1548
|
case 122: {
|
|
1492
1549
|
managedByGroupOid_ = input.readStringRequireUtf8();
|
|
1493
|
-
bitField0_ |=
|
|
1550
|
+
bitField0_ |= 0x00008000;
|
|
1494
1551
|
break;
|
|
1495
1552
|
} // case 122
|
|
1553
|
+
case 130: {
|
|
1554
|
+
input.readMessage(
|
|
1555
|
+
getAdDomainFieldBuilder().getBuilder(),
|
|
1556
|
+
extensionRegistry);
|
|
1557
|
+
bitField0_ |= 0x00000002;
|
|
1558
|
+
break;
|
|
1559
|
+
} // case 130
|
|
1496
1560
|
default: {
|
|
1497
1561
|
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
|
|
1498
1562
|
done = true; // was an endgroup tag
|
|
@@ -1631,13 +1695,134 @@ private static final long serialVersionUID = 0L;
|
|
|
1631
1695
|
return adObjectBuilder_;
|
|
1632
1696
|
}
|
|
1633
1697
|
|
|
1698
|
+
private com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain adDomain_;
|
|
1699
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
1700
|
+
com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain, com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.Builder, com.lansweeper.dp.outbound.v1.ActiveDirectoryDomainOrBuilder> adDomainBuilder_;
|
|
1701
|
+
/**
|
|
1702
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain ad_domain = 16;</code>
|
|
1703
|
+
* @return Whether the adDomain field is set.
|
|
1704
|
+
*/
|
|
1705
|
+
public boolean hasAdDomain() {
|
|
1706
|
+
return ((bitField0_ & 0x00000002) != 0);
|
|
1707
|
+
}
|
|
1708
|
+
/**
|
|
1709
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain ad_domain = 16;</code>
|
|
1710
|
+
* @return The adDomain.
|
|
1711
|
+
*/
|
|
1712
|
+
public com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain getAdDomain() {
|
|
1713
|
+
if (adDomainBuilder_ == null) {
|
|
1714
|
+
return adDomain_ == null ? com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.getDefaultInstance() : adDomain_;
|
|
1715
|
+
} else {
|
|
1716
|
+
return adDomainBuilder_.getMessage();
|
|
1717
|
+
}
|
|
1718
|
+
}
|
|
1719
|
+
/**
|
|
1720
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain ad_domain = 16;</code>
|
|
1721
|
+
*/
|
|
1722
|
+
public Builder setAdDomain(com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain value) {
|
|
1723
|
+
if (adDomainBuilder_ == null) {
|
|
1724
|
+
if (value == null) {
|
|
1725
|
+
throw new NullPointerException();
|
|
1726
|
+
}
|
|
1727
|
+
adDomain_ = value;
|
|
1728
|
+
} else {
|
|
1729
|
+
adDomainBuilder_.setMessage(value);
|
|
1730
|
+
}
|
|
1731
|
+
bitField0_ |= 0x00000002;
|
|
1732
|
+
onChanged();
|
|
1733
|
+
return this;
|
|
1734
|
+
}
|
|
1735
|
+
/**
|
|
1736
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain ad_domain = 16;</code>
|
|
1737
|
+
*/
|
|
1738
|
+
public Builder setAdDomain(
|
|
1739
|
+
com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.Builder builderForValue) {
|
|
1740
|
+
if (adDomainBuilder_ == null) {
|
|
1741
|
+
adDomain_ = builderForValue.build();
|
|
1742
|
+
} else {
|
|
1743
|
+
adDomainBuilder_.setMessage(builderForValue.build());
|
|
1744
|
+
}
|
|
1745
|
+
bitField0_ |= 0x00000002;
|
|
1746
|
+
onChanged();
|
|
1747
|
+
return this;
|
|
1748
|
+
}
|
|
1749
|
+
/**
|
|
1750
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain ad_domain = 16;</code>
|
|
1751
|
+
*/
|
|
1752
|
+
public Builder mergeAdDomain(com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain value) {
|
|
1753
|
+
if (adDomainBuilder_ == null) {
|
|
1754
|
+
if (((bitField0_ & 0x00000002) != 0) &&
|
|
1755
|
+
adDomain_ != null &&
|
|
1756
|
+
adDomain_ != com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.getDefaultInstance()) {
|
|
1757
|
+
getAdDomainBuilder().mergeFrom(value);
|
|
1758
|
+
} else {
|
|
1759
|
+
adDomain_ = value;
|
|
1760
|
+
}
|
|
1761
|
+
} else {
|
|
1762
|
+
adDomainBuilder_.mergeFrom(value);
|
|
1763
|
+
}
|
|
1764
|
+
if (adDomain_ != null) {
|
|
1765
|
+
bitField0_ |= 0x00000002;
|
|
1766
|
+
onChanged();
|
|
1767
|
+
}
|
|
1768
|
+
return this;
|
|
1769
|
+
}
|
|
1770
|
+
/**
|
|
1771
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain ad_domain = 16;</code>
|
|
1772
|
+
*/
|
|
1773
|
+
public Builder clearAdDomain() {
|
|
1774
|
+
bitField0_ = (bitField0_ & ~0x00000002);
|
|
1775
|
+
adDomain_ = null;
|
|
1776
|
+
if (adDomainBuilder_ != null) {
|
|
1777
|
+
adDomainBuilder_.dispose();
|
|
1778
|
+
adDomainBuilder_ = null;
|
|
1779
|
+
}
|
|
1780
|
+
onChanged();
|
|
1781
|
+
return this;
|
|
1782
|
+
}
|
|
1783
|
+
/**
|
|
1784
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain ad_domain = 16;</code>
|
|
1785
|
+
*/
|
|
1786
|
+
public com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.Builder getAdDomainBuilder() {
|
|
1787
|
+
bitField0_ |= 0x00000002;
|
|
1788
|
+
onChanged();
|
|
1789
|
+
return getAdDomainFieldBuilder().getBuilder();
|
|
1790
|
+
}
|
|
1791
|
+
/**
|
|
1792
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain ad_domain = 16;</code>
|
|
1793
|
+
*/
|
|
1794
|
+
public com.lansweeper.dp.outbound.v1.ActiveDirectoryDomainOrBuilder getAdDomainOrBuilder() {
|
|
1795
|
+
if (adDomainBuilder_ != null) {
|
|
1796
|
+
return adDomainBuilder_.getMessageOrBuilder();
|
|
1797
|
+
} else {
|
|
1798
|
+
return adDomain_ == null ?
|
|
1799
|
+
com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.getDefaultInstance() : adDomain_;
|
|
1800
|
+
}
|
|
1801
|
+
}
|
|
1802
|
+
/**
|
|
1803
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain ad_domain = 16;</code>
|
|
1804
|
+
*/
|
|
1805
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
1806
|
+
com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain, com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.Builder, com.lansweeper.dp.outbound.v1.ActiveDirectoryDomainOrBuilder>
|
|
1807
|
+
getAdDomainFieldBuilder() {
|
|
1808
|
+
if (adDomainBuilder_ == null) {
|
|
1809
|
+
adDomainBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
|
|
1810
|
+
com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain, com.lansweeper.dp.outbound.v1.ActiveDirectoryDomain.Builder, com.lansweeper.dp.outbound.v1.ActiveDirectoryDomainOrBuilder>(
|
|
1811
|
+
getAdDomain(),
|
|
1812
|
+
getParentForChildren(),
|
|
1813
|
+
isClean());
|
|
1814
|
+
adDomain_ = null;
|
|
1815
|
+
}
|
|
1816
|
+
return adDomainBuilder_;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1634
1819
|
private java.lang.Object samAccountName_ = "";
|
|
1635
1820
|
/**
|
|
1636
1821
|
* <code>optional string sam_account_name = 2;</code>
|
|
1637
1822
|
* @return Whether the samAccountName field is set.
|
|
1638
1823
|
*/
|
|
1639
1824
|
public boolean hasSamAccountName() {
|
|
1640
|
-
return ((bitField0_ &
|
|
1825
|
+
return ((bitField0_ & 0x00000004) != 0);
|
|
1641
1826
|
}
|
|
1642
1827
|
/**
|
|
1643
1828
|
* <code>optional string sam_account_name = 2;</code>
|
|
@@ -1681,7 +1866,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1681
1866
|
java.lang.String value) {
|
|
1682
1867
|
if (value == null) { throw new NullPointerException(); }
|
|
1683
1868
|
samAccountName_ = value;
|
|
1684
|
-
bitField0_ |=
|
|
1869
|
+
bitField0_ |= 0x00000004;
|
|
1685
1870
|
onChanged();
|
|
1686
1871
|
return this;
|
|
1687
1872
|
}
|
|
@@ -1691,7 +1876,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1691
1876
|
*/
|
|
1692
1877
|
public Builder clearSamAccountName() {
|
|
1693
1878
|
samAccountName_ = getDefaultInstance().getSamAccountName();
|
|
1694
|
-
bitField0_ = (bitField0_ & ~
|
|
1879
|
+
bitField0_ = (bitField0_ & ~0x00000004);
|
|
1695
1880
|
onChanged();
|
|
1696
1881
|
return this;
|
|
1697
1882
|
}
|
|
@@ -1705,7 +1890,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1705
1890
|
if (value == null) { throw new NullPointerException(); }
|
|
1706
1891
|
checkByteStringIsUtf8(value);
|
|
1707
1892
|
samAccountName_ = value;
|
|
1708
|
-
bitField0_ |=
|
|
1893
|
+
bitField0_ |= 0x00000004;
|
|
1709
1894
|
onChanged();
|
|
1710
1895
|
return this;
|
|
1711
1896
|
}
|
|
@@ -1716,7 +1901,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1716
1901
|
* @return Whether the cn field is set.
|
|
1717
1902
|
*/
|
|
1718
1903
|
public boolean hasCn() {
|
|
1719
|
-
return ((bitField0_ &
|
|
1904
|
+
return ((bitField0_ & 0x00000008) != 0);
|
|
1720
1905
|
}
|
|
1721
1906
|
/**
|
|
1722
1907
|
* <code>optional string cn = 3;</code>
|
|
@@ -1760,7 +1945,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1760
1945
|
java.lang.String value) {
|
|
1761
1946
|
if (value == null) { throw new NullPointerException(); }
|
|
1762
1947
|
cn_ = value;
|
|
1763
|
-
bitField0_ |=
|
|
1948
|
+
bitField0_ |= 0x00000008;
|
|
1764
1949
|
onChanged();
|
|
1765
1950
|
return this;
|
|
1766
1951
|
}
|
|
@@ -1770,7 +1955,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1770
1955
|
*/
|
|
1771
1956
|
public Builder clearCn() {
|
|
1772
1957
|
cn_ = getDefaultInstance().getCn();
|
|
1773
|
-
bitField0_ = (bitField0_ & ~
|
|
1958
|
+
bitField0_ = (bitField0_ & ~0x00000008);
|
|
1774
1959
|
onChanged();
|
|
1775
1960
|
return this;
|
|
1776
1961
|
}
|
|
@@ -1784,7 +1969,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1784
1969
|
if (value == null) { throw new NullPointerException(); }
|
|
1785
1970
|
checkByteStringIsUtf8(value);
|
|
1786
1971
|
cn_ = value;
|
|
1787
|
-
bitField0_ |=
|
|
1972
|
+
bitField0_ |= 0x00000008;
|
|
1788
1973
|
onChanged();
|
|
1789
1974
|
return this;
|
|
1790
1975
|
}
|
|
@@ -1795,7 +1980,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1795
1980
|
* @return Whether the ou field is set.
|
|
1796
1981
|
*/
|
|
1797
1982
|
public boolean hasOu() {
|
|
1798
|
-
return ((bitField0_ &
|
|
1983
|
+
return ((bitField0_ & 0x00000010) != 0);
|
|
1799
1984
|
}
|
|
1800
1985
|
/**
|
|
1801
1986
|
* <code>optional string ou = 4;</code>
|
|
@@ -1839,7 +2024,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1839
2024
|
java.lang.String value) {
|
|
1840
2025
|
if (value == null) { throw new NullPointerException(); }
|
|
1841
2026
|
ou_ = value;
|
|
1842
|
-
bitField0_ |=
|
|
2027
|
+
bitField0_ |= 0x00000010;
|
|
1843
2028
|
onChanged();
|
|
1844
2029
|
return this;
|
|
1845
2030
|
}
|
|
@@ -1849,7 +2034,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1849
2034
|
*/
|
|
1850
2035
|
public Builder clearOu() {
|
|
1851
2036
|
ou_ = getDefaultInstance().getOu();
|
|
1852
|
-
bitField0_ = (bitField0_ & ~
|
|
2037
|
+
bitField0_ = (bitField0_ & ~0x00000010);
|
|
1853
2038
|
onChanged();
|
|
1854
2039
|
return this;
|
|
1855
2040
|
}
|
|
@@ -1863,7 +2048,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1863
2048
|
if (value == null) { throw new NullPointerException(); }
|
|
1864
2049
|
checkByteStringIsUtf8(value);
|
|
1865
2050
|
ou_ = value;
|
|
1866
|
-
bitField0_ |=
|
|
2051
|
+
bitField0_ |= 0x00000010;
|
|
1867
2052
|
onChanged();
|
|
1868
2053
|
return this;
|
|
1869
2054
|
}
|
|
@@ -1874,7 +2059,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1874
2059
|
* @return Whether the description field is set.
|
|
1875
2060
|
*/
|
|
1876
2061
|
public boolean hasDescription() {
|
|
1877
|
-
return ((bitField0_ &
|
|
2062
|
+
return ((bitField0_ & 0x00000020) != 0);
|
|
1878
2063
|
}
|
|
1879
2064
|
/**
|
|
1880
2065
|
* <code>optional string description = 5;</code>
|
|
@@ -1918,7 +2103,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1918
2103
|
java.lang.String value) {
|
|
1919
2104
|
if (value == null) { throw new NullPointerException(); }
|
|
1920
2105
|
description_ = value;
|
|
1921
|
-
bitField0_ |=
|
|
2106
|
+
bitField0_ |= 0x00000020;
|
|
1922
2107
|
onChanged();
|
|
1923
2108
|
return this;
|
|
1924
2109
|
}
|
|
@@ -1928,7 +2113,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1928
2113
|
*/
|
|
1929
2114
|
public Builder clearDescription() {
|
|
1930
2115
|
description_ = getDefaultInstance().getDescription();
|
|
1931
|
-
bitField0_ = (bitField0_ & ~
|
|
2116
|
+
bitField0_ = (bitField0_ & ~0x00000020);
|
|
1932
2117
|
onChanged();
|
|
1933
2118
|
return this;
|
|
1934
2119
|
}
|
|
@@ -1942,7 +2127,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1942
2127
|
if (value == null) { throw new NullPointerException(); }
|
|
1943
2128
|
checkByteStringIsUtf8(value);
|
|
1944
2129
|
description_ = value;
|
|
1945
|
-
bitField0_ |=
|
|
2130
|
+
bitField0_ |= 0x00000020;
|
|
1946
2131
|
onChanged();
|
|
1947
2132
|
return this;
|
|
1948
2133
|
}
|
|
@@ -1953,7 +2138,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1953
2138
|
* @return Whether the comment field is set.
|
|
1954
2139
|
*/
|
|
1955
2140
|
public boolean hasComment() {
|
|
1956
|
-
return ((bitField0_ &
|
|
2141
|
+
return ((bitField0_ & 0x00000040) != 0);
|
|
1957
2142
|
}
|
|
1958
2143
|
/**
|
|
1959
2144
|
* <code>optional string comment = 6;</code>
|
|
@@ -1997,7 +2182,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1997
2182
|
java.lang.String value) {
|
|
1998
2183
|
if (value == null) { throw new NullPointerException(); }
|
|
1999
2184
|
comment_ = value;
|
|
2000
|
-
bitField0_ |=
|
|
2185
|
+
bitField0_ |= 0x00000040;
|
|
2001
2186
|
onChanged();
|
|
2002
2187
|
return this;
|
|
2003
2188
|
}
|
|
@@ -2007,7 +2192,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2007
2192
|
*/
|
|
2008
2193
|
public Builder clearComment() {
|
|
2009
2194
|
comment_ = getDefaultInstance().getComment();
|
|
2010
|
-
bitField0_ = (bitField0_ & ~
|
|
2195
|
+
bitField0_ = (bitField0_ & ~0x00000040);
|
|
2011
2196
|
onChanged();
|
|
2012
2197
|
return this;
|
|
2013
2198
|
}
|
|
@@ -2021,7 +2206,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2021
2206
|
if (value == null) { throw new NullPointerException(); }
|
|
2022
2207
|
checkByteStringIsUtf8(value);
|
|
2023
2208
|
comment_ = value;
|
|
2024
|
-
bitField0_ |=
|
|
2209
|
+
bitField0_ |= 0x00000040;
|
|
2025
2210
|
onChanged();
|
|
2026
2211
|
return this;
|
|
2027
2212
|
}
|
|
@@ -2032,7 +2217,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2032
2217
|
* @return Whether the company field is set.
|
|
2033
2218
|
*/
|
|
2034
2219
|
public boolean hasCompany() {
|
|
2035
|
-
return ((bitField0_ &
|
|
2220
|
+
return ((bitField0_ & 0x00000080) != 0);
|
|
2036
2221
|
}
|
|
2037
2222
|
/**
|
|
2038
2223
|
* <code>optional string company = 7;</code>
|
|
@@ -2076,7 +2261,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2076
2261
|
java.lang.String value) {
|
|
2077
2262
|
if (value == null) { throw new NullPointerException(); }
|
|
2078
2263
|
company_ = value;
|
|
2079
|
-
bitField0_ |=
|
|
2264
|
+
bitField0_ |= 0x00000080;
|
|
2080
2265
|
onChanged();
|
|
2081
2266
|
return this;
|
|
2082
2267
|
}
|
|
@@ -2086,7 +2271,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2086
2271
|
*/
|
|
2087
2272
|
public Builder clearCompany() {
|
|
2088
2273
|
company_ = getDefaultInstance().getCompany();
|
|
2089
|
-
bitField0_ = (bitField0_ & ~
|
|
2274
|
+
bitField0_ = (bitField0_ & ~0x00000080);
|
|
2090
2275
|
onChanged();
|
|
2091
2276
|
return this;
|
|
2092
2277
|
}
|
|
@@ -2100,7 +2285,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2100
2285
|
if (value == null) { throw new NullPointerException(); }
|
|
2101
2286
|
checkByteStringIsUtf8(value);
|
|
2102
2287
|
company_ = value;
|
|
2103
|
-
bitField0_ |=
|
|
2288
|
+
bitField0_ |= 0x00000080;
|
|
2104
2289
|
onChanged();
|
|
2105
2290
|
return this;
|
|
2106
2291
|
}
|
|
@@ -2111,7 +2296,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2111
2296
|
* @return Whether the location field is set.
|
|
2112
2297
|
*/
|
|
2113
2298
|
public boolean hasLocation() {
|
|
2114
|
-
return ((bitField0_ &
|
|
2299
|
+
return ((bitField0_ & 0x00000100) != 0);
|
|
2115
2300
|
}
|
|
2116
2301
|
/**
|
|
2117
2302
|
* <code>optional string location = 8;</code>
|
|
@@ -2155,7 +2340,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2155
2340
|
java.lang.String value) {
|
|
2156
2341
|
if (value == null) { throw new NullPointerException(); }
|
|
2157
2342
|
location_ = value;
|
|
2158
|
-
bitField0_ |=
|
|
2343
|
+
bitField0_ |= 0x00000100;
|
|
2159
2344
|
onChanged();
|
|
2160
2345
|
return this;
|
|
2161
2346
|
}
|
|
@@ -2165,7 +2350,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2165
2350
|
*/
|
|
2166
2351
|
public Builder clearLocation() {
|
|
2167
2352
|
location_ = getDefaultInstance().getLocation();
|
|
2168
|
-
bitField0_ = (bitField0_ & ~
|
|
2353
|
+
bitField0_ = (bitField0_ & ~0x00000100);
|
|
2169
2354
|
onChanged();
|
|
2170
2355
|
return this;
|
|
2171
2356
|
}
|
|
@@ -2179,7 +2364,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2179
2364
|
if (value == null) { throw new NullPointerException(); }
|
|
2180
2365
|
checkByteStringIsUtf8(value);
|
|
2181
2366
|
location_ = value;
|
|
2182
|
-
bitField0_ |=
|
|
2367
|
+
bitField0_ |= 0x00000100;
|
|
2183
2368
|
onChanged();
|
|
2184
2369
|
return this;
|
|
2185
2370
|
}
|
|
@@ -2190,7 +2375,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2190
2375
|
* @return Whether the ipAddress field is set.
|
|
2191
2376
|
*/
|
|
2192
2377
|
public boolean hasIpAddress() {
|
|
2193
|
-
return ((bitField0_ &
|
|
2378
|
+
return ((bitField0_ & 0x00000200) != 0);
|
|
2194
2379
|
}
|
|
2195
2380
|
/**
|
|
2196
2381
|
* <code>optional string ip_address = 9;</code>
|
|
@@ -2234,7 +2419,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2234
2419
|
java.lang.String value) {
|
|
2235
2420
|
if (value == null) { throw new NullPointerException(); }
|
|
2236
2421
|
ipAddress_ = value;
|
|
2237
|
-
bitField0_ |=
|
|
2422
|
+
bitField0_ |= 0x00000200;
|
|
2238
2423
|
onChanged();
|
|
2239
2424
|
return this;
|
|
2240
2425
|
}
|
|
@@ -2244,7 +2429,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2244
2429
|
*/
|
|
2245
2430
|
public Builder clearIpAddress() {
|
|
2246
2431
|
ipAddress_ = getDefaultInstance().getIpAddress();
|
|
2247
|
-
bitField0_ = (bitField0_ & ~
|
|
2432
|
+
bitField0_ = (bitField0_ & ~0x00000200);
|
|
2248
2433
|
onChanged();
|
|
2249
2434
|
return this;
|
|
2250
2435
|
}
|
|
@@ -2258,7 +2443,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2258
2443
|
if (value == null) { throw new NullPointerException(); }
|
|
2259
2444
|
checkByteStringIsUtf8(value);
|
|
2260
2445
|
ipAddress_ = value;
|
|
2261
|
-
bitField0_ |=
|
|
2446
|
+
bitField0_ |= 0x00000200;
|
|
2262
2447
|
onChanged();
|
|
2263
2448
|
return this;
|
|
2264
2449
|
}
|
|
@@ -2270,7 +2455,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2270
2455
|
*/
|
|
2271
2456
|
@java.lang.Override
|
|
2272
2457
|
public boolean hasEnabled() {
|
|
2273
|
-
return ((bitField0_ &
|
|
2458
|
+
return ((bitField0_ & 0x00000400) != 0);
|
|
2274
2459
|
}
|
|
2275
2460
|
/**
|
|
2276
2461
|
* <code>optional bool enabled = 10;</code>
|
|
@@ -2288,7 +2473,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2288
2473
|
public Builder setEnabled(boolean value) {
|
|
2289
2474
|
|
|
2290
2475
|
enabled_ = value;
|
|
2291
|
-
bitField0_ |=
|
|
2476
|
+
bitField0_ |= 0x00000400;
|
|
2292
2477
|
onChanged();
|
|
2293
2478
|
return this;
|
|
2294
2479
|
}
|
|
@@ -2297,7 +2482,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2297
2482
|
* @return This builder for chaining.
|
|
2298
2483
|
*/
|
|
2299
2484
|
public Builder clearEnabled() {
|
|
2300
|
-
bitField0_ = (bitField0_ & ~
|
|
2485
|
+
bitField0_ = (bitField0_ & ~0x00000400);
|
|
2301
2486
|
enabled_ = false;
|
|
2302
2487
|
onChanged();
|
|
2303
2488
|
return this;
|
|
@@ -2309,7 +2494,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2309
2494
|
* @return Whether the bitlockerRecoveryInfo field is set.
|
|
2310
2495
|
*/
|
|
2311
2496
|
public boolean hasBitlockerRecoveryInfo() {
|
|
2312
|
-
return ((bitField0_ &
|
|
2497
|
+
return ((bitField0_ & 0x00000800) != 0);
|
|
2313
2498
|
}
|
|
2314
2499
|
/**
|
|
2315
2500
|
* <code>optional string bitlocker_recovery_info = 11;</code>
|
|
@@ -2353,7 +2538,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2353
2538
|
java.lang.String value) {
|
|
2354
2539
|
if (value == null) { throw new NullPointerException(); }
|
|
2355
2540
|
bitlockerRecoveryInfo_ = value;
|
|
2356
|
-
bitField0_ |=
|
|
2541
|
+
bitField0_ |= 0x00000800;
|
|
2357
2542
|
onChanged();
|
|
2358
2543
|
return this;
|
|
2359
2544
|
}
|
|
@@ -2363,7 +2548,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2363
2548
|
*/
|
|
2364
2549
|
public Builder clearBitlockerRecoveryInfo() {
|
|
2365
2550
|
bitlockerRecoveryInfo_ = getDefaultInstance().getBitlockerRecoveryInfo();
|
|
2366
|
-
bitField0_ = (bitField0_ & ~
|
|
2551
|
+
bitField0_ = (bitField0_ & ~0x00000800);
|
|
2367
2552
|
onChanged();
|
|
2368
2553
|
return this;
|
|
2369
2554
|
}
|
|
@@ -2377,7 +2562,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2377
2562
|
if (value == null) { throw new NullPointerException(); }
|
|
2378
2563
|
checkByteStringIsUtf8(value);
|
|
2379
2564
|
bitlockerRecoveryInfo_ = value;
|
|
2380
|
-
bitField0_ |=
|
|
2565
|
+
bitField0_ |= 0x00000800;
|
|
2381
2566
|
onChanged();
|
|
2382
2567
|
return this;
|
|
2383
2568
|
}
|
|
@@ -2388,7 +2573,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2388
2573
|
* @return Whether the operatingSystem field is set.
|
|
2389
2574
|
*/
|
|
2390
2575
|
public boolean hasOperatingSystem() {
|
|
2391
|
-
return ((bitField0_ &
|
|
2576
|
+
return ((bitField0_ & 0x00001000) != 0);
|
|
2392
2577
|
}
|
|
2393
2578
|
/**
|
|
2394
2579
|
* <code>optional string operating_system = 12;</code>
|
|
@@ -2432,7 +2617,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2432
2617
|
java.lang.String value) {
|
|
2433
2618
|
if (value == null) { throw new NullPointerException(); }
|
|
2434
2619
|
operatingSystem_ = value;
|
|
2435
|
-
bitField0_ |=
|
|
2620
|
+
bitField0_ |= 0x00001000;
|
|
2436
2621
|
onChanged();
|
|
2437
2622
|
return this;
|
|
2438
2623
|
}
|
|
@@ -2442,7 +2627,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2442
2627
|
*/
|
|
2443
2628
|
public Builder clearOperatingSystem() {
|
|
2444
2629
|
operatingSystem_ = getDefaultInstance().getOperatingSystem();
|
|
2445
|
-
bitField0_ = (bitField0_ & ~
|
|
2630
|
+
bitField0_ = (bitField0_ & ~0x00001000);
|
|
2446
2631
|
onChanged();
|
|
2447
2632
|
return this;
|
|
2448
2633
|
}
|
|
@@ -2456,7 +2641,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2456
2641
|
if (value == null) { throw new NullPointerException(); }
|
|
2457
2642
|
checkByteStringIsUtf8(value);
|
|
2458
2643
|
operatingSystem_ = value;
|
|
2459
|
-
bitField0_ |=
|
|
2644
|
+
bitField0_ |= 0x00001000;
|
|
2460
2645
|
onChanged();
|
|
2461
2646
|
return this;
|
|
2462
2647
|
}
|
|
@@ -2467,7 +2652,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2467
2652
|
* @return Whether the operatingSystemVersion field is set.
|
|
2468
2653
|
*/
|
|
2469
2654
|
public boolean hasOperatingSystemVersion() {
|
|
2470
|
-
return ((bitField0_ &
|
|
2655
|
+
return ((bitField0_ & 0x00002000) != 0);
|
|
2471
2656
|
}
|
|
2472
2657
|
/**
|
|
2473
2658
|
* <code>optional string operating_system_version = 13;</code>
|
|
@@ -2511,7 +2696,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2511
2696
|
java.lang.String value) {
|
|
2512
2697
|
if (value == null) { throw new NullPointerException(); }
|
|
2513
2698
|
operatingSystemVersion_ = value;
|
|
2514
|
-
bitField0_ |=
|
|
2699
|
+
bitField0_ |= 0x00002000;
|
|
2515
2700
|
onChanged();
|
|
2516
2701
|
return this;
|
|
2517
2702
|
}
|
|
@@ -2521,7 +2706,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2521
2706
|
*/
|
|
2522
2707
|
public Builder clearOperatingSystemVersion() {
|
|
2523
2708
|
operatingSystemVersion_ = getDefaultInstance().getOperatingSystemVersion();
|
|
2524
|
-
bitField0_ = (bitField0_ & ~
|
|
2709
|
+
bitField0_ = (bitField0_ & ~0x00002000);
|
|
2525
2710
|
onChanged();
|
|
2526
2711
|
return this;
|
|
2527
2712
|
}
|
|
@@ -2535,7 +2720,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2535
2720
|
if (value == null) { throw new NullPointerException(); }
|
|
2536
2721
|
checkByteStringIsUtf8(value);
|
|
2537
2722
|
operatingSystemVersion_ = value;
|
|
2538
|
-
bitField0_ |=
|
|
2723
|
+
bitField0_ |= 0x00002000;
|
|
2539
2724
|
onChanged();
|
|
2540
2725
|
return this;
|
|
2541
2726
|
}
|
|
@@ -2550,7 +2735,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2550
2735
|
* @return Whether the managedByUserOid field is set.
|
|
2551
2736
|
*/
|
|
2552
2737
|
public boolean hasManagedByUserOid() {
|
|
2553
|
-
return ((bitField0_ &
|
|
2738
|
+
return ((bitField0_ & 0x00004000) != 0);
|
|
2554
2739
|
}
|
|
2555
2740
|
/**
|
|
2556
2741
|
* <pre>
|
|
@@ -2606,7 +2791,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2606
2791
|
java.lang.String value) {
|
|
2607
2792
|
if (value == null) { throw new NullPointerException(); }
|
|
2608
2793
|
managedByUserOid_ = value;
|
|
2609
|
-
bitField0_ |=
|
|
2794
|
+
bitField0_ |= 0x00004000;
|
|
2610
2795
|
onChanged();
|
|
2611
2796
|
return this;
|
|
2612
2797
|
}
|
|
@@ -2620,7 +2805,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2620
2805
|
*/
|
|
2621
2806
|
public Builder clearManagedByUserOid() {
|
|
2622
2807
|
managedByUserOid_ = getDefaultInstance().getManagedByUserOid();
|
|
2623
|
-
bitField0_ = (bitField0_ & ~
|
|
2808
|
+
bitField0_ = (bitField0_ & ~0x00004000);
|
|
2624
2809
|
onChanged();
|
|
2625
2810
|
return this;
|
|
2626
2811
|
}
|
|
@@ -2638,7 +2823,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2638
2823
|
if (value == null) { throw new NullPointerException(); }
|
|
2639
2824
|
checkByteStringIsUtf8(value);
|
|
2640
2825
|
managedByUserOid_ = value;
|
|
2641
|
-
bitField0_ |=
|
|
2826
|
+
bitField0_ |= 0x00004000;
|
|
2642
2827
|
onChanged();
|
|
2643
2828
|
return this;
|
|
2644
2829
|
}
|
|
@@ -2653,7 +2838,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2653
2838
|
* @return Whether the managedByGroupOid field is set.
|
|
2654
2839
|
*/
|
|
2655
2840
|
public boolean hasManagedByGroupOid() {
|
|
2656
|
-
return ((bitField0_ &
|
|
2841
|
+
return ((bitField0_ & 0x00008000) != 0);
|
|
2657
2842
|
}
|
|
2658
2843
|
/**
|
|
2659
2844
|
* <pre>
|
|
@@ -2709,7 +2894,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2709
2894
|
java.lang.String value) {
|
|
2710
2895
|
if (value == null) { throw new NullPointerException(); }
|
|
2711
2896
|
managedByGroupOid_ = value;
|
|
2712
|
-
bitField0_ |=
|
|
2897
|
+
bitField0_ |= 0x00008000;
|
|
2713
2898
|
onChanged();
|
|
2714
2899
|
return this;
|
|
2715
2900
|
}
|
|
@@ -2723,7 +2908,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2723
2908
|
*/
|
|
2724
2909
|
public Builder clearManagedByGroupOid() {
|
|
2725
2910
|
managedByGroupOid_ = getDefaultInstance().getManagedByGroupOid();
|
|
2726
|
-
bitField0_ = (bitField0_ & ~
|
|
2911
|
+
bitField0_ = (bitField0_ & ~0x00008000);
|
|
2727
2912
|
onChanged();
|
|
2728
2913
|
return this;
|
|
2729
2914
|
}
|
|
@@ -2741,7 +2926,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2741
2926
|
if (value == null) { throw new NullPointerException(); }
|
|
2742
2927
|
checkByteStringIsUtf8(value);
|
|
2743
2928
|
managedByGroupOid_ = value;
|
|
2744
|
-
bitField0_ |=
|
|
2929
|
+
bitField0_ |= 0x00008000;
|
|
2745
2930
|
onChanged();
|
|
2746
2931
|
return this;
|
|
2747
2932
|
}
|