@lansweeper/data-platform-outbound-grpc 0.3.4 → 0.3.5
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 +8 -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 +393 -383
- 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/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/outbound.proto +1 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryUser.java +694 -537
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ActiveDirectoryUserOrBuilder.java +17 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +137 -136
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.3.3-sources.jar → outbound-model-0.3.4-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.3.jar → outbound-model-0.3.4.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.3.3-sources.jar → outbound-service-0.3.4-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.3.jar → outbound-service-0.3.4.jar} +0 -0
|
@@ -25,6 +25,7 @@ private static final long serialVersionUID = 0L;
|
|
|
25
25
|
samAccountName_ = "";
|
|
26
26
|
cn_ = "";
|
|
27
27
|
ou_ = "";
|
|
28
|
+
domain_ = "";
|
|
28
29
|
description_ = "";
|
|
29
30
|
comment_ = "";
|
|
30
31
|
company_ = "";
|
|
@@ -257,6 +258,53 @@ private static final long serialVersionUID = 0L;
|
|
|
257
258
|
}
|
|
258
259
|
}
|
|
259
260
|
|
|
261
|
+
public static final int DOMAIN_FIELD_NUMBER = 58;
|
|
262
|
+
@SuppressWarnings("serial")
|
|
263
|
+
private volatile java.lang.Object domain_ = "";
|
|
264
|
+
/**
|
|
265
|
+
* <code>optional string domain = 58;</code>
|
|
266
|
+
* @return Whether the domain field is set.
|
|
267
|
+
*/
|
|
268
|
+
@java.lang.Override
|
|
269
|
+
public boolean hasDomain() {
|
|
270
|
+
return ((bitField0_ & 0x00000010) != 0);
|
|
271
|
+
}
|
|
272
|
+
/**
|
|
273
|
+
* <code>optional string domain = 58;</code>
|
|
274
|
+
* @return The domain.
|
|
275
|
+
*/
|
|
276
|
+
@java.lang.Override
|
|
277
|
+
public java.lang.String getDomain() {
|
|
278
|
+
java.lang.Object ref = domain_;
|
|
279
|
+
if (ref instanceof java.lang.String) {
|
|
280
|
+
return (java.lang.String) ref;
|
|
281
|
+
} else {
|
|
282
|
+
com.google.protobuf.ByteString bs =
|
|
283
|
+
(com.google.protobuf.ByteString) ref;
|
|
284
|
+
java.lang.String s = bs.toStringUtf8();
|
|
285
|
+
domain_ = s;
|
|
286
|
+
return s;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
/**
|
|
290
|
+
* <code>optional string domain = 58;</code>
|
|
291
|
+
* @return The bytes for domain.
|
|
292
|
+
*/
|
|
293
|
+
@java.lang.Override
|
|
294
|
+
public com.google.protobuf.ByteString
|
|
295
|
+
getDomainBytes() {
|
|
296
|
+
java.lang.Object ref = domain_;
|
|
297
|
+
if (ref instanceof java.lang.String) {
|
|
298
|
+
com.google.protobuf.ByteString b =
|
|
299
|
+
com.google.protobuf.ByteString.copyFromUtf8(
|
|
300
|
+
(java.lang.String) ref);
|
|
301
|
+
domain_ = b;
|
|
302
|
+
return b;
|
|
303
|
+
} else {
|
|
304
|
+
return (com.google.protobuf.ByteString) ref;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
|
|
260
308
|
public static final int DESCRIPTION_FIELD_NUMBER = 5;
|
|
261
309
|
@SuppressWarnings("serial")
|
|
262
310
|
private volatile java.lang.Object description_ = "";
|
|
@@ -266,7 +314,7 @@ private static final long serialVersionUID = 0L;
|
|
|
266
314
|
*/
|
|
267
315
|
@java.lang.Override
|
|
268
316
|
public boolean hasDescription() {
|
|
269
|
-
return ((bitField0_ &
|
|
317
|
+
return ((bitField0_ & 0x00000020) != 0);
|
|
270
318
|
}
|
|
271
319
|
/**
|
|
272
320
|
* <code>optional string description = 5;</code>
|
|
@@ -313,7 +361,7 @@ private static final long serialVersionUID = 0L;
|
|
|
313
361
|
*/
|
|
314
362
|
@java.lang.Override
|
|
315
363
|
public boolean hasComment() {
|
|
316
|
-
return ((bitField0_ &
|
|
364
|
+
return ((bitField0_ & 0x00000040) != 0);
|
|
317
365
|
}
|
|
318
366
|
/**
|
|
319
367
|
* <code>optional string comment = 6;</code>
|
|
@@ -360,7 +408,7 @@ private static final long serialVersionUID = 0L;
|
|
|
360
408
|
*/
|
|
361
409
|
@java.lang.Override
|
|
362
410
|
public boolean hasCompany() {
|
|
363
|
-
return ((bitField0_ &
|
|
411
|
+
return ((bitField0_ & 0x00000080) != 0);
|
|
364
412
|
}
|
|
365
413
|
/**
|
|
366
414
|
* <code>optional string company = 7;</code>
|
|
@@ -406,7 +454,7 @@ private static final long serialVersionUID = 0L;
|
|
|
406
454
|
*/
|
|
407
455
|
@java.lang.Override
|
|
408
456
|
public boolean hasPrimaryGroupId() {
|
|
409
|
-
return ((bitField0_ &
|
|
457
|
+
return ((bitField0_ & 0x00000100) != 0);
|
|
410
458
|
}
|
|
411
459
|
/**
|
|
412
460
|
* <code>optional int32 primary_group_id = 8;</code>
|
|
@@ -425,7 +473,7 @@ private static final long serialVersionUID = 0L;
|
|
|
425
473
|
*/
|
|
426
474
|
@java.lang.Override
|
|
427
475
|
public boolean hasEnabled() {
|
|
428
|
-
return ((bitField0_ &
|
|
476
|
+
return ((bitField0_ & 0x00000200) != 0);
|
|
429
477
|
}
|
|
430
478
|
/**
|
|
431
479
|
* <code>optional bool enabled = 9;</code>
|
|
@@ -444,7 +492,7 @@ private static final long serialVersionUID = 0L;
|
|
|
444
492
|
*/
|
|
445
493
|
@java.lang.Override
|
|
446
494
|
public boolean hasUserAccountControl() {
|
|
447
|
-
return ((bitField0_ &
|
|
495
|
+
return ((bitField0_ & 0x00000400) != 0);
|
|
448
496
|
}
|
|
449
497
|
/**
|
|
450
498
|
* <code>optional int32 user_account_control = 10;</code>
|
|
@@ -463,7 +511,7 @@ private static final long serialVersionUID = 0L;
|
|
|
463
511
|
*/
|
|
464
512
|
@java.lang.Override
|
|
465
513
|
public boolean hasAccountExpires() {
|
|
466
|
-
return ((bitField0_ &
|
|
514
|
+
return ((bitField0_ & 0x00000800) != 0);
|
|
467
515
|
}
|
|
468
516
|
/**
|
|
469
517
|
* <code>optional .google.protobuf.Timestamp account_expires = 11;</code>
|
|
@@ -489,7 +537,7 @@ private static final long serialVersionUID = 0L;
|
|
|
489
537
|
*/
|
|
490
538
|
@java.lang.Override
|
|
491
539
|
public boolean hasLockoutTime() {
|
|
492
|
-
return ((bitField0_ &
|
|
540
|
+
return ((bitField0_ & 0x00001000) != 0);
|
|
493
541
|
}
|
|
494
542
|
/**
|
|
495
543
|
* <code>optional .google.protobuf.Timestamp lockout_time = 12;</code>
|
|
@@ -515,7 +563,7 @@ private static final long serialVersionUID = 0L;
|
|
|
515
563
|
*/
|
|
516
564
|
@java.lang.Override
|
|
517
565
|
public boolean hasPasswordLastSet() {
|
|
518
|
-
return ((bitField0_ &
|
|
566
|
+
return ((bitField0_ & 0x00002000) != 0);
|
|
519
567
|
}
|
|
520
568
|
/**
|
|
521
569
|
* <code>optional .google.protobuf.Timestamp password_last_set = 13;</code>
|
|
@@ -541,7 +589,7 @@ private static final long serialVersionUID = 0L;
|
|
|
541
589
|
*/
|
|
542
590
|
@java.lang.Override
|
|
543
591
|
public boolean hasLastLogon() {
|
|
544
|
-
return ((bitField0_ &
|
|
592
|
+
return ((bitField0_ & 0x00004000) != 0);
|
|
545
593
|
}
|
|
546
594
|
/**
|
|
547
595
|
* <code>optional .google.protobuf.Timestamp last_logon = 14;</code>
|
|
@@ -567,7 +615,7 @@ private static final long serialVersionUID = 0L;
|
|
|
567
615
|
*/
|
|
568
616
|
@java.lang.Override
|
|
569
617
|
public boolean hasLockoutDate() {
|
|
570
|
-
return ((bitField0_ &
|
|
618
|
+
return ((bitField0_ & 0x00008000) != 0);
|
|
571
619
|
}
|
|
572
620
|
/**
|
|
573
621
|
* <code>optional .google.protobuf.Timestamp lockout_date = 15;</code>
|
|
@@ -593,7 +641,7 @@ private static final long serialVersionUID = 0L;
|
|
|
593
641
|
*/
|
|
594
642
|
@java.lang.Override
|
|
595
643
|
public boolean hasCanUserChangePassword() {
|
|
596
|
-
return ((bitField0_ &
|
|
644
|
+
return ((bitField0_ & 0x00010000) != 0);
|
|
597
645
|
}
|
|
598
646
|
/**
|
|
599
647
|
* <code>optional bool can_user_change_password = 16;</code>
|
|
@@ -612,7 +660,7 @@ private static final long serialVersionUID = 0L;
|
|
|
612
660
|
*/
|
|
613
661
|
@java.lang.Override
|
|
614
662
|
public boolean hasPasswordExpirationDate() {
|
|
615
|
-
return ((bitField0_ &
|
|
663
|
+
return ((bitField0_ & 0x00020000) != 0);
|
|
616
664
|
}
|
|
617
665
|
/**
|
|
618
666
|
* <code>optional .google.protobuf.Timestamp password_expiration_date = 17;</code>
|
|
@@ -638,7 +686,7 @@ private static final long serialVersionUID = 0L;
|
|
|
638
686
|
*/
|
|
639
687
|
@java.lang.Override
|
|
640
688
|
public boolean hasPasswordNeverExpires() {
|
|
641
|
-
return ((bitField0_ &
|
|
689
|
+
return ((bitField0_ & 0x00040000) != 0);
|
|
642
690
|
}
|
|
643
691
|
/**
|
|
644
692
|
* <code>optional bool password_never_expires = 18;</code>
|
|
@@ -657,7 +705,7 @@ private static final long serialVersionUID = 0L;
|
|
|
657
705
|
*/
|
|
658
706
|
@java.lang.Override
|
|
659
707
|
public boolean hasPasswordRequired() {
|
|
660
|
-
return ((bitField0_ &
|
|
708
|
+
return ((bitField0_ & 0x00080000) != 0);
|
|
661
709
|
}
|
|
662
710
|
/**
|
|
663
711
|
* <code>optional bool password_required = 19;</code>
|
|
@@ -676,7 +724,7 @@ private static final long serialVersionUID = 0L;
|
|
|
676
724
|
*/
|
|
677
725
|
@java.lang.Override
|
|
678
726
|
public boolean hasPasswordChangeableDate() {
|
|
679
|
-
return ((bitField0_ &
|
|
727
|
+
return ((bitField0_ & 0x00100000) != 0);
|
|
680
728
|
}
|
|
681
729
|
/**
|
|
682
730
|
* <code>optional .google.protobuf.Timestamp password_changeable_date = 20;</code>
|
|
@@ -703,7 +751,7 @@ private static final long serialVersionUID = 0L;
|
|
|
703
751
|
*/
|
|
704
752
|
@java.lang.Override
|
|
705
753
|
public boolean hasEmail() {
|
|
706
|
-
return ((bitField0_ &
|
|
754
|
+
return ((bitField0_ & 0x00200000) != 0);
|
|
707
755
|
}
|
|
708
756
|
/**
|
|
709
757
|
* <code>optional string email = 21;</code>
|
|
@@ -750,7 +798,7 @@ private static final long serialVersionUID = 0L;
|
|
|
750
798
|
*/
|
|
751
799
|
@java.lang.Override
|
|
752
800
|
public boolean hasDisplayName() {
|
|
753
|
-
return ((bitField0_ &
|
|
801
|
+
return ((bitField0_ & 0x00400000) != 0);
|
|
754
802
|
}
|
|
755
803
|
/**
|
|
756
804
|
* <code>optional string display_name = 22;</code>
|
|
@@ -797,7 +845,7 @@ private static final long serialVersionUID = 0L;
|
|
|
797
845
|
*/
|
|
798
846
|
@java.lang.Override
|
|
799
847
|
public boolean hasGivenName() {
|
|
800
|
-
return ((bitField0_ &
|
|
848
|
+
return ((bitField0_ & 0x00800000) != 0);
|
|
801
849
|
}
|
|
802
850
|
/**
|
|
803
851
|
* <code>optional string given_name = 23;</code>
|
|
@@ -844,7 +892,7 @@ private static final long serialVersionUID = 0L;
|
|
|
844
892
|
*/
|
|
845
893
|
@java.lang.Override
|
|
846
894
|
public boolean hasSurname() {
|
|
847
|
-
return ((bitField0_ &
|
|
895
|
+
return ((bitField0_ & 0x01000000) != 0);
|
|
848
896
|
}
|
|
849
897
|
/**
|
|
850
898
|
* <code>optional string surname = 24;</code>
|
|
@@ -891,7 +939,7 @@ private static final long serialVersionUID = 0L;
|
|
|
891
939
|
*/
|
|
892
940
|
@java.lang.Override
|
|
893
941
|
public boolean hasTelephone() {
|
|
894
|
-
return ((bitField0_ &
|
|
942
|
+
return ((bitField0_ & 0x02000000) != 0);
|
|
895
943
|
}
|
|
896
944
|
/**
|
|
897
945
|
* <code>optional string telephone = 25;</code>
|
|
@@ -938,7 +986,7 @@ private static final long serialVersionUID = 0L;
|
|
|
938
986
|
*/
|
|
939
987
|
@java.lang.Override
|
|
940
988
|
public boolean hasFacSimile() {
|
|
941
|
-
return ((bitField0_ &
|
|
989
|
+
return ((bitField0_ & 0x04000000) != 0);
|
|
942
990
|
}
|
|
943
991
|
/**
|
|
944
992
|
* <code>optional string fac_simile = 26;</code>
|
|
@@ -985,7 +1033,7 @@ private static final long serialVersionUID = 0L;
|
|
|
985
1033
|
*/
|
|
986
1034
|
@java.lang.Override
|
|
987
1035
|
public boolean hasMobile() {
|
|
988
|
-
return ((bitField0_ &
|
|
1036
|
+
return ((bitField0_ & 0x08000000) != 0);
|
|
989
1037
|
}
|
|
990
1038
|
/**
|
|
991
1039
|
* <code>optional string mobile = 27;</code>
|
|
@@ -1032,7 +1080,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1032
1080
|
*/
|
|
1033
1081
|
@java.lang.Override
|
|
1034
1082
|
public boolean hasStreetAddress() {
|
|
1035
|
-
return ((bitField0_ &
|
|
1083
|
+
return ((bitField0_ & 0x10000000) != 0);
|
|
1036
1084
|
}
|
|
1037
1085
|
/**
|
|
1038
1086
|
* <code>optional string street_address = 28;</code>
|
|
@@ -1079,7 +1127,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1079
1127
|
*/
|
|
1080
1128
|
@java.lang.Override
|
|
1081
1129
|
public boolean hasCity() {
|
|
1082
|
-
return ((bitField0_ &
|
|
1130
|
+
return ((bitField0_ & 0x20000000) != 0);
|
|
1083
1131
|
}
|
|
1084
1132
|
/**
|
|
1085
1133
|
* <code>optional string city = 29;</code>
|
|
@@ -1126,7 +1174,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1126
1174
|
*/
|
|
1127
1175
|
@java.lang.Override
|
|
1128
1176
|
public boolean hasCountry() {
|
|
1129
|
-
return ((bitField0_ &
|
|
1177
|
+
return ((bitField0_ & 0x40000000) != 0);
|
|
1130
1178
|
}
|
|
1131
1179
|
/**
|
|
1132
1180
|
* <code>optional string country = 30;</code>
|
|
@@ -1173,7 +1221,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1173
1221
|
*/
|
|
1174
1222
|
@java.lang.Override
|
|
1175
1223
|
public boolean hasDepartment() {
|
|
1176
|
-
return ((bitField0_ &
|
|
1224
|
+
return ((bitField0_ & 0x80000000) != 0);
|
|
1177
1225
|
}
|
|
1178
1226
|
/**
|
|
1179
1227
|
* <code>optional string department = 31;</code>
|
|
@@ -1220,7 +1268,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1220
1268
|
*/
|
|
1221
1269
|
@java.lang.Override
|
|
1222
1270
|
public boolean hasDeliveryOfficeName() {
|
|
1223
|
-
return ((
|
|
1271
|
+
return ((bitField1_ & 0x00000001) != 0);
|
|
1224
1272
|
}
|
|
1225
1273
|
/**
|
|
1226
1274
|
* <code>optional string delivery_office_name = 32;</code>
|
|
@@ -1267,7 +1315,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1267
1315
|
*/
|
|
1268
1316
|
@java.lang.Override
|
|
1269
1317
|
public boolean hasCountryAbbreviation() {
|
|
1270
|
-
return ((bitField1_ &
|
|
1318
|
+
return ((bitField1_ & 0x00000002) != 0);
|
|
1271
1319
|
}
|
|
1272
1320
|
/**
|
|
1273
1321
|
* <code>optional string country_abbreviation = 33;</code>
|
|
@@ -1314,7 +1362,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1314
1362
|
*/
|
|
1315
1363
|
@java.lang.Override
|
|
1316
1364
|
public boolean hasPostalCode() {
|
|
1317
|
-
return ((bitField1_ &
|
|
1365
|
+
return ((bitField1_ & 0x00000004) != 0);
|
|
1318
1366
|
}
|
|
1319
1367
|
/**
|
|
1320
1368
|
* <code>optional string postal_code = 34;</code>
|
|
@@ -1361,7 +1409,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1361
1409
|
*/
|
|
1362
1410
|
@java.lang.Override
|
|
1363
1411
|
public boolean hasCountryCode() {
|
|
1364
|
-
return ((bitField1_ &
|
|
1412
|
+
return ((bitField1_ & 0x00000008) != 0);
|
|
1365
1413
|
}
|
|
1366
1414
|
/**
|
|
1367
1415
|
* <code>optional string country_code = 35;</code>
|
|
@@ -1408,7 +1456,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1408
1456
|
*/
|
|
1409
1457
|
@java.lang.Override
|
|
1410
1458
|
public boolean hasPrincipalName() {
|
|
1411
|
-
return ((bitField1_ &
|
|
1459
|
+
return ((bitField1_ & 0x00000010) != 0);
|
|
1412
1460
|
}
|
|
1413
1461
|
/**
|
|
1414
1462
|
* <code>optional string principal_name = 36;</code>
|
|
@@ -1455,7 +1503,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1455
1503
|
*/
|
|
1456
1504
|
@java.lang.Override
|
|
1457
1505
|
public boolean hasTitle() {
|
|
1458
|
-
return ((bitField1_ &
|
|
1506
|
+
return ((bitField1_ & 0x00000020) != 0);
|
|
1459
1507
|
}
|
|
1460
1508
|
/**
|
|
1461
1509
|
* <code>optional string title = 37;</code>
|
|
@@ -1502,7 +1550,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1502
1550
|
*/
|
|
1503
1551
|
@java.lang.Override
|
|
1504
1552
|
public boolean hasDivision() {
|
|
1505
|
-
return ((bitField1_ &
|
|
1553
|
+
return ((bitField1_ & 0x00000040) != 0);
|
|
1506
1554
|
}
|
|
1507
1555
|
/**
|
|
1508
1556
|
* <code>optional string division = 38;</code>
|
|
@@ -1549,7 +1597,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1549
1597
|
*/
|
|
1550
1598
|
@java.lang.Override
|
|
1551
1599
|
public boolean hasInfo() {
|
|
1552
|
-
return ((bitField1_ &
|
|
1600
|
+
return ((bitField1_ & 0x00000080) != 0);
|
|
1553
1601
|
}
|
|
1554
1602
|
/**
|
|
1555
1603
|
* <code>optional string info = 39;</code>
|
|
@@ -1596,7 +1644,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1596
1644
|
*/
|
|
1597
1645
|
@java.lang.Override
|
|
1598
1646
|
public boolean hasHomePhone() {
|
|
1599
|
-
return ((bitField1_ &
|
|
1647
|
+
return ((bitField1_ & 0x00000100) != 0);
|
|
1600
1648
|
}
|
|
1601
1649
|
/**
|
|
1602
1650
|
* <code>optional string home_phone = 40;</code>
|
|
@@ -1643,7 +1691,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1643
1691
|
*/
|
|
1644
1692
|
@java.lang.Override
|
|
1645
1693
|
public boolean hasPager() {
|
|
1646
|
-
return ((bitField1_ &
|
|
1694
|
+
return ((bitField1_ & 0x00000200) != 0);
|
|
1647
1695
|
}
|
|
1648
1696
|
/**
|
|
1649
1697
|
* <code>optional string pager = 41;</code>
|
|
@@ -1690,7 +1738,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1690
1738
|
*/
|
|
1691
1739
|
@java.lang.Override
|
|
1692
1740
|
public boolean hasIpPhone() {
|
|
1693
|
-
return ((bitField1_ &
|
|
1741
|
+
return ((bitField1_ & 0x00000400) != 0);
|
|
1694
1742
|
}
|
|
1695
1743
|
/**
|
|
1696
1744
|
* <code>optional string ip_phone = 42;</code>
|
|
@@ -1737,7 +1785,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1737
1785
|
*/
|
|
1738
1786
|
@java.lang.Override
|
|
1739
1787
|
public boolean hasHomePage() {
|
|
1740
|
-
return ((bitField1_ &
|
|
1788
|
+
return ((bitField1_ & 0x00000800) != 0);
|
|
1741
1789
|
}
|
|
1742
1790
|
/**
|
|
1743
1791
|
* <code>optional string home_page = 43;</code>
|
|
@@ -1784,7 +1832,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1784
1832
|
*/
|
|
1785
1833
|
@java.lang.Override
|
|
1786
1834
|
public boolean hasPostOfficeBox() {
|
|
1787
|
-
return ((bitField1_ &
|
|
1835
|
+
return ((bitField1_ & 0x00001000) != 0);
|
|
1788
1836
|
}
|
|
1789
1837
|
/**
|
|
1790
1838
|
* <code>optional string post_office_box = 44;</code>
|
|
@@ -1831,7 +1879,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1831
1879
|
*/
|
|
1832
1880
|
@java.lang.Override
|
|
1833
1881
|
public boolean hasState() {
|
|
1834
|
-
return ((bitField1_ &
|
|
1882
|
+
return ((bitField1_ & 0x00002000) != 0);
|
|
1835
1883
|
}
|
|
1836
1884
|
/**
|
|
1837
1885
|
* <code>optional string state = 45;</code>
|
|
@@ -1878,7 +1926,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1878
1926
|
*/
|
|
1879
1927
|
@java.lang.Override
|
|
1880
1928
|
public boolean hasProfilePath() {
|
|
1881
|
-
return ((bitField1_ &
|
|
1929
|
+
return ((bitField1_ & 0x00004000) != 0);
|
|
1882
1930
|
}
|
|
1883
1931
|
/**
|
|
1884
1932
|
* <code>optional string profile_path = 46;</code>
|
|
@@ -1925,7 +1973,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1925
1973
|
*/
|
|
1926
1974
|
@java.lang.Override
|
|
1927
1975
|
public boolean hasScriptPath() {
|
|
1928
|
-
return ((bitField1_ &
|
|
1976
|
+
return ((bitField1_ & 0x00008000) != 0);
|
|
1929
1977
|
}
|
|
1930
1978
|
/**
|
|
1931
1979
|
* <code>optional string script_path = 47;</code>
|
|
@@ -1972,7 +2020,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1972
2020
|
*/
|
|
1973
2021
|
@java.lang.Override
|
|
1974
2022
|
public boolean hasHomeDirectory() {
|
|
1975
|
-
return ((bitField1_ &
|
|
2023
|
+
return ((bitField1_ & 0x00010000) != 0);
|
|
1976
2024
|
}
|
|
1977
2025
|
/**
|
|
1978
2026
|
* <code>optional string home_directory = 48;</code>
|
|
@@ -2018,7 +2066,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2018
2066
|
*/
|
|
2019
2067
|
@java.lang.Override
|
|
2020
2068
|
public boolean hasThumbnailPhoto() {
|
|
2021
|
-
return ((bitField1_ &
|
|
2069
|
+
return ((bitField1_ & 0x00020000) != 0);
|
|
2022
2070
|
}
|
|
2023
2071
|
/**
|
|
2024
2072
|
* <code>optional bytes thumbnail_photo = 49;</code>
|
|
@@ -2038,7 +2086,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2038
2086
|
*/
|
|
2039
2087
|
@java.lang.Override
|
|
2040
2088
|
public boolean hasEmployeeId() {
|
|
2041
|
-
return ((bitField1_ &
|
|
2089
|
+
return ((bitField1_ & 0x00040000) != 0);
|
|
2042
2090
|
}
|
|
2043
2091
|
/**
|
|
2044
2092
|
* <code>optional string employee_id = 50;</code>
|
|
@@ -2085,7 +2133,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2085
2133
|
*/
|
|
2086
2134
|
@java.lang.Override
|
|
2087
2135
|
public boolean hasEmployeeNumber() {
|
|
2088
|
-
return ((bitField1_ &
|
|
2136
|
+
return ((bitField1_ & 0x00080000) != 0);
|
|
2089
2137
|
}
|
|
2090
2138
|
/**
|
|
2091
2139
|
* <code>optional string employee_number = 51;</code>
|
|
@@ -2132,7 +2180,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2132
2180
|
*/
|
|
2133
2181
|
@java.lang.Override
|
|
2134
2182
|
public boolean hasEmployeeType() {
|
|
2135
|
-
return ((bitField1_ &
|
|
2183
|
+
return ((bitField1_ & 0x00100000) != 0);
|
|
2136
2184
|
}
|
|
2137
2185
|
/**
|
|
2138
2186
|
* <code>optional string employee_type = 52;</code>
|
|
@@ -2179,7 +2227,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2179
2227
|
*/
|
|
2180
2228
|
@java.lang.Override
|
|
2181
2229
|
public boolean hasInitials() {
|
|
2182
|
-
return ((bitField1_ &
|
|
2230
|
+
return ((bitField1_ & 0x00200000) != 0);
|
|
2183
2231
|
}
|
|
2184
2232
|
/**
|
|
2185
2233
|
* <code>optional string initials = 53;</code>
|
|
@@ -2226,7 +2274,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2226
2274
|
*/
|
|
2227
2275
|
@java.lang.Override
|
|
2228
2276
|
public boolean hasMiddleName() {
|
|
2229
|
-
return ((bitField1_ &
|
|
2277
|
+
return ((bitField1_ & 0x00400000) != 0);
|
|
2230
2278
|
}
|
|
2231
2279
|
/**
|
|
2232
2280
|
* <code>optional string middle_name = 54;</code>
|
|
@@ -2273,7 +2321,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2273
2321
|
*/
|
|
2274
2322
|
@java.lang.Override
|
|
2275
2323
|
public boolean hasPrimaryGroupOid() {
|
|
2276
|
-
return ((bitField1_ &
|
|
2324
|
+
return ((bitField1_ & 0x00800000) != 0);
|
|
2277
2325
|
}
|
|
2278
2326
|
/**
|
|
2279
2327
|
* <code>optional string primary_group_oid = 55;</code>
|
|
@@ -2320,7 +2368,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2320
2368
|
*/
|
|
2321
2369
|
@java.lang.Override
|
|
2322
2370
|
public boolean hasManagerOid() {
|
|
2323
|
-
return ((bitField1_ &
|
|
2371
|
+
return ((bitField1_ & 0x01000000) != 0);
|
|
2324
2372
|
}
|
|
2325
2373
|
/**
|
|
2326
2374
|
* <code>optional string manager_oid = 56;</code>
|
|
@@ -2421,165 +2469,168 @@ private static final long serialVersionUID = 0L;
|
|
|
2421
2469
|
if (((bitField0_ & 0x00000008) != 0)) {
|
|
2422
2470
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, ou_);
|
|
2423
2471
|
}
|
|
2424
|
-
if (((bitField0_ &
|
|
2472
|
+
if (((bitField0_ & 0x00000020) != 0)) {
|
|
2425
2473
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, description_);
|
|
2426
2474
|
}
|
|
2427
|
-
if (((bitField0_ &
|
|
2475
|
+
if (((bitField0_ & 0x00000040) != 0)) {
|
|
2428
2476
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 6, comment_);
|
|
2429
2477
|
}
|
|
2430
|
-
if (((bitField0_ &
|
|
2478
|
+
if (((bitField0_ & 0x00000080) != 0)) {
|
|
2431
2479
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 7, company_);
|
|
2432
2480
|
}
|
|
2433
|
-
if (((bitField0_ &
|
|
2481
|
+
if (((bitField0_ & 0x00000100) != 0)) {
|
|
2434
2482
|
output.writeInt32(8, primaryGroupId_);
|
|
2435
2483
|
}
|
|
2436
|
-
if (((bitField0_ &
|
|
2484
|
+
if (((bitField0_ & 0x00000200) != 0)) {
|
|
2437
2485
|
output.writeBool(9, enabled_);
|
|
2438
2486
|
}
|
|
2439
|
-
if (((bitField0_ &
|
|
2487
|
+
if (((bitField0_ & 0x00000400) != 0)) {
|
|
2440
2488
|
output.writeInt32(10, userAccountControl_);
|
|
2441
2489
|
}
|
|
2442
|
-
if (((bitField0_ &
|
|
2490
|
+
if (((bitField0_ & 0x00000800) != 0)) {
|
|
2443
2491
|
output.writeMessage(11, getAccountExpires());
|
|
2444
2492
|
}
|
|
2445
|
-
if (((bitField0_ &
|
|
2493
|
+
if (((bitField0_ & 0x00001000) != 0)) {
|
|
2446
2494
|
output.writeMessage(12, getLockoutTime());
|
|
2447
2495
|
}
|
|
2448
|
-
if (((bitField0_ &
|
|
2496
|
+
if (((bitField0_ & 0x00002000) != 0)) {
|
|
2449
2497
|
output.writeMessage(13, getPasswordLastSet());
|
|
2450
2498
|
}
|
|
2451
|
-
if (((bitField0_ &
|
|
2499
|
+
if (((bitField0_ & 0x00004000) != 0)) {
|
|
2452
2500
|
output.writeMessage(14, getLastLogon());
|
|
2453
2501
|
}
|
|
2454
|
-
if (((bitField0_ &
|
|
2502
|
+
if (((bitField0_ & 0x00008000) != 0)) {
|
|
2455
2503
|
output.writeMessage(15, getLockoutDate());
|
|
2456
2504
|
}
|
|
2457
|
-
if (((bitField0_ &
|
|
2505
|
+
if (((bitField0_ & 0x00010000) != 0)) {
|
|
2458
2506
|
output.writeBool(16, canUserChangePassword_);
|
|
2459
2507
|
}
|
|
2460
|
-
if (((bitField0_ &
|
|
2508
|
+
if (((bitField0_ & 0x00020000) != 0)) {
|
|
2461
2509
|
output.writeMessage(17, getPasswordExpirationDate());
|
|
2462
2510
|
}
|
|
2463
|
-
if (((bitField0_ &
|
|
2511
|
+
if (((bitField0_ & 0x00040000) != 0)) {
|
|
2464
2512
|
output.writeBool(18, passwordNeverExpires_);
|
|
2465
2513
|
}
|
|
2466
|
-
if (((bitField0_ &
|
|
2514
|
+
if (((bitField0_ & 0x00080000) != 0)) {
|
|
2467
2515
|
output.writeBool(19, passwordRequired_);
|
|
2468
2516
|
}
|
|
2469
|
-
if (((bitField0_ &
|
|
2517
|
+
if (((bitField0_ & 0x00100000) != 0)) {
|
|
2470
2518
|
output.writeMessage(20, getPasswordChangeableDate());
|
|
2471
2519
|
}
|
|
2472
|
-
if (((bitField0_ &
|
|
2520
|
+
if (((bitField0_ & 0x00200000) != 0)) {
|
|
2473
2521
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 21, email_);
|
|
2474
2522
|
}
|
|
2475
|
-
if (((bitField0_ &
|
|
2523
|
+
if (((bitField0_ & 0x00400000) != 0)) {
|
|
2476
2524
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 22, displayName_);
|
|
2477
2525
|
}
|
|
2478
|
-
if (((bitField0_ &
|
|
2526
|
+
if (((bitField0_ & 0x00800000) != 0)) {
|
|
2479
2527
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 23, givenName_);
|
|
2480
2528
|
}
|
|
2481
|
-
if (((bitField0_ &
|
|
2529
|
+
if (((bitField0_ & 0x01000000) != 0)) {
|
|
2482
2530
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 24, surname_);
|
|
2483
2531
|
}
|
|
2484
|
-
if (((bitField0_ &
|
|
2532
|
+
if (((bitField0_ & 0x02000000) != 0)) {
|
|
2485
2533
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 25, telephone_);
|
|
2486
2534
|
}
|
|
2487
|
-
if (((bitField0_ &
|
|
2535
|
+
if (((bitField0_ & 0x04000000) != 0)) {
|
|
2488
2536
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 26, facSimile_);
|
|
2489
2537
|
}
|
|
2490
|
-
if (((bitField0_ &
|
|
2538
|
+
if (((bitField0_ & 0x08000000) != 0)) {
|
|
2491
2539
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 27, mobile_);
|
|
2492
2540
|
}
|
|
2493
|
-
if (((bitField0_ &
|
|
2541
|
+
if (((bitField0_ & 0x10000000) != 0)) {
|
|
2494
2542
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 28, streetAddress_);
|
|
2495
2543
|
}
|
|
2496
|
-
if (((bitField0_ &
|
|
2544
|
+
if (((bitField0_ & 0x20000000) != 0)) {
|
|
2497
2545
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 29, city_);
|
|
2498
2546
|
}
|
|
2499
|
-
if (((bitField0_ &
|
|
2547
|
+
if (((bitField0_ & 0x40000000) != 0)) {
|
|
2500
2548
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 30, country_);
|
|
2501
2549
|
}
|
|
2502
|
-
if (((bitField0_ &
|
|
2550
|
+
if (((bitField0_ & 0x80000000) != 0)) {
|
|
2503
2551
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 31, department_);
|
|
2504
2552
|
}
|
|
2505
|
-
if (((
|
|
2553
|
+
if (((bitField1_ & 0x00000001) != 0)) {
|
|
2506
2554
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 32, deliveryOfficeName_);
|
|
2507
2555
|
}
|
|
2508
|
-
if (((bitField1_ &
|
|
2556
|
+
if (((bitField1_ & 0x00000002) != 0)) {
|
|
2509
2557
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 33, countryAbbreviation_);
|
|
2510
2558
|
}
|
|
2511
|
-
if (((bitField1_ &
|
|
2559
|
+
if (((bitField1_ & 0x00000004) != 0)) {
|
|
2512
2560
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 34, postalCode_);
|
|
2513
2561
|
}
|
|
2514
|
-
if (((bitField1_ &
|
|
2562
|
+
if (((bitField1_ & 0x00000008) != 0)) {
|
|
2515
2563
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 35, countryCode_);
|
|
2516
2564
|
}
|
|
2517
|
-
if (((bitField1_ &
|
|
2565
|
+
if (((bitField1_ & 0x00000010) != 0)) {
|
|
2518
2566
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 36, principalName_);
|
|
2519
2567
|
}
|
|
2520
|
-
if (((bitField1_ &
|
|
2568
|
+
if (((bitField1_ & 0x00000020) != 0)) {
|
|
2521
2569
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 37, title_);
|
|
2522
2570
|
}
|
|
2523
|
-
if (((bitField1_ &
|
|
2571
|
+
if (((bitField1_ & 0x00000040) != 0)) {
|
|
2524
2572
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 38, division_);
|
|
2525
2573
|
}
|
|
2526
|
-
if (((bitField1_ &
|
|
2574
|
+
if (((bitField1_ & 0x00000080) != 0)) {
|
|
2527
2575
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 39, info_);
|
|
2528
2576
|
}
|
|
2529
|
-
if (((bitField1_ &
|
|
2577
|
+
if (((bitField1_ & 0x00000100) != 0)) {
|
|
2530
2578
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 40, homePhone_);
|
|
2531
2579
|
}
|
|
2532
|
-
if (((bitField1_ &
|
|
2580
|
+
if (((bitField1_ & 0x00000200) != 0)) {
|
|
2533
2581
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 41, pager_);
|
|
2534
2582
|
}
|
|
2535
|
-
if (((bitField1_ &
|
|
2583
|
+
if (((bitField1_ & 0x00000400) != 0)) {
|
|
2536
2584
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 42, ipPhone_);
|
|
2537
2585
|
}
|
|
2538
|
-
if (((bitField1_ &
|
|
2586
|
+
if (((bitField1_ & 0x00000800) != 0)) {
|
|
2539
2587
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 43, homePage_);
|
|
2540
2588
|
}
|
|
2541
|
-
if (((bitField1_ &
|
|
2589
|
+
if (((bitField1_ & 0x00001000) != 0)) {
|
|
2542
2590
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 44, postOfficeBox_);
|
|
2543
2591
|
}
|
|
2544
|
-
if (((bitField1_ &
|
|
2592
|
+
if (((bitField1_ & 0x00002000) != 0)) {
|
|
2545
2593
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 45, state_);
|
|
2546
2594
|
}
|
|
2547
|
-
if (((bitField1_ &
|
|
2595
|
+
if (((bitField1_ & 0x00004000) != 0)) {
|
|
2548
2596
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 46, profilePath_);
|
|
2549
2597
|
}
|
|
2550
|
-
if (((bitField1_ &
|
|
2598
|
+
if (((bitField1_ & 0x00008000) != 0)) {
|
|
2551
2599
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 47, scriptPath_);
|
|
2552
2600
|
}
|
|
2553
|
-
if (((bitField1_ &
|
|
2601
|
+
if (((bitField1_ & 0x00010000) != 0)) {
|
|
2554
2602
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 48, homeDirectory_);
|
|
2555
2603
|
}
|
|
2556
|
-
if (((bitField1_ &
|
|
2604
|
+
if (((bitField1_ & 0x00020000) != 0)) {
|
|
2557
2605
|
output.writeBytes(49, thumbnailPhoto_);
|
|
2558
2606
|
}
|
|
2559
|
-
if (((bitField1_ &
|
|
2607
|
+
if (((bitField1_ & 0x00040000) != 0)) {
|
|
2560
2608
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 50, employeeId_);
|
|
2561
2609
|
}
|
|
2562
|
-
if (((bitField1_ &
|
|
2610
|
+
if (((bitField1_ & 0x00080000) != 0)) {
|
|
2563
2611
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 51, employeeNumber_);
|
|
2564
2612
|
}
|
|
2565
|
-
if (((bitField1_ &
|
|
2613
|
+
if (((bitField1_ & 0x00100000) != 0)) {
|
|
2566
2614
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 52, employeeType_);
|
|
2567
2615
|
}
|
|
2568
|
-
if (((bitField1_ &
|
|
2616
|
+
if (((bitField1_ & 0x00200000) != 0)) {
|
|
2569
2617
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 53, initials_);
|
|
2570
2618
|
}
|
|
2571
|
-
if (((bitField1_ &
|
|
2619
|
+
if (((bitField1_ & 0x00400000) != 0)) {
|
|
2572
2620
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 54, middleName_);
|
|
2573
2621
|
}
|
|
2574
|
-
if (((bitField1_ &
|
|
2622
|
+
if (((bitField1_ & 0x00800000) != 0)) {
|
|
2575
2623
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 55, primaryGroupOid_);
|
|
2576
2624
|
}
|
|
2577
|
-
if (((bitField1_ &
|
|
2625
|
+
if (((bitField1_ & 0x01000000) != 0)) {
|
|
2578
2626
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 56, managerOid_);
|
|
2579
2627
|
}
|
|
2580
2628
|
for (int i = 0; i < memberOfOid_.size(); i++) {
|
|
2581
2629
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 57, memberOfOid_.getRaw(i));
|
|
2582
2630
|
}
|
|
2631
|
+
if (((bitField0_ & 0x00000010) != 0)) {
|
|
2632
|
+
com.google.protobuf.GeneratedMessageV3.writeString(output, 58, domain_);
|
|
2633
|
+
}
|
|
2583
2634
|
getUnknownFields().writeTo(output);
|
|
2584
2635
|
}
|
|
2585
2636
|
|
|
@@ -2602,174 +2653,174 @@ private static final long serialVersionUID = 0L;
|
|
|
2602
2653
|
if (((bitField0_ & 0x00000008) != 0)) {
|
|
2603
2654
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, ou_);
|
|
2604
2655
|
}
|
|
2605
|
-
if (((bitField0_ &
|
|
2656
|
+
if (((bitField0_ & 0x00000020) != 0)) {
|
|
2606
2657
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, description_);
|
|
2607
2658
|
}
|
|
2608
|
-
if (((bitField0_ &
|
|
2659
|
+
if (((bitField0_ & 0x00000040) != 0)) {
|
|
2609
2660
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, comment_);
|
|
2610
2661
|
}
|
|
2611
|
-
if (((bitField0_ &
|
|
2662
|
+
if (((bitField0_ & 0x00000080) != 0)) {
|
|
2612
2663
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, company_);
|
|
2613
2664
|
}
|
|
2614
|
-
if (((bitField0_ &
|
|
2665
|
+
if (((bitField0_ & 0x00000100) != 0)) {
|
|
2615
2666
|
size += com.google.protobuf.CodedOutputStream
|
|
2616
2667
|
.computeInt32Size(8, primaryGroupId_);
|
|
2617
2668
|
}
|
|
2618
|
-
if (((bitField0_ &
|
|
2669
|
+
if (((bitField0_ & 0x00000200) != 0)) {
|
|
2619
2670
|
size += com.google.protobuf.CodedOutputStream
|
|
2620
2671
|
.computeBoolSize(9, enabled_);
|
|
2621
2672
|
}
|
|
2622
|
-
if (((bitField0_ &
|
|
2673
|
+
if (((bitField0_ & 0x00000400) != 0)) {
|
|
2623
2674
|
size += com.google.protobuf.CodedOutputStream
|
|
2624
2675
|
.computeInt32Size(10, userAccountControl_);
|
|
2625
2676
|
}
|
|
2626
|
-
if (((bitField0_ &
|
|
2677
|
+
if (((bitField0_ & 0x00000800) != 0)) {
|
|
2627
2678
|
size += com.google.protobuf.CodedOutputStream
|
|
2628
2679
|
.computeMessageSize(11, getAccountExpires());
|
|
2629
2680
|
}
|
|
2630
|
-
if (((bitField0_ &
|
|
2681
|
+
if (((bitField0_ & 0x00001000) != 0)) {
|
|
2631
2682
|
size += com.google.protobuf.CodedOutputStream
|
|
2632
2683
|
.computeMessageSize(12, getLockoutTime());
|
|
2633
2684
|
}
|
|
2634
|
-
if (((bitField0_ &
|
|
2685
|
+
if (((bitField0_ & 0x00002000) != 0)) {
|
|
2635
2686
|
size += com.google.protobuf.CodedOutputStream
|
|
2636
2687
|
.computeMessageSize(13, getPasswordLastSet());
|
|
2637
2688
|
}
|
|
2638
|
-
if (((bitField0_ &
|
|
2689
|
+
if (((bitField0_ & 0x00004000) != 0)) {
|
|
2639
2690
|
size += com.google.protobuf.CodedOutputStream
|
|
2640
2691
|
.computeMessageSize(14, getLastLogon());
|
|
2641
2692
|
}
|
|
2642
|
-
if (((bitField0_ &
|
|
2693
|
+
if (((bitField0_ & 0x00008000) != 0)) {
|
|
2643
2694
|
size += com.google.protobuf.CodedOutputStream
|
|
2644
2695
|
.computeMessageSize(15, getLockoutDate());
|
|
2645
2696
|
}
|
|
2646
|
-
if (((bitField0_ &
|
|
2697
|
+
if (((bitField0_ & 0x00010000) != 0)) {
|
|
2647
2698
|
size += com.google.protobuf.CodedOutputStream
|
|
2648
2699
|
.computeBoolSize(16, canUserChangePassword_);
|
|
2649
2700
|
}
|
|
2650
|
-
if (((bitField0_ &
|
|
2701
|
+
if (((bitField0_ & 0x00020000) != 0)) {
|
|
2651
2702
|
size += com.google.protobuf.CodedOutputStream
|
|
2652
2703
|
.computeMessageSize(17, getPasswordExpirationDate());
|
|
2653
2704
|
}
|
|
2654
|
-
if (((bitField0_ &
|
|
2705
|
+
if (((bitField0_ & 0x00040000) != 0)) {
|
|
2655
2706
|
size += com.google.protobuf.CodedOutputStream
|
|
2656
2707
|
.computeBoolSize(18, passwordNeverExpires_);
|
|
2657
2708
|
}
|
|
2658
|
-
if (((bitField0_ &
|
|
2709
|
+
if (((bitField0_ & 0x00080000) != 0)) {
|
|
2659
2710
|
size += com.google.protobuf.CodedOutputStream
|
|
2660
2711
|
.computeBoolSize(19, passwordRequired_);
|
|
2661
2712
|
}
|
|
2662
|
-
if (((bitField0_ &
|
|
2713
|
+
if (((bitField0_ & 0x00100000) != 0)) {
|
|
2663
2714
|
size += com.google.protobuf.CodedOutputStream
|
|
2664
2715
|
.computeMessageSize(20, getPasswordChangeableDate());
|
|
2665
2716
|
}
|
|
2666
|
-
if (((bitField0_ &
|
|
2717
|
+
if (((bitField0_ & 0x00200000) != 0)) {
|
|
2667
2718
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(21, email_);
|
|
2668
2719
|
}
|
|
2669
|
-
if (((bitField0_ &
|
|
2720
|
+
if (((bitField0_ & 0x00400000) != 0)) {
|
|
2670
2721
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(22, displayName_);
|
|
2671
2722
|
}
|
|
2672
|
-
if (((bitField0_ &
|
|
2723
|
+
if (((bitField0_ & 0x00800000) != 0)) {
|
|
2673
2724
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(23, givenName_);
|
|
2674
2725
|
}
|
|
2675
|
-
if (((bitField0_ &
|
|
2726
|
+
if (((bitField0_ & 0x01000000) != 0)) {
|
|
2676
2727
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(24, surname_);
|
|
2677
2728
|
}
|
|
2678
|
-
if (((bitField0_ &
|
|
2729
|
+
if (((bitField0_ & 0x02000000) != 0)) {
|
|
2679
2730
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(25, telephone_);
|
|
2680
2731
|
}
|
|
2681
|
-
if (((bitField0_ &
|
|
2732
|
+
if (((bitField0_ & 0x04000000) != 0)) {
|
|
2682
2733
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(26, facSimile_);
|
|
2683
2734
|
}
|
|
2684
|
-
if (((bitField0_ &
|
|
2735
|
+
if (((bitField0_ & 0x08000000) != 0)) {
|
|
2685
2736
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(27, mobile_);
|
|
2686
2737
|
}
|
|
2687
|
-
if (((bitField0_ &
|
|
2738
|
+
if (((bitField0_ & 0x10000000) != 0)) {
|
|
2688
2739
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(28, streetAddress_);
|
|
2689
2740
|
}
|
|
2690
|
-
if (((bitField0_ &
|
|
2741
|
+
if (((bitField0_ & 0x20000000) != 0)) {
|
|
2691
2742
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(29, city_);
|
|
2692
2743
|
}
|
|
2693
|
-
if (((bitField0_ &
|
|
2744
|
+
if (((bitField0_ & 0x40000000) != 0)) {
|
|
2694
2745
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(30, country_);
|
|
2695
2746
|
}
|
|
2696
|
-
if (((bitField0_ &
|
|
2747
|
+
if (((bitField0_ & 0x80000000) != 0)) {
|
|
2697
2748
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(31, department_);
|
|
2698
2749
|
}
|
|
2699
|
-
if (((
|
|
2750
|
+
if (((bitField1_ & 0x00000001) != 0)) {
|
|
2700
2751
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(32, deliveryOfficeName_);
|
|
2701
2752
|
}
|
|
2702
|
-
if (((bitField1_ &
|
|
2753
|
+
if (((bitField1_ & 0x00000002) != 0)) {
|
|
2703
2754
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(33, countryAbbreviation_);
|
|
2704
2755
|
}
|
|
2705
|
-
if (((bitField1_ &
|
|
2756
|
+
if (((bitField1_ & 0x00000004) != 0)) {
|
|
2706
2757
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(34, postalCode_);
|
|
2707
2758
|
}
|
|
2708
|
-
if (((bitField1_ &
|
|
2759
|
+
if (((bitField1_ & 0x00000008) != 0)) {
|
|
2709
2760
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(35, countryCode_);
|
|
2710
2761
|
}
|
|
2711
|
-
if (((bitField1_ &
|
|
2762
|
+
if (((bitField1_ & 0x00000010) != 0)) {
|
|
2712
2763
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(36, principalName_);
|
|
2713
2764
|
}
|
|
2714
|
-
if (((bitField1_ &
|
|
2765
|
+
if (((bitField1_ & 0x00000020) != 0)) {
|
|
2715
2766
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(37, title_);
|
|
2716
2767
|
}
|
|
2717
|
-
if (((bitField1_ &
|
|
2768
|
+
if (((bitField1_ & 0x00000040) != 0)) {
|
|
2718
2769
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(38, division_);
|
|
2719
2770
|
}
|
|
2720
|
-
if (((bitField1_ &
|
|
2771
|
+
if (((bitField1_ & 0x00000080) != 0)) {
|
|
2721
2772
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(39, info_);
|
|
2722
2773
|
}
|
|
2723
|
-
if (((bitField1_ &
|
|
2774
|
+
if (((bitField1_ & 0x00000100) != 0)) {
|
|
2724
2775
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(40, homePhone_);
|
|
2725
2776
|
}
|
|
2726
|
-
if (((bitField1_ &
|
|
2777
|
+
if (((bitField1_ & 0x00000200) != 0)) {
|
|
2727
2778
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(41, pager_);
|
|
2728
2779
|
}
|
|
2729
|
-
if (((bitField1_ &
|
|
2780
|
+
if (((bitField1_ & 0x00000400) != 0)) {
|
|
2730
2781
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(42, ipPhone_);
|
|
2731
2782
|
}
|
|
2732
|
-
if (((bitField1_ &
|
|
2783
|
+
if (((bitField1_ & 0x00000800) != 0)) {
|
|
2733
2784
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(43, homePage_);
|
|
2734
2785
|
}
|
|
2735
|
-
if (((bitField1_ &
|
|
2786
|
+
if (((bitField1_ & 0x00001000) != 0)) {
|
|
2736
2787
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(44, postOfficeBox_);
|
|
2737
2788
|
}
|
|
2738
|
-
if (((bitField1_ &
|
|
2789
|
+
if (((bitField1_ & 0x00002000) != 0)) {
|
|
2739
2790
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(45, state_);
|
|
2740
2791
|
}
|
|
2741
|
-
if (((bitField1_ &
|
|
2792
|
+
if (((bitField1_ & 0x00004000) != 0)) {
|
|
2742
2793
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(46, profilePath_);
|
|
2743
2794
|
}
|
|
2744
|
-
if (((bitField1_ &
|
|
2795
|
+
if (((bitField1_ & 0x00008000) != 0)) {
|
|
2745
2796
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(47, scriptPath_);
|
|
2746
2797
|
}
|
|
2747
|
-
if (((bitField1_ &
|
|
2798
|
+
if (((bitField1_ & 0x00010000) != 0)) {
|
|
2748
2799
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(48, homeDirectory_);
|
|
2749
2800
|
}
|
|
2750
|
-
if (((bitField1_ &
|
|
2801
|
+
if (((bitField1_ & 0x00020000) != 0)) {
|
|
2751
2802
|
size += com.google.protobuf.CodedOutputStream
|
|
2752
2803
|
.computeBytesSize(49, thumbnailPhoto_);
|
|
2753
2804
|
}
|
|
2754
|
-
if (((bitField1_ &
|
|
2805
|
+
if (((bitField1_ & 0x00040000) != 0)) {
|
|
2755
2806
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(50, employeeId_);
|
|
2756
2807
|
}
|
|
2757
|
-
if (((bitField1_ &
|
|
2808
|
+
if (((bitField1_ & 0x00080000) != 0)) {
|
|
2758
2809
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(51, employeeNumber_);
|
|
2759
2810
|
}
|
|
2760
|
-
if (((bitField1_ &
|
|
2811
|
+
if (((bitField1_ & 0x00100000) != 0)) {
|
|
2761
2812
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(52, employeeType_);
|
|
2762
2813
|
}
|
|
2763
|
-
if (((bitField1_ &
|
|
2814
|
+
if (((bitField1_ & 0x00200000) != 0)) {
|
|
2764
2815
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(53, initials_);
|
|
2765
2816
|
}
|
|
2766
|
-
if (((bitField1_ &
|
|
2817
|
+
if (((bitField1_ & 0x00400000) != 0)) {
|
|
2767
2818
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(54, middleName_);
|
|
2768
2819
|
}
|
|
2769
|
-
if (((bitField1_ &
|
|
2820
|
+
if (((bitField1_ & 0x00800000) != 0)) {
|
|
2770
2821
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(55, primaryGroupOid_);
|
|
2771
2822
|
}
|
|
2772
|
-
if (((bitField1_ &
|
|
2823
|
+
if (((bitField1_ & 0x01000000) != 0)) {
|
|
2773
2824
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(56, managerOid_);
|
|
2774
2825
|
}
|
|
2775
2826
|
{
|
|
@@ -2780,6 +2831,9 @@ private static final long serialVersionUID = 0L;
|
|
|
2780
2831
|
size += dataSize;
|
|
2781
2832
|
size += 2 * getMemberOfOidList().size();
|
|
2782
2833
|
}
|
|
2834
|
+
if (((bitField0_ & 0x00000010) != 0)) {
|
|
2835
|
+
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(58, domain_);
|
|
2836
|
+
}
|
|
2783
2837
|
size += getUnknownFields().getSerializedSize();
|
|
2784
2838
|
memoizedSize = size;
|
|
2785
2839
|
return size;
|
|
@@ -2815,6 +2869,11 @@ private static final long serialVersionUID = 0L;
|
|
|
2815
2869
|
if (!getOu()
|
|
2816
2870
|
.equals(other.getOu())) return false;
|
|
2817
2871
|
}
|
|
2872
|
+
if (hasDomain() != other.hasDomain()) return false;
|
|
2873
|
+
if (hasDomain()) {
|
|
2874
|
+
if (!getDomain()
|
|
2875
|
+
.equals(other.getDomain())) return false;
|
|
2876
|
+
}
|
|
2818
2877
|
if (hasDescription() != other.hasDescription()) return false;
|
|
2819
2878
|
if (hasDescription()) {
|
|
2820
2879
|
if (!getDescription()
|
|
@@ -3104,6 +3163,10 @@ private static final long serialVersionUID = 0L;
|
|
|
3104
3163
|
hash = (37 * hash) + OU_FIELD_NUMBER;
|
|
3105
3164
|
hash = (53 * hash) + getOu().hashCode();
|
|
3106
3165
|
}
|
|
3166
|
+
if (hasDomain()) {
|
|
3167
|
+
hash = (37 * hash) + DOMAIN_FIELD_NUMBER;
|
|
3168
|
+
hash = (53 * hash) + getDomain().hashCode();
|
|
3169
|
+
}
|
|
3107
3170
|
if (hasDescription()) {
|
|
3108
3171
|
hash = (37 * hash) + DESCRIPTION_FIELD_NUMBER;
|
|
3109
3172
|
hash = (53 * hash) + getDescription().hashCode();
|
|
@@ -3478,6 +3541,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3478
3541
|
samAccountName_ = "";
|
|
3479
3542
|
cn_ = "";
|
|
3480
3543
|
ou_ = "";
|
|
3544
|
+
domain_ = "";
|
|
3481
3545
|
description_ = "";
|
|
3482
3546
|
comment_ = "";
|
|
3483
3547
|
company_ = "";
|
|
@@ -3614,129 +3678,129 @@ private static final long serialVersionUID = 0L;
|
|
|
3614
3678
|
to_bitField0_ |= 0x00000008;
|
|
3615
3679
|
}
|
|
3616
3680
|
if (((from_bitField0_ & 0x00000010) != 0)) {
|
|
3617
|
-
result.
|
|
3681
|
+
result.domain_ = domain_;
|
|
3618
3682
|
to_bitField0_ |= 0x00000010;
|
|
3619
3683
|
}
|
|
3620
3684
|
if (((from_bitField0_ & 0x00000020) != 0)) {
|
|
3621
|
-
result.
|
|
3685
|
+
result.description_ = description_;
|
|
3622
3686
|
to_bitField0_ |= 0x00000020;
|
|
3623
3687
|
}
|
|
3624
3688
|
if (((from_bitField0_ & 0x00000040) != 0)) {
|
|
3625
|
-
result.
|
|
3689
|
+
result.comment_ = comment_;
|
|
3626
3690
|
to_bitField0_ |= 0x00000040;
|
|
3627
3691
|
}
|
|
3628
3692
|
if (((from_bitField0_ & 0x00000080) != 0)) {
|
|
3629
|
-
result.
|
|
3693
|
+
result.company_ = company_;
|
|
3630
3694
|
to_bitField0_ |= 0x00000080;
|
|
3631
3695
|
}
|
|
3632
3696
|
if (((from_bitField0_ & 0x00000100) != 0)) {
|
|
3633
|
-
result.
|
|
3697
|
+
result.primaryGroupId_ = primaryGroupId_;
|
|
3634
3698
|
to_bitField0_ |= 0x00000100;
|
|
3635
3699
|
}
|
|
3636
3700
|
if (((from_bitField0_ & 0x00000200) != 0)) {
|
|
3637
|
-
result.
|
|
3701
|
+
result.enabled_ = enabled_;
|
|
3638
3702
|
to_bitField0_ |= 0x00000200;
|
|
3639
3703
|
}
|
|
3640
3704
|
if (((from_bitField0_ & 0x00000400) != 0)) {
|
|
3705
|
+
result.userAccountControl_ = userAccountControl_;
|
|
3706
|
+
to_bitField0_ |= 0x00000400;
|
|
3707
|
+
}
|
|
3708
|
+
if (((from_bitField0_ & 0x00000800) != 0)) {
|
|
3641
3709
|
result.accountExpires_ = accountExpiresBuilder_ == null
|
|
3642
3710
|
? accountExpires_
|
|
3643
3711
|
: accountExpiresBuilder_.build();
|
|
3644
|
-
to_bitField0_ |=
|
|
3712
|
+
to_bitField0_ |= 0x00000800;
|
|
3645
3713
|
}
|
|
3646
|
-
if (((from_bitField0_ &
|
|
3714
|
+
if (((from_bitField0_ & 0x00001000) != 0)) {
|
|
3647
3715
|
result.lockoutTime_ = lockoutTimeBuilder_ == null
|
|
3648
3716
|
? lockoutTime_
|
|
3649
3717
|
: lockoutTimeBuilder_.build();
|
|
3650
|
-
to_bitField0_ |=
|
|
3718
|
+
to_bitField0_ |= 0x00001000;
|
|
3651
3719
|
}
|
|
3652
|
-
if (((from_bitField0_ &
|
|
3720
|
+
if (((from_bitField0_ & 0x00002000) != 0)) {
|
|
3653
3721
|
result.passwordLastSet_ = passwordLastSetBuilder_ == null
|
|
3654
3722
|
? passwordLastSet_
|
|
3655
3723
|
: passwordLastSetBuilder_.build();
|
|
3656
|
-
to_bitField0_ |=
|
|
3724
|
+
to_bitField0_ |= 0x00002000;
|
|
3657
3725
|
}
|
|
3658
|
-
if (((from_bitField0_ &
|
|
3726
|
+
if (((from_bitField0_ & 0x00004000) != 0)) {
|
|
3659
3727
|
result.lastLogon_ = lastLogonBuilder_ == null
|
|
3660
3728
|
? lastLogon_
|
|
3661
3729
|
: lastLogonBuilder_.build();
|
|
3662
|
-
to_bitField0_ |=
|
|
3730
|
+
to_bitField0_ |= 0x00004000;
|
|
3663
3731
|
}
|
|
3664
|
-
if (((from_bitField0_ &
|
|
3732
|
+
if (((from_bitField0_ & 0x00008000) != 0)) {
|
|
3665
3733
|
result.lockoutDate_ = lockoutDateBuilder_ == null
|
|
3666
3734
|
? lockoutDate_
|
|
3667
3735
|
: lockoutDateBuilder_.build();
|
|
3668
|
-
to_bitField0_ |= 0x00004000;
|
|
3669
|
-
}
|
|
3670
|
-
if (((from_bitField0_ & 0x00008000) != 0)) {
|
|
3671
|
-
result.canUserChangePassword_ = canUserChangePassword_;
|
|
3672
3736
|
to_bitField0_ |= 0x00008000;
|
|
3673
3737
|
}
|
|
3674
3738
|
if (((from_bitField0_ & 0x00010000) != 0)) {
|
|
3675
|
-
result.
|
|
3676
|
-
? passwordExpirationDate_
|
|
3677
|
-
: passwordExpirationDateBuilder_.build();
|
|
3739
|
+
result.canUserChangePassword_ = canUserChangePassword_;
|
|
3678
3740
|
to_bitField0_ |= 0x00010000;
|
|
3679
3741
|
}
|
|
3680
3742
|
if (((from_bitField0_ & 0x00020000) != 0)) {
|
|
3681
|
-
result.
|
|
3743
|
+
result.passwordExpirationDate_ = passwordExpirationDateBuilder_ == null
|
|
3744
|
+
? passwordExpirationDate_
|
|
3745
|
+
: passwordExpirationDateBuilder_.build();
|
|
3682
3746
|
to_bitField0_ |= 0x00020000;
|
|
3683
3747
|
}
|
|
3684
3748
|
if (((from_bitField0_ & 0x00040000) != 0)) {
|
|
3685
|
-
result.
|
|
3749
|
+
result.passwordNeverExpires_ = passwordNeverExpires_;
|
|
3686
3750
|
to_bitField0_ |= 0x00040000;
|
|
3687
3751
|
}
|
|
3688
3752
|
if (((from_bitField0_ & 0x00080000) != 0)) {
|
|
3689
|
-
result.
|
|
3690
|
-
? passwordChangeableDate_
|
|
3691
|
-
: passwordChangeableDateBuilder_.build();
|
|
3753
|
+
result.passwordRequired_ = passwordRequired_;
|
|
3692
3754
|
to_bitField0_ |= 0x00080000;
|
|
3693
3755
|
}
|
|
3694
3756
|
if (((from_bitField0_ & 0x00100000) != 0)) {
|
|
3695
|
-
result.
|
|
3757
|
+
result.passwordChangeableDate_ = passwordChangeableDateBuilder_ == null
|
|
3758
|
+
? passwordChangeableDate_
|
|
3759
|
+
: passwordChangeableDateBuilder_.build();
|
|
3696
3760
|
to_bitField0_ |= 0x00100000;
|
|
3697
3761
|
}
|
|
3698
3762
|
if (((from_bitField0_ & 0x00200000) != 0)) {
|
|
3699
|
-
result.
|
|
3763
|
+
result.email_ = email_;
|
|
3700
3764
|
to_bitField0_ |= 0x00200000;
|
|
3701
3765
|
}
|
|
3702
3766
|
if (((from_bitField0_ & 0x00400000) != 0)) {
|
|
3703
|
-
result.
|
|
3767
|
+
result.displayName_ = displayName_;
|
|
3704
3768
|
to_bitField0_ |= 0x00400000;
|
|
3705
3769
|
}
|
|
3706
3770
|
if (((from_bitField0_ & 0x00800000) != 0)) {
|
|
3707
|
-
result.
|
|
3771
|
+
result.givenName_ = givenName_;
|
|
3708
3772
|
to_bitField0_ |= 0x00800000;
|
|
3709
3773
|
}
|
|
3710
3774
|
if (((from_bitField0_ & 0x01000000) != 0)) {
|
|
3711
|
-
result.
|
|
3775
|
+
result.surname_ = surname_;
|
|
3712
3776
|
to_bitField0_ |= 0x01000000;
|
|
3713
3777
|
}
|
|
3714
3778
|
if (((from_bitField0_ & 0x02000000) != 0)) {
|
|
3715
|
-
result.
|
|
3779
|
+
result.telephone_ = telephone_;
|
|
3716
3780
|
to_bitField0_ |= 0x02000000;
|
|
3717
3781
|
}
|
|
3718
3782
|
if (((from_bitField0_ & 0x04000000) != 0)) {
|
|
3719
|
-
result.
|
|
3783
|
+
result.facSimile_ = facSimile_;
|
|
3720
3784
|
to_bitField0_ |= 0x04000000;
|
|
3721
3785
|
}
|
|
3722
3786
|
if (((from_bitField0_ & 0x08000000) != 0)) {
|
|
3723
|
-
result.
|
|
3787
|
+
result.mobile_ = mobile_;
|
|
3724
3788
|
to_bitField0_ |= 0x08000000;
|
|
3725
3789
|
}
|
|
3726
3790
|
if (((from_bitField0_ & 0x10000000) != 0)) {
|
|
3727
|
-
result.
|
|
3791
|
+
result.streetAddress_ = streetAddress_;
|
|
3728
3792
|
to_bitField0_ |= 0x10000000;
|
|
3729
3793
|
}
|
|
3730
3794
|
if (((from_bitField0_ & 0x20000000) != 0)) {
|
|
3731
|
-
result.
|
|
3795
|
+
result.city_ = city_;
|
|
3732
3796
|
to_bitField0_ |= 0x20000000;
|
|
3733
3797
|
}
|
|
3734
3798
|
if (((from_bitField0_ & 0x40000000) != 0)) {
|
|
3735
|
-
result.
|
|
3799
|
+
result.country_ = country_;
|
|
3736
3800
|
to_bitField0_ |= 0x40000000;
|
|
3737
3801
|
}
|
|
3738
3802
|
if (((from_bitField0_ & 0x80000000) != 0)) {
|
|
3739
|
-
result.
|
|
3803
|
+
result.department_ = department_;
|
|
3740
3804
|
to_bitField0_ |= 0x80000000;
|
|
3741
3805
|
}
|
|
3742
3806
|
result.bitField0_ |= to_bitField0_;
|
|
@@ -3746,102 +3810,106 @@ private static final long serialVersionUID = 0L;
|
|
|
3746
3810
|
int from_bitField1_ = bitField1_;
|
|
3747
3811
|
int to_bitField1_ = 0;
|
|
3748
3812
|
if (((from_bitField1_ & 0x00000001) != 0)) {
|
|
3749
|
-
result.
|
|
3813
|
+
result.deliveryOfficeName_ = deliveryOfficeName_;
|
|
3750
3814
|
to_bitField1_ |= 0x00000001;
|
|
3751
3815
|
}
|
|
3752
3816
|
if (((from_bitField1_ & 0x00000002) != 0)) {
|
|
3753
|
-
result.
|
|
3817
|
+
result.countryAbbreviation_ = countryAbbreviation_;
|
|
3754
3818
|
to_bitField1_ |= 0x00000002;
|
|
3755
3819
|
}
|
|
3756
3820
|
if (((from_bitField1_ & 0x00000004) != 0)) {
|
|
3757
|
-
result.
|
|
3821
|
+
result.postalCode_ = postalCode_;
|
|
3758
3822
|
to_bitField1_ |= 0x00000004;
|
|
3759
3823
|
}
|
|
3760
3824
|
if (((from_bitField1_ & 0x00000008) != 0)) {
|
|
3761
|
-
result.
|
|
3825
|
+
result.countryCode_ = countryCode_;
|
|
3762
3826
|
to_bitField1_ |= 0x00000008;
|
|
3763
3827
|
}
|
|
3764
3828
|
if (((from_bitField1_ & 0x00000010) != 0)) {
|
|
3765
|
-
result.
|
|
3829
|
+
result.principalName_ = principalName_;
|
|
3766
3830
|
to_bitField1_ |= 0x00000010;
|
|
3767
3831
|
}
|
|
3768
3832
|
if (((from_bitField1_ & 0x00000020) != 0)) {
|
|
3769
|
-
result.
|
|
3833
|
+
result.title_ = title_;
|
|
3770
3834
|
to_bitField1_ |= 0x00000020;
|
|
3771
3835
|
}
|
|
3772
3836
|
if (((from_bitField1_ & 0x00000040) != 0)) {
|
|
3773
|
-
result.
|
|
3837
|
+
result.division_ = division_;
|
|
3774
3838
|
to_bitField1_ |= 0x00000040;
|
|
3775
3839
|
}
|
|
3776
3840
|
if (((from_bitField1_ & 0x00000080) != 0)) {
|
|
3777
|
-
result.
|
|
3841
|
+
result.info_ = info_;
|
|
3778
3842
|
to_bitField1_ |= 0x00000080;
|
|
3779
3843
|
}
|
|
3780
3844
|
if (((from_bitField1_ & 0x00000100) != 0)) {
|
|
3781
|
-
result.
|
|
3845
|
+
result.homePhone_ = homePhone_;
|
|
3782
3846
|
to_bitField1_ |= 0x00000100;
|
|
3783
3847
|
}
|
|
3784
3848
|
if (((from_bitField1_ & 0x00000200) != 0)) {
|
|
3785
|
-
result.
|
|
3849
|
+
result.pager_ = pager_;
|
|
3786
3850
|
to_bitField1_ |= 0x00000200;
|
|
3787
3851
|
}
|
|
3788
3852
|
if (((from_bitField1_ & 0x00000400) != 0)) {
|
|
3789
|
-
result.
|
|
3853
|
+
result.ipPhone_ = ipPhone_;
|
|
3790
3854
|
to_bitField1_ |= 0x00000400;
|
|
3791
3855
|
}
|
|
3792
3856
|
if (((from_bitField1_ & 0x00000800) != 0)) {
|
|
3793
|
-
result.
|
|
3857
|
+
result.homePage_ = homePage_;
|
|
3794
3858
|
to_bitField1_ |= 0x00000800;
|
|
3795
3859
|
}
|
|
3796
3860
|
if (((from_bitField1_ & 0x00001000) != 0)) {
|
|
3797
|
-
result.
|
|
3861
|
+
result.postOfficeBox_ = postOfficeBox_;
|
|
3798
3862
|
to_bitField1_ |= 0x00001000;
|
|
3799
3863
|
}
|
|
3800
3864
|
if (((from_bitField1_ & 0x00002000) != 0)) {
|
|
3801
|
-
result.
|
|
3865
|
+
result.state_ = state_;
|
|
3802
3866
|
to_bitField1_ |= 0x00002000;
|
|
3803
3867
|
}
|
|
3804
3868
|
if (((from_bitField1_ & 0x00004000) != 0)) {
|
|
3805
|
-
result.
|
|
3869
|
+
result.profilePath_ = profilePath_;
|
|
3806
3870
|
to_bitField1_ |= 0x00004000;
|
|
3807
3871
|
}
|
|
3808
3872
|
if (((from_bitField1_ & 0x00008000) != 0)) {
|
|
3809
|
-
result.
|
|
3873
|
+
result.scriptPath_ = scriptPath_;
|
|
3810
3874
|
to_bitField1_ |= 0x00008000;
|
|
3811
3875
|
}
|
|
3812
3876
|
if (((from_bitField1_ & 0x00010000) != 0)) {
|
|
3813
|
-
result.
|
|
3877
|
+
result.homeDirectory_ = homeDirectory_;
|
|
3814
3878
|
to_bitField1_ |= 0x00010000;
|
|
3815
3879
|
}
|
|
3816
3880
|
if (((from_bitField1_ & 0x00020000) != 0)) {
|
|
3817
|
-
result.
|
|
3881
|
+
result.thumbnailPhoto_ = thumbnailPhoto_;
|
|
3818
3882
|
to_bitField1_ |= 0x00020000;
|
|
3819
3883
|
}
|
|
3820
3884
|
if (((from_bitField1_ & 0x00040000) != 0)) {
|
|
3821
|
-
result.
|
|
3885
|
+
result.employeeId_ = employeeId_;
|
|
3822
3886
|
to_bitField1_ |= 0x00040000;
|
|
3823
3887
|
}
|
|
3824
3888
|
if (((from_bitField1_ & 0x00080000) != 0)) {
|
|
3825
|
-
result.
|
|
3889
|
+
result.employeeNumber_ = employeeNumber_;
|
|
3826
3890
|
to_bitField1_ |= 0x00080000;
|
|
3827
3891
|
}
|
|
3828
3892
|
if (((from_bitField1_ & 0x00100000) != 0)) {
|
|
3829
|
-
result.
|
|
3893
|
+
result.employeeType_ = employeeType_;
|
|
3830
3894
|
to_bitField1_ |= 0x00100000;
|
|
3831
3895
|
}
|
|
3832
3896
|
if (((from_bitField1_ & 0x00200000) != 0)) {
|
|
3833
|
-
result.
|
|
3897
|
+
result.initials_ = initials_;
|
|
3834
3898
|
to_bitField1_ |= 0x00200000;
|
|
3835
3899
|
}
|
|
3836
3900
|
if (((from_bitField1_ & 0x00400000) != 0)) {
|
|
3837
|
-
result.
|
|
3901
|
+
result.middleName_ = middleName_;
|
|
3838
3902
|
to_bitField1_ |= 0x00400000;
|
|
3839
3903
|
}
|
|
3840
3904
|
if (((from_bitField1_ & 0x00800000) != 0)) {
|
|
3841
|
-
result.
|
|
3905
|
+
result.primaryGroupOid_ = primaryGroupOid_;
|
|
3842
3906
|
to_bitField1_ |= 0x00800000;
|
|
3843
3907
|
}
|
|
3844
3908
|
if (((from_bitField1_ & 0x01000000) != 0)) {
|
|
3909
|
+
result.managerOid_ = managerOid_;
|
|
3910
|
+
to_bitField1_ |= 0x01000000;
|
|
3911
|
+
}
|
|
3912
|
+
if (((from_bitField1_ & 0x02000000) != 0)) {
|
|
3845
3913
|
memberOfOid_.makeImmutable();
|
|
3846
3914
|
result.memberOfOid_ = memberOfOid_;
|
|
3847
3915
|
}
|
|
@@ -3910,19 +3978,24 @@ private static final long serialVersionUID = 0L;
|
|
|
3910
3978
|
bitField0_ |= 0x00000008;
|
|
3911
3979
|
onChanged();
|
|
3912
3980
|
}
|
|
3981
|
+
if (other.hasDomain()) {
|
|
3982
|
+
domain_ = other.domain_;
|
|
3983
|
+
bitField0_ |= 0x00000010;
|
|
3984
|
+
onChanged();
|
|
3985
|
+
}
|
|
3913
3986
|
if (other.hasDescription()) {
|
|
3914
3987
|
description_ = other.description_;
|
|
3915
|
-
bitField0_ |=
|
|
3988
|
+
bitField0_ |= 0x00000020;
|
|
3916
3989
|
onChanged();
|
|
3917
3990
|
}
|
|
3918
3991
|
if (other.hasComment()) {
|
|
3919
3992
|
comment_ = other.comment_;
|
|
3920
|
-
bitField0_ |=
|
|
3993
|
+
bitField0_ |= 0x00000040;
|
|
3921
3994
|
onChanged();
|
|
3922
3995
|
}
|
|
3923
3996
|
if (other.hasCompany()) {
|
|
3924
3997
|
company_ = other.company_;
|
|
3925
|
-
bitField0_ |=
|
|
3998
|
+
bitField0_ |= 0x00000080;
|
|
3926
3999
|
onChanged();
|
|
3927
4000
|
}
|
|
3928
4001
|
if (other.hasPrimaryGroupId()) {
|
|
@@ -3966,142 +4039,142 @@ private static final long serialVersionUID = 0L;
|
|
|
3966
4039
|
}
|
|
3967
4040
|
if (other.hasEmail()) {
|
|
3968
4041
|
email_ = other.email_;
|
|
3969
|
-
bitField0_ |=
|
|
4042
|
+
bitField0_ |= 0x00200000;
|
|
3970
4043
|
onChanged();
|
|
3971
4044
|
}
|
|
3972
4045
|
if (other.hasDisplayName()) {
|
|
3973
4046
|
displayName_ = other.displayName_;
|
|
3974
|
-
bitField0_ |=
|
|
4047
|
+
bitField0_ |= 0x00400000;
|
|
3975
4048
|
onChanged();
|
|
3976
4049
|
}
|
|
3977
4050
|
if (other.hasGivenName()) {
|
|
3978
4051
|
givenName_ = other.givenName_;
|
|
3979
|
-
bitField0_ |=
|
|
4052
|
+
bitField0_ |= 0x00800000;
|
|
3980
4053
|
onChanged();
|
|
3981
4054
|
}
|
|
3982
4055
|
if (other.hasSurname()) {
|
|
3983
4056
|
surname_ = other.surname_;
|
|
3984
|
-
bitField0_ |=
|
|
4057
|
+
bitField0_ |= 0x01000000;
|
|
3985
4058
|
onChanged();
|
|
3986
4059
|
}
|
|
3987
4060
|
if (other.hasTelephone()) {
|
|
3988
4061
|
telephone_ = other.telephone_;
|
|
3989
|
-
bitField0_ |=
|
|
4062
|
+
bitField0_ |= 0x02000000;
|
|
3990
4063
|
onChanged();
|
|
3991
4064
|
}
|
|
3992
4065
|
if (other.hasFacSimile()) {
|
|
3993
4066
|
facSimile_ = other.facSimile_;
|
|
3994
|
-
bitField0_ |=
|
|
4067
|
+
bitField0_ |= 0x04000000;
|
|
3995
4068
|
onChanged();
|
|
3996
4069
|
}
|
|
3997
4070
|
if (other.hasMobile()) {
|
|
3998
4071
|
mobile_ = other.mobile_;
|
|
3999
|
-
bitField0_ |=
|
|
4072
|
+
bitField0_ |= 0x08000000;
|
|
4000
4073
|
onChanged();
|
|
4001
4074
|
}
|
|
4002
4075
|
if (other.hasStreetAddress()) {
|
|
4003
4076
|
streetAddress_ = other.streetAddress_;
|
|
4004
|
-
bitField0_ |=
|
|
4077
|
+
bitField0_ |= 0x10000000;
|
|
4005
4078
|
onChanged();
|
|
4006
4079
|
}
|
|
4007
4080
|
if (other.hasCity()) {
|
|
4008
4081
|
city_ = other.city_;
|
|
4009
|
-
bitField0_ |=
|
|
4082
|
+
bitField0_ |= 0x20000000;
|
|
4010
4083
|
onChanged();
|
|
4011
4084
|
}
|
|
4012
4085
|
if (other.hasCountry()) {
|
|
4013
4086
|
country_ = other.country_;
|
|
4014
|
-
bitField0_ |=
|
|
4087
|
+
bitField0_ |= 0x40000000;
|
|
4015
4088
|
onChanged();
|
|
4016
4089
|
}
|
|
4017
4090
|
if (other.hasDepartment()) {
|
|
4018
4091
|
department_ = other.department_;
|
|
4019
|
-
bitField0_ |=
|
|
4092
|
+
bitField0_ |= 0x80000000;
|
|
4020
4093
|
onChanged();
|
|
4021
4094
|
}
|
|
4022
4095
|
if (other.hasDeliveryOfficeName()) {
|
|
4023
4096
|
deliveryOfficeName_ = other.deliveryOfficeName_;
|
|
4024
|
-
|
|
4097
|
+
bitField1_ |= 0x00000001;
|
|
4025
4098
|
onChanged();
|
|
4026
4099
|
}
|
|
4027
4100
|
if (other.hasCountryAbbreviation()) {
|
|
4028
4101
|
countryAbbreviation_ = other.countryAbbreviation_;
|
|
4029
|
-
bitField1_ |=
|
|
4102
|
+
bitField1_ |= 0x00000002;
|
|
4030
4103
|
onChanged();
|
|
4031
4104
|
}
|
|
4032
4105
|
if (other.hasPostalCode()) {
|
|
4033
4106
|
postalCode_ = other.postalCode_;
|
|
4034
|
-
bitField1_ |=
|
|
4107
|
+
bitField1_ |= 0x00000004;
|
|
4035
4108
|
onChanged();
|
|
4036
4109
|
}
|
|
4037
4110
|
if (other.hasCountryCode()) {
|
|
4038
4111
|
countryCode_ = other.countryCode_;
|
|
4039
|
-
bitField1_ |=
|
|
4112
|
+
bitField1_ |= 0x00000008;
|
|
4040
4113
|
onChanged();
|
|
4041
4114
|
}
|
|
4042
4115
|
if (other.hasPrincipalName()) {
|
|
4043
4116
|
principalName_ = other.principalName_;
|
|
4044
|
-
bitField1_ |=
|
|
4117
|
+
bitField1_ |= 0x00000010;
|
|
4045
4118
|
onChanged();
|
|
4046
4119
|
}
|
|
4047
4120
|
if (other.hasTitle()) {
|
|
4048
4121
|
title_ = other.title_;
|
|
4049
|
-
bitField1_ |=
|
|
4122
|
+
bitField1_ |= 0x00000020;
|
|
4050
4123
|
onChanged();
|
|
4051
4124
|
}
|
|
4052
4125
|
if (other.hasDivision()) {
|
|
4053
4126
|
division_ = other.division_;
|
|
4054
|
-
bitField1_ |=
|
|
4127
|
+
bitField1_ |= 0x00000040;
|
|
4055
4128
|
onChanged();
|
|
4056
4129
|
}
|
|
4057
4130
|
if (other.hasInfo()) {
|
|
4058
4131
|
info_ = other.info_;
|
|
4059
|
-
bitField1_ |=
|
|
4132
|
+
bitField1_ |= 0x00000080;
|
|
4060
4133
|
onChanged();
|
|
4061
4134
|
}
|
|
4062
4135
|
if (other.hasHomePhone()) {
|
|
4063
4136
|
homePhone_ = other.homePhone_;
|
|
4064
|
-
bitField1_ |=
|
|
4137
|
+
bitField1_ |= 0x00000100;
|
|
4065
4138
|
onChanged();
|
|
4066
4139
|
}
|
|
4067
4140
|
if (other.hasPager()) {
|
|
4068
4141
|
pager_ = other.pager_;
|
|
4069
|
-
bitField1_ |=
|
|
4142
|
+
bitField1_ |= 0x00000200;
|
|
4070
4143
|
onChanged();
|
|
4071
4144
|
}
|
|
4072
4145
|
if (other.hasIpPhone()) {
|
|
4073
4146
|
ipPhone_ = other.ipPhone_;
|
|
4074
|
-
bitField1_ |=
|
|
4147
|
+
bitField1_ |= 0x00000400;
|
|
4075
4148
|
onChanged();
|
|
4076
4149
|
}
|
|
4077
4150
|
if (other.hasHomePage()) {
|
|
4078
4151
|
homePage_ = other.homePage_;
|
|
4079
|
-
bitField1_ |=
|
|
4152
|
+
bitField1_ |= 0x00000800;
|
|
4080
4153
|
onChanged();
|
|
4081
4154
|
}
|
|
4082
4155
|
if (other.hasPostOfficeBox()) {
|
|
4083
4156
|
postOfficeBox_ = other.postOfficeBox_;
|
|
4084
|
-
bitField1_ |=
|
|
4157
|
+
bitField1_ |= 0x00001000;
|
|
4085
4158
|
onChanged();
|
|
4086
4159
|
}
|
|
4087
4160
|
if (other.hasState()) {
|
|
4088
4161
|
state_ = other.state_;
|
|
4089
|
-
bitField1_ |=
|
|
4162
|
+
bitField1_ |= 0x00002000;
|
|
4090
4163
|
onChanged();
|
|
4091
4164
|
}
|
|
4092
4165
|
if (other.hasProfilePath()) {
|
|
4093
4166
|
profilePath_ = other.profilePath_;
|
|
4094
|
-
bitField1_ |=
|
|
4167
|
+
bitField1_ |= 0x00004000;
|
|
4095
4168
|
onChanged();
|
|
4096
4169
|
}
|
|
4097
4170
|
if (other.hasScriptPath()) {
|
|
4098
4171
|
scriptPath_ = other.scriptPath_;
|
|
4099
|
-
bitField1_ |=
|
|
4172
|
+
bitField1_ |= 0x00008000;
|
|
4100
4173
|
onChanged();
|
|
4101
4174
|
}
|
|
4102
4175
|
if (other.hasHomeDirectory()) {
|
|
4103
4176
|
homeDirectory_ = other.homeDirectory_;
|
|
4104
|
-
bitField1_ |=
|
|
4177
|
+
bitField1_ |= 0x00010000;
|
|
4105
4178
|
onChanged();
|
|
4106
4179
|
}
|
|
4107
4180
|
if (other.hasThumbnailPhoto()) {
|
|
@@ -4109,43 +4182,43 @@ private static final long serialVersionUID = 0L;
|
|
|
4109
4182
|
}
|
|
4110
4183
|
if (other.hasEmployeeId()) {
|
|
4111
4184
|
employeeId_ = other.employeeId_;
|
|
4112
|
-
bitField1_ |=
|
|
4185
|
+
bitField1_ |= 0x00040000;
|
|
4113
4186
|
onChanged();
|
|
4114
4187
|
}
|
|
4115
4188
|
if (other.hasEmployeeNumber()) {
|
|
4116
4189
|
employeeNumber_ = other.employeeNumber_;
|
|
4117
|
-
bitField1_ |=
|
|
4190
|
+
bitField1_ |= 0x00080000;
|
|
4118
4191
|
onChanged();
|
|
4119
4192
|
}
|
|
4120
4193
|
if (other.hasEmployeeType()) {
|
|
4121
4194
|
employeeType_ = other.employeeType_;
|
|
4122
|
-
bitField1_ |=
|
|
4195
|
+
bitField1_ |= 0x00100000;
|
|
4123
4196
|
onChanged();
|
|
4124
4197
|
}
|
|
4125
4198
|
if (other.hasInitials()) {
|
|
4126
4199
|
initials_ = other.initials_;
|
|
4127
|
-
bitField1_ |=
|
|
4200
|
+
bitField1_ |= 0x00200000;
|
|
4128
4201
|
onChanged();
|
|
4129
4202
|
}
|
|
4130
4203
|
if (other.hasMiddleName()) {
|
|
4131
4204
|
middleName_ = other.middleName_;
|
|
4132
|
-
bitField1_ |=
|
|
4205
|
+
bitField1_ |= 0x00400000;
|
|
4133
4206
|
onChanged();
|
|
4134
4207
|
}
|
|
4135
4208
|
if (other.hasPrimaryGroupOid()) {
|
|
4136
4209
|
primaryGroupOid_ = other.primaryGroupOid_;
|
|
4137
|
-
bitField1_ |=
|
|
4210
|
+
bitField1_ |= 0x00800000;
|
|
4138
4211
|
onChanged();
|
|
4139
4212
|
}
|
|
4140
4213
|
if (other.hasManagerOid()) {
|
|
4141
4214
|
managerOid_ = other.managerOid_;
|
|
4142
|
-
bitField1_ |=
|
|
4215
|
+
bitField1_ |= 0x01000000;
|
|
4143
4216
|
onChanged();
|
|
4144
4217
|
}
|
|
4145
4218
|
if (!other.memberOfOid_.isEmpty()) {
|
|
4146
4219
|
if (memberOfOid_.isEmpty()) {
|
|
4147
4220
|
memberOfOid_ = other.memberOfOid_;
|
|
4148
|
-
bitField1_ |=
|
|
4221
|
+
bitField1_ |= 0x02000000;
|
|
4149
4222
|
} else {
|
|
4150
4223
|
ensureMemberOfOidIsMutable();
|
|
4151
4224
|
memberOfOid_.addAll(other.memberOfOid_);
|
|
@@ -4202,276 +4275,276 @@ private static final long serialVersionUID = 0L;
|
|
|
4202
4275
|
} // case 34
|
|
4203
4276
|
case 42: {
|
|
4204
4277
|
description_ = input.readStringRequireUtf8();
|
|
4205
|
-
bitField0_ |=
|
|
4278
|
+
bitField0_ |= 0x00000020;
|
|
4206
4279
|
break;
|
|
4207
4280
|
} // case 42
|
|
4208
4281
|
case 50: {
|
|
4209
4282
|
comment_ = input.readStringRequireUtf8();
|
|
4210
|
-
bitField0_ |=
|
|
4283
|
+
bitField0_ |= 0x00000040;
|
|
4211
4284
|
break;
|
|
4212
4285
|
} // case 50
|
|
4213
4286
|
case 58: {
|
|
4214
4287
|
company_ = input.readStringRequireUtf8();
|
|
4215
|
-
bitField0_ |=
|
|
4288
|
+
bitField0_ |= 0x00000080;
|
|
4216
4289
|
break;
|
|
4217
4290
|
} // case 58
|
|
4218
4291
|
case 64: {
|
|
4219
4292
|
primaryGroupId_ = input.readInt32();
|
|
4220
|
-
bitField0_ |=
|
|
4293
|
+
bitField0_ |= 0x00000100;
|
|
4221
4294
|
break;
|
|
4222
4295
|
} // case 64
|
|
4223
4296
|
case 72: {
|
|
4224
4297
|
enabled_ = input.readBool();
|
|
4225
|
-
bitField0_ |=
|
|
4298
|
+
bitField0_ |= 0x00000200;
|
|
4226
4299
|
break;
|
|
4227
4300
|
} // case 72
|
|
4228
4301
|
case 80: {
|
|
4229
4302
|
userAccountControl_ = input.readInt32();
|
|
4230
|
-
bitField0_ |=
|
|
4303
|
+
bitField0_ |= 0x00000400;
|
|
4231
4304
|
break;
|
|
4232
4305
|
} // case 80
|
|
4233
4306
|
case 90: {
|
|
4234
4307
|
input.readMessage(
|
|
4235
4308
|
getAccountExpiresFieldBuilder().getBuilder(),
|
|
4236
4309
|
extensionRegistry);
|
|
4237
|
-
bitField0_ |=
|
|
4310
|
+
bitField0_ |= 0x00000800;
|
|
4238
4311
|
break;
|
|
4239
4312
|
} // case 90
|
|
4240
4313
|
case 98: {
|
|
4241
4314
|
input.readMessage(
|
|
4242
4315
|
getLockoutTimeFieldBuilder().getBuilder(),
|
|
4243
4316
|
extensionRegistry);
|
|
4244
|
-
bitField0_ |=
|
|
4317
|
+
bitField0_ |= 0x00001000;
|
|
4245
4318
|
break;
|
|
4246
4319
|
} // case 98
|
|
4247
4320
|
case 106: {
|
|
4248
4321
|
input.readMessage(
|
|
4249
4322
|
getPasswordLastSetFieldBuilder().getBuilder(),
|
|
4250
4323
|
extensionRegistry);
|
|
4251
|
-
bitField0_ |=
|
|
4324
|
+
bitField0_ |= 0x00002000;
|
|
4252
4325
|
break;
|
|
4253
4326
|
} // case 106
|
|
4254
4327
|
case 114: {
|
|
4255
4328
|
input.readMessage(
|
|
4256
4329
|
getLastLogonFieldBuilder().getBuilder(),
|
|
4257
4330
|
extensionRegistry);
|
|
4258
|
-
bitField0_ |=
|
|
4331
|
+
bitField0_ |= 0x00004000;
|
|
4259
4332
|
break;
|
|
4260
4333
|
} // case 114
|
|
4261
4334
|
case 122: {
|
|
4262
4335
|
input.readMessage(
|
|
4263
4336
|
getLockoutDateFieldBuilder().getBuilder(),
|
|
4264
4337
|
extensionRegistry);
|
|
4265
|
-
bitField0_ |=
|
|
4338
|
+
bitField0_ |= 0x00008000;
|
|
4266
4339
|
break;
|
|
4267
4340
|
} // case 122
|
|
4268
4341
|
case 128: {
|
|
4269
4342
|
canUserChangePassword_ = input.readBool();
|
|
4270
|
-
bitField0_ |=
|
|
4343
|
+
bitField0_ |= 0x00010000;
|
|
4271
4344
|
break;
|
|
4272
4345
|
} // case 128
|
|
4273
4346
|
case 138: {
|
|
4274
4347
|
input.readMessage(
|
|
4275
4348
|
getPasswordExpirationDateFieldBuilder().getBuilder(),
|
|
4276
4349
|
extensionRegistry);
|
|
4277
|
-
bitField0_ |=
|
|
4350
|
+
bitField0_ |= 0x00020000;
|
|
4278
4351
|
break;
|
|
4279
4352
|
} // case 138
|
|
4280
4353
|
case 144: {
|
|
4281
4354
|
passwordNeverExpires_ = input.readBool();
|
|
4282
|
-
bitField0_ |=
|
|
4355
|
+
bitField0_ |= 0x00040000;
|
|
4283
4356
|
break;
|
|
4284
4357
|
} // case 144
|
|
4285
4358
|
case 152: {
|
|
4286
4359
|
passwordRequired_ = input.readBool();
|
|
4287
|
-
bitField0_ |=
|
|
4360
|
+
bitField0_ |= 0x00080000;
|
|
4288
4361
|
break;
|
|
4289
4362
|
} // case 152
|
|
4290
4363
|
case 162: {
|
|
4291
4364
|
input.readMessage(
|
|
4292
4365
|
getPasswordChangeableDateFieldBuilder().getBuilder(),
|
|
4293
4366
|
extensionRegistry);
|
|
4294
|
-
bitField0_ |=
|
|
4367
|
+
bitField0_ |= 0x00100000;
|
|
4295
4368
|
break;
|
|
4296
4369
|
} // case 162
|
|
4297
4370
|
case 170: {
|
|
4298
4371
|
email_ = input.readStringRequireUtf8();
|
|
4299
|
-
bitField0_ |=
|
|
4372
|
+
bitField0_ |= 0x00200000;
|
|
4300
4373
|
break;
|
|
4301
4374
|
} // case 170
|
|
4302
4375
|
case 178: {
|
|
4303
4376
|
displayName_ = input.readStringRequireUtf8();
|
|
4304
|
-
bitField0_ |=
|
|
4377
|
+
bitField0_ |= 0x00400000;
|
|
4305
4378
|
break;
|
|
4306
4379
|
} // case 178
|
|
4307
4380
|
case 186: {
|
|
4308
4381
|
givenName_ = input.readStringRequireUtf8();
|
|
4309
|
-
bitField0_ |=
|
|
4382
|
+
bitField0_ |= 0x00800000;
|
|
4310
4383
|
break;
|
|
4311
4384
|
} // case 186
|
|
4312
4385
|
case 194: {
|
|
4313
4386
|
surname_ = input.readStringRequireUtf8();
|
|
4314
|
-
bitField0_ |=
|
|
4387
|
+
bitField0_ |= 0x01000000;
|
|
4315
4388
|
break;
|
|
4316
4389
|
} // case 194
|
|
4317
4390
|
case 202: {
|
|
4318
4391
|
telephone_ = input.readStringRequireUtf8();
|
|
4319
|
-
bitField0_ |=
|
|
4392
|
+
bitField0_ |= 0x02000000;
|
|
4320
4393
|
break;
|
|
4321
4394
|
} // case 202
|
|
4322
4395
|
case 210: {
|
|
4323
4396
|
facSimile_ = input.readStringRequireUtf8();
|
|
4324
|
-
bitField0_ |=
|
|
4397
|
+
bitField0_ |= 0x04000000;
|
|
4325
4398
|
break;
|
|
4326
4399
|
} // case 210
|
|
4327
4400
|
case 218: {
|
|
4328
4401
|
mobile_ = input.readStringRequireUtf8();
|
|
4329
|
-
bitField0_ |=
|
|
4402
|
+
bitField0_ |= 0x08000000;
|
|
4330
4403
|
break;
|
|
4331
4404
|
} // case 218
|
|
4332
4405
|
case 226: {
|
|
4333
4406
|
streetAddress_ = input.readStringRequireUtf8();
|
|
4334
|
-
bitField0_ |=
|
|
4407
|
+
bitField0_ |= 0x10000000;
|
|
4335
4408
|
break;
|
|
4336
4409
|
} // case 226
|
|
4337
4410
|
case 234: {
|
|
4338
4411
|
city_ = input.readStringRequireUtf8();
|
|
4339
|
-
bitField0_ |=
|
|
4412
|
+
bitField0_ |= 0x20000000;
|
|
4340
4413
|
break;
|
|
4341
4414
|
} // case 234
|
|
4342
4415
|
case 242: {
|
|
4343
4416
|
country_ = input.readStringRequireUtf8();
|
|
4344
|
-
bitField0_ |=
|
|
4417
|
+
bitField0_ |= 0x40000000;
|
|
4345
4418
|
break;
|
|
4346
4419
|
} // case 242
|
|
4347
4420
|
case 250: {
|
|
4348
4421
|
department_ = input.readStringRequireUtf8();
|
|
4349
|
-
bitField0_ |=
|
|
4422
|
+
bitField0_ |= 0x80000000;
|
|
4350
4423
|
break;
|
|
4351
4424
|
} // case 250
|
|
4352
4425
|
case 258: {
|
|
4353
4426
|
deliveryOfficeName_ = input.readStringRequireUtf8();
|
|
4354
|
-
|
|
4427
|
+
bitField1_ |= 0x00000001;
|
|
4355
4428
|
break;
|
|
4356
4429
|
} // case 258
|
|
4357
4430
|
case 266: {
|
|
4358
4431
|
countryAbbreviation_ = input.readStringRequireUtf8();
|
|
4359
|
-
bitField1_ |=
|
|
4432
|
+
bitField1_ |= 0x00000002;
|
|
4360
4433
|
break;
|
|
4361
4434
|
} // case 266
|
|
4362
4435
|
case 274: {
|
|
4363
4436
|
postalCode_ = input.readStringRequireUtf8();
|
|
4364
|
-
bitField1_ |=
|
|
4437
|
+
bitField1_ |= 0x00000004;
|
|
4365
4438
|
break;
|
|
4366
4439
|
} // case 274
|
|
4367
4440
|
case 282: {
|
|
4368
4441
|
countryCode_ = input.readStringRequireUtf8();
|
|
4369
|
-
bitField1_ |=
|
|
4442
|
+
bitField1_ |= 0x00000008;
|
|
4370
4443
|
break;
|
|
4371
4444
|
} // case 282
|
|
4372
4445
|
case 290: {
|
|
4373
4446
|
principalName_ = input.readStringRequireUtf8();
|
|
4374
|
-
bitField1_ |=
|
|
4447
|
+
bitField1_ |= 0x00000010;
|
|
4375
4448
|
break;
|
|
4376
4449
|
} // case 290
|
|
4377
4450
|
case 298: {
|
|
4378
4451
|
title_ = input.readStringRequireUtf8();
|
|
4379
|
-
bitField1_ |=
|
|
4452
|
+
bitField1_ |= 0x00000020;
|
|
4380
4453
|
break;
|
|
4381
4454
|
} // case 298
|
|
4382
4455
|
case 306: {
|
|
4383
4456
|
division_ = input.readStringRequireUtf8();
|
|
4384
|
-
bitField1_ |=
|
|
4457
|
+
bitField1_ |= 0x00000040;
|
|
4385
4458
|
break;
|
|
4386
4459
|
} // case 306
|
|
4387
4460
|
case 314: {
|
|
4388
4461
|
info_ = input.readStringRequireUtf8();
|
|
4389
|
-
bitField1_ |=
|
|
4462
|
+
bitField1_ |= 0x00000080;
|
|
4390
4463
|
break;
|
|
4391
4464
|
} // case 314
|
|
4392
4465
|
case 322: {
|
|
4393
4466
|
homePhone_ = input.readStringRequireUtf8();
|
|
4394
|
-
bitField1_ |=
|
|
4467
|
+
bitField1_ |= 0x00000100;
|
|
4395
4468
|
break;
|
|
4396
4469
|
} // case 322
|
|
4397
4470
|
case 330: {
|
|
4398
4471
|
pager_ = input.readStringRequireUtf8();
|
|
4399
|
-
bitField1_ |=
|
|
4472
|
+
bitField1_ |= 0x00000200;
|
|
4400
4473
|
break;
|
|
4401
4474
|
} // case 330
|
|
4402
4475
|
case 338: {
|
|
4403
4476
|
ipPhone_ = input.readStringRequireUtf8();
|
|
4404
|
-
bitField1_ |=
|
|
4477
|
+
bitField1_ |= 0x00000400;
|
|
4405
4478
|
break;
|
|
4406
4479
|
} // case 338
|
|
4407
4480
|
case 346: {
|
|
4408
4481
|
homePage_ = input.readStringRequireUtf8();
|
|
4409
|
-
bitField1_ |=
|
|
4482
|
+
bitField1_ |= 0x00000800;
|
|
4410
4483
|
break;
|
|
4411
4484
|
} // case 346
|
|
4412
4485
|
case 354: {
|
|
4413
4486
|
postOfficeBox_ = input.readStringRequireUtf8();
|
|
4414
|
-
bitField1_ |=
|
|
4487
|
+
bitField1_ |= 0x00001000;
|
|
4415
4488
|
break;
|
|
4416
4489
|
} // case 354
|
|
4417
4490
|
case 362: {
|
|
4418
4491
|
state_ = input.readStringRequireUtf8();
|
|
4419
|
-
bitField1_ |=
|
|
4492
|
+
bitField1_ |= 0x00002000;
|
|
4420
4493
|
break;
|
|
4421
4494
|
} // case 362
|
|
4422
4495
|
case 370: {
|
|
4423
4496
|
profilePath_ = input.readStringRequireUtf8();
|
|
4424
|
-
bitField1_ |=
|
|
4497
|
+
bitField1_ |= 0x00004000;
|
|
4425
4498
|
break;
|
|
4426
4499
|
} // case 370
|
|
4427
4500
|
case 378: {
|
|
4428
4501
|
scriptPath_ = input.readStringRequireUtf8();
|
|
4429
|
-
bitField1_ |=
|
|
4502
|
+
bitField1_ |= 0x00008000;
|
|
4430
4503
|
break;
|
|
4431
4504
|
} // case 378
|
|
4432
4505
|
case 386: {
|
|
4433
4506
|
homeDirectory_ = input.readStringRequireUtf8();
|
|
4434
|
-
bitField1_ |=
|
|
4507
|
+
bitField1_ |= 0x00010000;
|
|
4435
4508
|
break;
|
|
4436
4509
|
} // case 386
|
|
4437
4510
|
case 394: {
|
|
4438
4511
|
thumbnailPhoto_ = input.readBytes();
|
|
4439
|
-
bitField1_ |=
|
|
4512
|
+
bitField1_ |= 0x00020000;
|
|
4440
4513
|
break;
|
|
4441
4514
|
} // case 394
|
|
4442
4515
|
case 402: {
|
|
4443
4516
|
employeeId_ = input.readStringRequireUtf8();
|
|
4444
|
-
bitField1_ |=
|
|
4517
|
+
bitField1_ |= 0x00040000;
|
|
4445
4518
|
break;
|
|
4446
4519
|
} // case 402
|
|
4447
4520
|
case 410: {
|
|
4448
4521
|
employeeNumber_ = input.readStringRequireUtf8();
|
|
4449
|
-
bitField1_ |=
|
|
4522
|
+
bitField1_ |= 0x00080000;
|
|
4450
4523
|
break;
|
|
4451
4524
|
} // case 410
|
|
4452
4525
|
case 418: {
|
|
4453
4526
|
employeeType_ = input.readStringRequireUtf8();
|
|
4454
|
-
bitField1_ |=
|
|
4527
|
+
bitField1_ |= 0x00100000;
|
|
4455
4528
|
break;
|
|
4456
4529
|
} // case 418
|
|
4457
4530
|
case 426: {
|
|
4458
4531
|
initials_ = input.readStringRequireUtf8();
|
|
4459
|
-
bitField1_ |=
|
|
4532
|
+
bitField1_ |= 0x00200000;
|
|
4460
4533
|
break;
|
|
4461
4534
|
} // case 426
|
|
4462
4535
|
case 434: {
|
|
4463
4536
|
middleName_ = input.readStringRequireUtf8();
|
|
4464
|
-
bitField1_ |=
|
|
4537
|
+
bitField1_ |= 0x00400000;
|
|
4465
4538
|
break;
|
|
4466
4539
|
} // case 434
|
|
4467
4540
|
case 442: {
|
|
4468
4541
|
primaryGroupOid_ = input.readStringRequireUtf8();
|
|
4469
|
-
bitField1_ |=
|
|
4542
|
+
bitField1_ |= 0x00800000;
|
|
4470
4543
|
break;
|
|
4471
4544
|
} // case 442
|
|
4472
4545
|
case 450: {
|
|
4473
4546
|
managerOid_ = input.readStringRequireUtf8();
|
|
4474
|
-
bitField1_ |=
|
|
4547
|
+
bitField1_ |= 0x01000000;
|
|
4475
4548
|
break;
|
|
4476
4549
|
} // case 450
|
|
4477
4550
|
case 458: {
|
|
@@ -4480,6 +4553,11 @@ private static final long serialVersionUID = 0L;
|
|
|
4480
4553
|
memberOfOid_.add(s);
|
|
4481
4554
|
break;
|
|
4482
4555
|
} // case 458
|
|
4556
|
+
case 466: {
|
|
4557
|
+
domain_ = input.readStringRequireUtf8();
|
|
4558
|
+
bitField0_ |= 0x00000010;
|
|
4559
|
+
break;
|
|
4560
|
+
} // case 466
|
|
4483
4561
|
default: {
|
|
4484
4562
|
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
|
|
4485
4563
|
done = true; // was an endgroup tag
|
|
@@ -4856,13 +4934,92 @@ private static final long serialVersionUID = 0L;
|
|
|
4856
4934
|
return this;
|
|
4857
4935
|
}
|
|
4858
4936
|
|
|
4937
|
+
private java.lang.Object domain_ = "";
|
|
4938
|
+
/**
|
|
4939
|
+
* <code>optional string domain = 58;</code>
|
|
4940
|
+
* @return Whether the domain field is set.
|
|
4941
|
+
*/
|
|
4942
|
+
public boolean hasDomain() {
|
|
4943
|
+
return ((bitField0_ & 0x00000010) != 0);
|
|
4944
|
+
}
|
|
4945
|
+
/**
|
|
4946
|
+
* <code>optional string domain = 58;</code>
|
|
4947
|
+
* @return The domain.
|
|
4948
|
+
*/
|
|
4949
|
+
public java.lang.String getDomain() {
|
|
4950
|
+
java.lang.Object ref = domain_;
|
|
4951
|
+
if (!(ref instanceof java.lang.String)) {
|
|
4952
|
+
com.google.protobuf.ByteString bs =
|
|
4953
|
+
(com.google.protobuf.ByteString) ref;
|
|
4954
|
+
java.lang.String s = bs.toStringUtf8();
|
|
4955
|
+
domain_ = s;
|
|
4956
|
+
return s;
|
|
4957
|
+
} else {
|
|
4958
|
+
return (java.lang.String) ref;
|
|
4959
|
+
}
|
|
4960
|
+
}
|
|
4961
|
+
/**
|
|
4962
|
+
* <code>optional string domain = 58;</code>
|
|
4963
|
+
* @return The bytes for domain.
|
|
4964
|
+
*/
|
|
4965
|
+
public com.google.protobuf.ByteString
|
|
4966
|
+
getDomainBytes() {
|
|
4967
|
+
java.lang.Object ref = domain_;
|
|
4968
|
+
if (ref instanceof String) {
|
|
4969
|
+
com.google.protobuf.ByteString b =
|
|
4970
|
+
com.google.protobuf.ByteString.copyFromUtf8(
|
|
4971
|
+
(java.lang.String) ref);
|
|
4972
|
+
domain_ = b;
|
|
4973
|
+
return b;
|
|
4974
|
+
} else {
|
|
4975
|
+
return (com.google.protobuf.ByteString) ref;
|
|
4976
|
+
}
|
|
4977
|
+
}
|
|
4978
|
+
/**
|
|
4979
|
+
* <code>optional string domain = 58;</code>
|
|
4980
|
+
* @param value The domain to set.
|
|
4981
|
+
* @return This builder for chaining.
|
|
4982
|
+
*/
|
|
4983
|
+
public Builder setDomain(
|
|
4984
|
+
java.lang.String value) {
|
|
4985
|
+
if (value == null) { throw new NullPointerException(); }
|
|
4986
|
+
domain_ = value;
|
|
4987
|
+
bitField0_ |= 0x00000010;
|
|
4988
|
+
onChanged();
|
|
4989
|
+
return this;
|
|
4990
|
+
}
|
|
4991
|
+
/**
|
|
4992
|
+
* <code>optional string domain = 58;</code>
|
|
4993
|
+
* @return This builder for chaining.
|
|
4994
|
+
*/
|
|
4995
|
+
public Builder clearDomain() {
|
|
4996
|
+
domain_ = getDefaultInstance().getDomain();
|
|
4997
|
+
bitField0_ = (bitField0_ & ~0x00000010);
|
|
4998
|
+
onChanged();
|
|
4999
|
+
return this;
|
|
5000
|
+
}
|
|
5001
|
+
/**
|
|
5002
|
+
* <code>optional string domain = 58;</code>
|
|
5003
|
+
* @param value The bytes for domain to set.
|
|
5004
|
+
* @return This builder for chaining.
|
|
5005
|
+
*/
|
|
5006
|
+
public Builder setDomainBytes(
|
|
5007
|
+
com.google.protobuf.ByteString value) {
|
|
5008
|
+
if (value == null) { throw new NullPointerException(); }
|
|
5009
|
+
checkByteStringIsUtf8(value);
|
|
5010
|
+
domain_ = value;
|
|
5011
|
+
bitField0_ |= 0x00000010;
|
|
5012
|
+
onChanged();
|
|
5013
|
+
return this;
|
|
5014
|
+
}
|
|
5015
|
+
|
|
4859
5016
|
private java.lang.Object description_ = "";
|
|
4860
5017
|
/**
|
|
4861
5018
|
* <code>optional string description = 5;</code>
|
|
4862
5019
|
* @return Whether the description field is set.
|
|
4863
5020
|
*/
|
|
4864
5021
|
public boolean hasDescription() {
|
|
4865
|
-
return ((bitField0_ &
|
|
5022
|
+
return ((bitField0_ & 0x00000020) != 0);
|
|
4866
5023
|
}
|
|
4867
5024
|
/**
|
|
4868
5025
|
* <code>optional string description = 5;</code>
|
|
@@ -4906,7 +5063,7 @@ private static final long serialVersionUID = 0L;
|
|
|
4906
5063
|
java.lang.String value) {
|
|
4907
5064
|
if (value == null) { throw new NullPointerException(); }
|
|
4908
5065
|
description_ = value;
|
|
4909
|
-
bitField0_ |=
|
|
5066
|
+
bitField0_ |= 0x00000020;
|
|
4910
5067
|
onChanged();
|
|
4911
5068
|
return this;
|
|
4912
5069
|
}
|
|
@@ -4916,7 +5073,7 @@ private static final long serialVersionUID = 0L;
|
|
|
4916
5073
|
*/
|
|
4917
5074
|
public Builder clearDescription() {
|
|
4918
5075
|
description_ = getDefaultInstance().getDescription();
|
|
4919
|
-
bitField0_ = (bitField0_ & ~
|
|
5076
|
+
bitField0_ = (bitField0_ & ~0x00000020);
|
|
4920
5077
|
onChanged();
|
|
4921
5078
|
return this;
|
|
4922
5079
|
}
|
|
@@ -4930,7 +5087,7 @@ private static final long serialVersionUID = 0L;
|
|
|
4930
5087
|
if (value == null) { throw new NullPointerException(); }
|
|
4931
5088
|
checkByteStringIsUtf8(value);
|
|
4932
5089
|
description_ = value;
|
|
4933
|
-
bitField0_ |=
|
|
5090
|
+
bitField0_ |= 0x00000020;
|
|
4934
5091
|
onChanged();
|
|
4935
5092
|
return this;
|
|
4936
5093
|
}
|
|
@@ -4941,7 +5098,7 @@ private static final long serialVersionUID = 0L;
|
|
|
4941
5098
|
* @return Whether the comment field is set.
|
|
4942
5099
|
*/
|
|
4943
5100
|
public boolean hasComment() {
|
|
4944
|
-
return ((bitField0_ &
|
|
5101
|
+
return ((bitField0_ & 0x00000040) != 0);
|
|
4945
5102
|
}
|
|
4946
5103
|
/**
|
|
4947
5104
|
* <code>optional string comment = 6;</code>
|
|
@@ -4985,7 +5142,7 @@ private static final long serialVersionUID = 0L;
|
|
|
4985
5142
|
java.lang.String value) {
|
|
4986
5143
|
if (value == null) { throw new NullPointerException(); }
|
|
4987
5144
|
comment_ = value;
|
|
4988
|
-
bitField0_ |=
|
|
5145
|
+
bitField0_ |= 0x00000040;
|
|
4989
5146
|
onChanged();
|
|
4990
5147
|
return this;
|
|
4991
5148
|
}
|
|
@@ -4995,7 +5152,7 @@ private static final long serialVersionUID = 0L;
|
|
|
4995
5152
|
*/
|
|
4996
5153
|
public Builder clearComment() {
|
|
4997
5154
|
comment_ = getDefaultInstance().getComment();
|
|
4998
|
-
bitField0_ = (bitField0_ & ~
|
|
5155
|
+
bitField0_ = (bitField0_ & ~0x00000040);
|
|
4999
5156
|
onChanged();
|
|
5000
5157
|
return this;
|
|
5001
5158
|
}
|
|
@@ -5009,7 +5166,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5009
5166
|
if (value == null) { throw new NullPointerException(); }
|
|
5010
5167
|
checkByteStringIsUtf8(value);
|
|
5011
5168
|
comment_ = value;
|
|
5012
|
-
bitField0_ |=
|
|
5169
|
+
bitField0_ |= 0x00000040;
|
|
5013
5170
|
onChanged();
|
|
5014
5171
|
return this;
|
|
5015
5172
|
}
|
|
@@ -5020,7 +5177,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5020
5177
|
* @return Whether the company field is set.
|
|
5021
5178
|
*/
|
|
5022
5179
|
public boolean hasCompany() {
|
|
5023
|
-
return ((bitField0_ &
|
|
5180
|
+
return ((bitField0_ & 0x00000080) != 0);
|
|
5024
5181
|
}
|
|
5025
5182
|
/**
|
|
5026
5183
|
* <code>optional string company = 7;</code>
|
|
@@ -5064,7 +5221,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5064
5221
|
java.lang.String value) {
|
|
5065
5222
|
if (value == null) { throw new NullPointerException(); }
|
|
5066
5223
|
company_ = value;
|
|
5067
|
-
bitField0_ |=
|
|
5224
|
+
bitField0_ |= 0x00000080;
|
|
5068
5225
|
onChanged();
|
|
5069
5226
|
return this;
|
|
5070
5227
|
}
|
|
@@ -5074,7 +5231,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5074
5231
|
*/
|
|
5075
5232
|
public Builder clearCompany() {
|
|
5076
5233
|
company_ = getDefaultInstance().getCompany();
|
|
5077
|
-
bitField0_ = (bitField0_ & ~
|
|
5234
|
+
bitField0_ = (bitField0_ & ~0x00000080);
|
|
5078
5235
|
onChanged();
|
|
5079
5236
|
return this;
|
|
5080
5237
|
}
|
|
@@ -5088,7 +5245,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5088
5245
|
if (value == null) { throw new NullPointerException(); }
|
|
5089
5246
|
checkByteStringIsUtf8(value);
|
|
5090
5247
|
company_ = value;
|
|
5091
|
-
bitField0_ |=
|
|
5248
|
+
bitField0_ |= 0x00000080;
|
|
5092
5249
|
onChanged();
|
|
5093
5250
|
return this;
|
|
5094
5251
|
}
|
|
@@ -5100,7 +5257,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5100
5257
|
*/
|
|
5101
5258
|
@java.lang.Override
|
|
5102
5259
|
public boolean hasPrimaryGroupId() {
|
|
5103
|
-
return ((bitField0_ &
|
|
5260
|
+
return ((bitField0_ & 0x00000100) != 0);
|
|
5104
5261
|
}
|
|
5105
5262
|
/**
|
|
5106
5263
|
* <code>optional int32 primary_group_id = 8;</code>
|
|
@@ -5118,7 +5275,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5118
5275
|
public Builder setPrimaryGroupId(int value) {
|
|
5119
5276
|
|
|
5120
5277
|
primaryGroupId_ = value;
|
|
5121
|
-
bitField0_ |=
|
|
5278
|
+
bitField0_ |= 0x00000100;
|
|
5122
5279
|
onChanged();
|
|
5123
5280
|
return this;
|
|
5124
5281
|
}
|
|
@@ -5127,7 +5284,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5127
5284
|
* @return This builder for chaining.
|
|
5128
5285
|
*/
|
|
5129
5286
|
public Builder clearPrimaryGroupId() {
|
|
5130
|
-
bitField0_ = (bitField0_ & ~
|
|
5287
|
+
bitField0_ = (bitField0_ & ~0x00000100);
|
|
5131
5288
|
primaryGroupId_ = 0;
|
|
5132
5289
|
onChanged();
|
|
5133
5290
|
return this;
|
|
@@ -5140,7 +5297,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5140
5297
|
*/
|
|
5141
5298
|
@java.lang.Override
|
|
5142
5299
|
public boolean hasEnabled() {
|
|
5143
|
-
return ((bitField0_ &
|
|
5300
|
+
return ((bitField0_ & 0x00000200) != 0);
|
|
5144
5301
|
}
|
|
5145
5302
|
/**
|
|
5146
5303
|
* <code>optional bool enabled = 9;</code>
|
|
@@ -5158,7 +5315,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5158
5315
|
public Builder setEnabled(boolean value) {
|
|
5159
5316
|
|
|
5160
5317
|
enabled_ = value;
|
|
5161
|
-
bitField0_ |=
|
|
5318
|
+
bitField0_ |= 0x00000200;
|
|
5162
5319
|
onChanged();
|
|
5163
5320
|
return this;
|
|
5164
5321
|
}
|
|
@@ -5167,7 +5324,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5167
5324
|
* @return This builder for chaining.
|
|
5168
5325
|
*/
|
|
5169
5326
|
public Builder clearEnabled() {
|
|
5170
|
-
bitField0_ = (bitField0_ & ~
|
|
5327
|
+
bitField0_ = (bitField0_ & ~0x00000200);
|
|
5171
5328
|
enabled_ = false;
|
|
5172
5329
|
onChanged();
|
|
5173
5330
|
return this;
|
|
@@ -5180,7 +5337,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5180
5337
|
*/
|
|
5181
5338
|
@java.lang.Override
|
|
5182
5339
|
public boolean hasUserAccountControl() {
|
|
5183
|
-
return ((bitField0_ &
|
|
5340
|
+
return ((bitField0_ & 0x00000400) != 0);
|
|
5184
5341
|
}
|
|
5185
5342
|
/**
|
|
5186
5343
|
* <code>optional int32 user_account_control = 10;</code>
|
|
@@ -5198,7 +5355,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5198
5355
|
public Builder setUserAccountControl(int value) {
|
|
5199
5356
|
|
|
5200
5357
|
userAccountControl_ = value;
|
|
5201
|
-
bitField0_ |=
|
|
5358
|
+
bitField0_ |= 0x00000400;
|
|
5202
5359
|
onChanged();
|
|
5203
5360
|
return this;
|
|
5204
5361
|
}
|
|
@@ -5207,7 +5364,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5207
5364
|
* @return This builder for chaining.
|
|
5208
5365
|
*/
|
|
5209
5366
|
public Builder clearUserAccountControl() {
|
|
5210
|
-
bitField0_ = (bitField0_ & ~
|
|
5367
|
+
bitField0_ = (bitField0_ & ~0x00000400);
|
|
5211
5368
|
userAccountControl_ = 0;
|
|
5212
5369
|
onChanged();
|
|
5213
5370
|
return this;
|
|
@@ -5221,7 +5378,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5221
5378
|
* @return Whether the accountExpires field is set.
|
|
5222
5379
|
*/
|
|
5223
5380
|
public boolean hasAccountExpires() {
|
|
5224
|
-
return ((bitField0_ &
|
|
5381
|
+
return ((bitField0_ & 0x00000800) != 0);
|
|
5225
5382
|
}
|
|
5226
5383
|
/**
|
|
5227
5384
|
* <code>optional .google.protobuf.Timestamp account_expires = 11;</code>
|
|
@@ -5246,7 +5403,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5246
5403
|
} else {
|
|
5247
5404
|
accountExpiresBuilder_.setMessage(value);
|
|
5248
5405
|
}
|
|
5249
|
-
bitField0_ |=
|
|
5406
|
+
bitField0_ |= 0x00000800;
|
|
5250
5407
|
onChanged();
|
|
5251
5408
|
return this;
|
|
5252
5409
|
}
|
|
@@ -5260,7 +5417,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5260
5417
|
} else {
|
|
5261
5418
|
accountExpiresBuilder_.setMessage(builderForValue.build());
|
|
5262
5419
|
}
|
|
5263
|
-
bitField0_ |=
|
|
5420
|
+
bitField0_ |= 0x00000800;
|
|
5264
5421
|
onChanged();
|
|
5265
5422
|
return this;
|
|
5266
5423
|
}
|
|
@@ -5269,7 +5426,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5269
5426
|
*/
|
|
5270
5427
|
public Builder mergeAccountExpires(com.google.protobuf.Timestamp value) {
|
|
5271
5428
|
if (accountExpiresBuilder_ == null) {
|
|
5272
|
-
if (((bitField0_ &
|
|
5429
|
+
if (((bitField0_ & 0x00000800) != 0) &&
|
|
5273
5430
|
accountExpires_ != null &&
|
|
5274
5431
|
accountExpires_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
5275
5432
|
getAccountExpiresBuilder().mergeFrom(value);
|
|
@@ -5280,7 +5437,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5280
5437
|
accountExpiresBuilder_.mergeFrom(value);
|
|
5281
5438
|
}
|
|
5282
5439
|
if (accountExpires_ != null) {
|
|
5283
|
-
bitField0_ |=
|
|
5440
|
+
bitField0_ |= 0x00000800;
|
|
5284
5441
|
onChanged();
|
|
5285
5442
|
}
|
|
5286
5443
|
return this;
|
|
@@ -5289,7 +5446,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5289
5446
|
* <code>optional .google.protobuf.Timestamp account_expires = 11;</code>
|
|
5290
5447
|
*/
|
|
5291
5448
|
public Builder clearAccountExpires() {
|
|
5292
|
-
bitField0_ = (bitField0_ & ~
|
|
5449
|
+
bitField0_ = (bitField0_ & ~0x00000800);
|
|
5293
5450
|
accountExpires_ = null;
|
|
5294
5451
|
if (accountExpiresBuilder_ != null) {
|
|
5295
5452
|
accountExpiresBuilder_.dispose();
|
|
@@ -5302,7 +5459,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5302
5459
|
* <code>optional .google.protobuf.Timestamp account_expires = 11;</code>
|
|
5303
5460
|
*/
|
|
5304
5461
|
public com.google.protobuf.Timestamp.Builder getAccountExpiresBuilder() {
|
|
5305
|
-
bitField0_ |=
|
|
5462
|
+
bitField0_ |= 0x00000800;
|
|
5306
5463
|
onChanged();
|
|
5307
5464
|
return getAccountExpiresFieldBuilder().getBuilder();
|
|
5308
5465
|
}
|
|
@@ -5342,7 +5499,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5342
5499
|
* @return Whether the lockoutTime field is set.
|
|
5343
5500
|
*/
|
|
5344
5501
|
public boolean hasLockoutTime() {
|
|
5345
|
-
return ((bitField0_ &
|
|
5502
|
+
return ((bitField0_ & 0x00001000) != 0);
|
|
5346
5503
|
}
|
|
5347
5504
|
/**
|
|
5348
5505
|
* <code>optional .google.protobuf.Timestamp lockout_time = 12;</code>
|
|
@@ -5367,7 +5524,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5367
5524
|
} else {
|
|
5368
5525
|
lockoutTimeBuilder_.setMessage(value);
|
|
5369
5526
|
}
|
|
5370
|
-
bitField0_ |=
|
|
5527
|
+
bitField0_ |= 0x00001000;
|
|
5371
5528
|
onChanged();
|
|
5372
5529
|
return this;
|
|
5373
5530
|
}
|
|
@@ -5381,7 +5538,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5381
5538
|
} else {
|
|
5382
5539
|
lockoutTimeBuilder_.setMessage(builderForValue.build());
|
|
5383
5540
|
}
|
|
5384
|
-
bitField0_ |=
|
|
5541
|
+
bitField0_ |= 0x00001000;
|
|
5385
5542
|
onChanged();
|
|
5386
5543
|
return this;
|
|
5387
5544
|
}
|
|
@@ -5390,7 +5547,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5390
5547
|
*/
|
|
5391
5548
|
public Builder mergeLockoutTime(com.google.protobuf.Timestamp value) {
|
|
5392
5549
|
if (lockoutTimeBuilder_ == null) {
|
|
5393
|
-
if (((bitField0_ &
|
|
5550
|
+
if (((bitField0_ & 0x00001000) != 0) &&
|
|
5394
5551
|
lockoutTime_ != null &&
|
|
5395
5552
|
lockoutTime_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
5396
5553
|
getLockoutTimeBuilder().mergeFrom(value);
|
|
@@ -5401,7 +5558,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5401
5558
|
lockoutTimeBuilder_.mergeFrom(value);
|
|
5402
5559
|
}
|
|
5403
5560
|
if (lockoutTime_ != null) {
|
|
5404
|
-
bitField0_ |=
|
|
5561
|
+
bitField0_ |= 0x00001000;
|
|
5405
5562
|
onChanged();
|
|
5406
5563
|
}
|
|
5407
5564
|
return this;
|
|
@@ -5410,7 +5567,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5410
5567
|
* <code>optional .google.protobuf.Timestamp lockout_time = 12;</code>
|
|
5411
5568
|
*/
|
|
5412
5569
|
public Builder clearLockoutTime() {
|
|
5413
|
-
bitField0_ = (bitField0_ & ~
|
|
5570
|
+
bitField0_ = (bitField0_ & ~0x00001000);
|
|
5414
5571
|
lockoutTime_ = null;
|
|
5415
5572
|
if (lockoutTimeBuilder_ != null) {
|
|
5416
5573
|
lockoutTimeBuilder_.dispose();
|
|
@@ -5423,7 +5580,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5423
5580
|
* <code>optional .google.protobuf.Timestamp lockout_time = 12;</code>
|
|
5424
5581
|
*/
|
|
5425
5582
|
public com.google.protobuf.Timestamp.Builder getLockoutTimeBuilder() {
|
|
5426
|
-
bitField0_ |=
|
|
5583
|
+
bitField0_ |= 0x00001000;
|
|
5427
5584
|
onChanged();
|
|
5428
5585
|
return getLockoutTimeFieldBuilder().getBuilder();
|
|
5429
5586
|
}
|
|
@@ -5463,7 +5620,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5463
5620
|
* @return Whether the passwordLastSet field is set.
|
|
5464
5621
|
*/
|
|
5465
5622
|
public boolean hasPasswordLastSet() {
|
|
5466
|
-
return ((bitField0_ &
|
|
5623
|
+
return ((bitField0_ & 0x00002000) != 0);
|
|
5467
5624
|
}
|
|
5468
5625
|
/**
|
|
5469
5626
|
* <code>optional .google.protobuf.Timestamp password_last_set = 13;</code>
|
|
@@ -5488,7 +5645,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5488
5645
|
} else {
|
|
5489
5646
|
passwordLastSetBuilder_.setMessage(value);
|
|
5490
5647
|
}
|
|
5491
|
-
bitField0_ |=
|
|
5648
|
+
bitField0_ |= 0x00002000;
|
|
5492
5649
|
onChanged();
|
|
5493
5650
|
return this;
|
|
5494
5651
|
}
|
|
@@ -5502,7 +5659,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5502
5659
|
} else {
|
|
5503
5660
|
passwordLastSetBuilder_.setMessage(builderForValue.build());
|
|
5504
5661
|
}
|
|
5505
|
-
bitField0_ |=
|
|
5662
|
+
bitField0_ |= 0x00002000;
|
|
5506
5663
|
onChanged();
|
|
5507
5664
|
return this;
|
|
5508
5665
|
}
|
|
@@ -5511,7 +5668,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5511
5668
|
*/
|
|
5512
5669
|
public Builder mergePasswordLastSet(com.google.protobuf.Timestamp value) {
|
|
5513
5670
|
if (passwordLastSetBuilder_ == null) {
|
|
5514
|
-
if (((bitField0_ &
|
|
5671
|
+
if (((bitField0_ & 0x00002000) != 0) &&
|
|
5515
5672
|
passwordLastSet_ != null &&
|
|
5516
5673
|
passwordLastSet_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
5517
5674
|
getPasswordLastSetBuilder().mergeFrom(value);
|
|
@@ -5522,7 +5679,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5522
5679
|
passwordLastSetBuilder_.mergeFrom(value);
|
|
5523
5680
|
}
|
|
5524
5681
|
if (passwordLastSet_ != null) {
|
|
5525
|
-
bitField0_ |=
|
|
5682
|
+
bitField0_ |= 0x00002000;
|
|
5526
5683
|
onChanged();
|
|
5527
5684
|
}
|
|
5528
5685
|
return this;
|
|
@@ -5531,7 +5688,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5531
5688
|
* <code>optional .google.protobuf.Timestamp password_last_set = 13;</code>
|
|
5532
5689
|
*/
|
|
5533
5690
|
public Builder clearPasswordLastSet() {
|
|
5534
|
-
bitField0_ = (bitField0_ & ~
|
|
5691
|
+
bitField0_ = (bitField0_ & ~0x00002000);
|
|
5535
5692
|
passwordLastSet_ = null;
|
|
5536
5693
|
if (passwordLastSetBuilder_ != null) {
|
|
5537
5694
|
passwordLastSetBuilder_.dispose();
|
|
@@ -5544,7 +5701,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5544
5701
|
* <code>optional .google.protobuf.Timestamp password_last_set = 13;</code>
|
|
5545
5702
|
*/
|
|
5546
5703
|
public com.google.protobuf.Timestamp.Builder getPasswordLastSetBuilder() {
|
|
5547
|
-
bitField0_ |=
|
|
5704
|
+
bitField0_ |= 0x00002000;
|
|
5548
5705
|
onChanged();
|
|
5549
5706
|
return getPasswordLastSetFieldBuilder().getBuilder();
|
|
5550
5707
|
}
|
|
@@ -5584,7 +5741,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5584
5741
|
* @return Whether the lastLogon field is set.
|
|
5585
5742
|
*/
|
|
5586
5743
|
public boolean hasLastLogon() {
|
|
5587
|
-
return ((bitField0_ &
|
|
5744
|
+
return ((bitField0_ & 0x00004000) != 0);
|
|
5588
5745
|
}
|
|
5589
5746
|
/**
|
|
5590
5747
|
* <code>optional .google.protobuf.Timestamp last_logon = 14;</code>
|
|
@@ -5609,7 +5766,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5609
5766
|
} else {
|
|
5610
5767
|
lastLogonBuilder_.setMessage(value);
|
|
5611
5768
|
}
|
|
5612
|
-
bitField0_ |=
|
|
5769
|
+
bitField0_ |= 0x00004000;
|
|
5613
5770
|
onChanged();
|
|
5614
5771
|
return this;
|
|
5615
5772
|
}
|
|
@@ -5623,7 +5780,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5623
5780
|
} else {
|
|
5624
5781
|
lastLogonBuilder_.setMessage(builderForValue.build());
|
|
5625
5782
|
}
|
|
5626
|
-
bitField0_ |=
|
|
5783
|
+
bitField0_ |= 0x00004000;
|
|
5627
5784
|
onChanged();
|
|
5628
5785
|
return this;
|
|
5629
5786
|
}
|
|
@@ -5632,7 +5789,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5632
5789
|
*/
|
|
5633
5790
|
public Builder mergeLastLogon(com.google.protobuf.Timestamp value) {
|
|
5634
5791
|
if (lastLogonBuilder_ == null) {
|
|
5635
|
-
if (((bitField0_ &
|
|
5792
|
+
if (((bitField0_ & 0x00004000) != 0) &&
|
|
5636
5793
|
lastLogon_ != null &&
|
|
5637
5794
|
lastLogon_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
5638
5795
|
getLastLogonBuilder().mergeFrom(value);
|
|
@@ -5643,7 +5800,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5643
5800
|
lastLogonBuilder_.mergeFrom(value);
|
|
5644
5801
|
}
|
|
5645
5802
|
if (lastLogon_ != null) {
|
|
5646
|
-
bitField0_ |=
|
|
5803
|
+
bitField0_ |= 0x00004000;
|
|
5647
5804
|
onChanged();
|
|
5648
5805
|
}
|
|
5649
5806
|
return this;
|
|
@@ -5652,7 +5809,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5652
5809
|
* <code>optional .google.protobuf.Timestamp last_logon = 14;</code>
|
|
5653
5810
|
*/
|
|
5654
5811
|
public Builder clearLastLogon() {
|
|
5655
|
-
bitField0_ = (bitField0_ & ~
|
|
5812
|
+
bitField0_ = (bitField0_ & ~0x00004000);
|
|
5656
5813
|
lastLogon_ = null;
|
|
5657
5814
|
if (lastLogonBuilder_ != null) {
|
|
5658
5815
|
lastLogonBuilder_.dispose();
|
|
@@ -5665,7 +5822,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5665
5822
|
* <code>optional .google.protobuf.Timestamp last_logon = 14;</code>
|
|
5666
5823
|
*/
|
|
5667
5824
|
public com.google.protobuf.Timestamp.Builder getLastLogonBuilder() {
|
|
5668
|
-
bitField0_ |=
|
|
5825
|
+
bitField0_ |= 0x00004000;
|
|
5669
5826
|
onChanged();
|
|
5670
5827
|
return getLastLogonFieldBuilder().getBuilder();
|
|
5671
5828
|
}
|
|
@@ -5705,7 +5862,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5705
5862
|
* @return Whether the lockoutDate field is set.
|
|
5706
5863
|
*/
|
|
5707
5864
|
public boolean hasLockoutDate() {
|
|
5708
|
-
return ((bitField0_ &
|
|
5865
|
+
return ((bitField0_ & 0x00008000) != 0);
|
|
5709
5866
|
}
|
|
5710
5867
|
/**
|
|
5711
5868
|
* <code>optional .google.protobuf.Timestamp lockout_date = 15;</code>
|
|
@@ -5730,7 +5887,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5730
5887
|
} else {
|
|
5731
5888
|
lockoutDateBuilder_.setMessage(value);
|
|
5732
5889
|
}
|
|
5733
|
-
bitField0_ |=
|
|
5890
|
+
bitField0_ |= 0x00008000;
|
|
5734
5891
|
onChanged();
|
|
5735
5892
|
return this;
|
|
5736
5893
|
}
|
|
@@ -5744,7 +5901,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5744
5901
|
} else {
|
|
5745
5902
|
lockoutDateBuilder_.setMessage(builderForValue.build());
|
|
5746
5903
|
}
|
|
5747
|
-
bitField0_ |=
|
|
5904
|
+
bitField0_ |= 0x00008000;
|
|
5748
5905
|
onChanged();
|
|
5749
5906
|
return this;
|
|
5750
5907
|
}
|
|
@@ -5753,7 +5910,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5753
5910
|
*/
|
|
5754
5911
|
public Builder mergeLockoutDate(com.google.protobuf.Timestamp value) {
|
|
5755
5912
|
if (lockoutDateBuilder_ == null) {
|
|
5756
|
-
if (((bitField0_ &
|
|
5913
|
+
if (((bitField0_ & 0x00008000) != 0) &&
|
|
5757
5914
|
lockoutDate_ != null &&
|
|
5758
5915
|
lockoutDate_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
5759
5916
|
getLockoutDateBuilder().mergeFrom(value);
|
|
@@ -5764,7 +5921,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5764
5921
|
lockoutDateBuilder_.mergeFrom(value);
|
|
5765
5922
|
}
|
|
5766
5923
|
if (lockoutDate_ != null) {
|
|
5767
|
-
bitField0_ |=
|
|
5924
|
+
bitField0_ |= 0x00008000;
|
|
5768
5925
|
onChanged();
|
|
5769
5926
|
}
|
|
5770
5927
|
return this;
|
|
@@ -5773,7 +5930,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5773
5930
|
* <code>optional .google.protobuf.Timestamp lockout_date = 15;</code>
|
|
5774
5931
|
*/
|
|
5775
5932
|
public Builder clearLockoutDate() {
|
|
5776
|
-
bitField0_ = (bitField0_ & ~
|
|
5933
|
+
bitField0_ = (bitField0_ & ~0x00008000);
|
|
5777
5934
|
lockoutDate_ = null;
|
|
5778
5935
|
if (lockoutDateBuilder_ != null) {
|
|
5779
5936
|
lockoutDateBuilder_.dispose();
|
|
@@ -5786,7 +5943,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5786
5943
|
* <code>optional .google.protobuf.Timestamp lockout_date = 15;</code>
|
|
5787
5944
|
*/
|
|
5788
5945
|
public com.google.protobuf.Timestamp.Builder getLockoutDateBuilder() {
|
|
5789
|
-
bitField0_ |=
|
|
5946
|
+
bitField0_ |= 0x00008000;
|
|
5790
5947
|
onChanged();
|
|
5791
5948
|
return getLockoutDateFieldBuilder().getBuilder();
|
|
5792
5949
|
}
|
|
@@ -5825,7 +5982,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5825
5982
|
*/
|
|
5826
5983
|
@java.lang.Override
|
|
5827
5984
|
public boolean hasCanUserChangePassword() {
|
|
5828
|
-
return ((bitField0_ &
|
|
5985
|
+
return ((bitField0_ & 0x00010000) != 0);
|
|
5829
5986
|
}
|
|
5830
5987
|
/**
|
|
5831
5988
|
* <code>optional bool can_user_change_password = 16;</code>
|
|
@@ -5843,7 +6000,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5843
6000
|
public Builder setCanUserChangePassword(boolean value) {
|
|
5844
6001
|
|
|
5845
6002
|
canUserChangePassword_ = value;
|
|
5846
|
-
bitField0_ |=
|
|
6003
|
+
bitField0_ |= 0x00010000;
|
|
5847
6004
|
onChanged();
|
|
5848
6005
|
return this;
|
|
5849
6006
|
}
|
|
@@ -5852,7 +6009,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5852
6009
|
* @return This builder for chaining.
|
|
5853
6010
|
*/
|
|
5854
6011
|
public Builder clearCanUserChangePassword() {
|
|
5855
|
-
bitField0_ = (bitField0_ & ~
|
|
6012
|
+
bitField0_ = (bitField0_ & ~0x00010000);
|
|
5856
6013
|
canUserChangePassword_ = false;
|
|
5857
6014
|
onChanged();
|
|
5858
6015
|
return this;
|
|
@@ -5866,7 +6023,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5866
6023
|
* @return Whether the passwordExpirationDate field is set.
|
|
5867
6024
|
*/
|
|
5868
6025
|
public boolean hasPasswordExpirationDate() {
|
|
5869
|
-
return ((bitField0_ &
|
|
6026
|
+
return ((bitField0_ & 0x00020000) != 0);
|
|
5870
6027
|
}
|
|
5871
6028
|
/**
|
|
5872
6029
|
* <code>optional .google.protobuf.Timestamp password_expiration_date = 17;</code>
|
|
@@ -5891,7 +6048,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5891
6048
|
} else {
|
|
5892
6049
|
passwordExpirationDateBuilder_.setMessage(value);
|
|
5893
6050
|
}
|
|
5894
|
-
bitField0_ |=
|
|
6051
|
+
bitField0_ |= 0x00020000;
|
|
5895
6052
|
onChanged();
|
|
5896
6053
|
return this;
|
|
5897
6054
|
}
|
|
@@ -5905,7 +6062,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5905
6062
|
} else {
|
|
5906
6063
|
passwordExpirationDateBuilder_.setMessage(builderForValue.build());
|
|
5907
6064
|
}
|
|
5908
|
-
bitField0_ |=
|
|
6065
|
+
bitField0_ |= 0x00020000;
|
|
5909
6066
|
onChanged();
|
|
5910
6067
|
return this;
|
|
5911
6068
|
}
|
|
@@ -5914,7 +6071,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5914
6071
|
*/
|
|
5915
6072
|
public Builder mergePasswordExpirationDate(com.google.protobuf.Timestamp value) {
|
|
5916
6073
|
if (passwordExpirationDateBuilder_ == null) {
|
|
5917
|
-
if (((bitField0_ &
|
|
6074
|
+
if (((bitField0_ & 0x00020000) != 0) &&
|
|
5918
6075
|
passwordExpirationDate_ != null &&
|
|
5919
6076
|
passwordExpirationDate_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
5920
6077
|
getPasswordExpirationDateBuilder().mergeFrom(value);
|
|
@@ -5925,7 +6082,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5925
6082
|
passwordExpirationDateBuilder_.mergeFrom(value);
|
|
5926
6083
|
}
|
|
5927
6084
|
if (passwordExpirationDate_ != null) {
|
|
5928
|
-
bitField0_ |=
|
|
6085
|
+
bitField0_ |= 0x00020000;
|
|
5929
6086
|
onChanged();
|
|
5930
6087
|
}
|
|
5931
6088
|
return this;
|
|
@@ -5934,7 +6091,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5934
6091
|
* <code>optional .google.protobuf.Timestamp password_expiration_date = 17;</code>
|
|
5935
6092
|
*/
|
|
5936
6093
|
public Builder clearPasswordExpirationDate() {
|
|
5937
|
-
bitField0_ = (bitField0_ & ~
|
|
6094
|
+
bitField0_ = (bitField0_ & ~0x00020000);
|
|
5938
6095
|
passwordExpirationDate_ = null;
|
|
5939
6096
|
if (passwordExpirationDateBuilder_ != null) {
|
|
5940
6097
|
passwordExpirationDateBuilder_.dispose();
|
|
@@ -5947,7 +6104,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5947
6104
|
* <code>optional .google.protobuf.Timestamp password_expiration_date = 17;</code>
|
|
5948
6105
|
*/
|
|
5949
6106
|
public com.google.protobuf.Timestamp.Builder getPasswordExpirationDateBuilder() {
|
|
5950
|
-
bitField0_ |=
|
|
6107
|
+
bitField0_ |= 0x00020000;
|
|
5951
6108
|
onChanged();
|
|
5952
6109
|
return getPasswordExpirationDateFieldBuilder().getBuilder();
|
|
5953
6110
|
}
|
|
@@ -5986,7 +6143,7 @@ private static final long serialVersionUID = 0L;
|
|
|
5986
6143
|
*/
|
|
5987
6144
|
@java.lang.Override
|
|
5988
6145
|
public boolean hasPasswordNeverExpires() {
|
|
5989
|
-
return ((bitField0_ &
|
|
6146
|
+
return ((bitField0_ & 0x00040000) != 0);
|
|
5990
6147
|
}
|
|
5991
6148
|
/**
|
|
5992
6149
|
* <code>optional bool password_never_expires = 18;</code>
|
|
@@ -6004,7 +6161,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6004
6161
|
public Builder setPasswordNeverExpires(boolean value) {
|
|
6005
6162
|
|
|
6006
6163
|
passwordNeverExpires_ = value;
|
|
6007
|
-
bitField0_ |=
|
|
6164
|
+
bitField0_ |= 0x00040000;
|
|
6008
6165
|
onChanged();
|
|
6009
6166
|
return this;
|
|
6010
6167
|
}
|
|
@@ -6013,7 +6170,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6013
6170
|
* @return This builder for chaining.
|
|
6014
6171
|
*/
|
|
6015
6172
|
public Builder clearPasswordNeverExpires() {
|
|
6016
|
-
bitField0_ = (bitField0_ & ~
|
|
6173
|
+
bitField0_ = (bitField0_ & ~0x00040000);
|
|
6017
6174
|
passwordNeverExpires_ = false;
|
|
6018
6175
|
onChanged();
|
|
6019
6176
|
return this;
|
|
@@ -6026,7 +6183,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6026
6183
|
*/
|
|
6027
6184
|
@java.lang.Override
|
|
6028
6185
|
public boolean hasPasswordRequired() {
|
|
6029
|
-
return ((bitField0_ &
|
|
6186
|
+
return ((bitField0_ & 0x00080000) != 0);
|
|
6030
6187
|
}
|
|
6031
6188
|
/**
|
|
6032
6189
|
* <code>optional bool password_required = 19;</code>
|
|
@@ -6044,7 +6201,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6044
6201
|
public Builder setPasswordRequired(boolean value) {
|
|
6045
6202
|
|
|
6046
6203
|
passwordRequired_ = value;
|
|
6047
|
-
bitField0_ |=
|
|
6204
|
+
bitField0_ |= 0x00080000;
|
|
6048
6205
|
onChanged();
|
|
6049
6206
|
return this;
|
|
6050
6207
|
}
|
|
@@ -6053,7 +6210,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6053
6210
|
* @return This builder for chaining.
|
|
6054
6211
|
*/
|
|
6055
6212
|
public Builder clearPasswordRequired() {
|
|
6056
|
-
bitField0_ = (bitField0_ & ~
|
|
6213
|
+
bitField0_ = (bitField0_ & ~0x00080000);
|
|
6057
6214
|
passwordRequired_ = false;
|
|
6058
6215
|
onChanged();
|
|
6059
6216
|
return this;
|
|
@@ -6067,7 +6224,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6067
6224
|
* @return Whether the passwordChangeableDate field is set.
|
|
6068
6225
|
*/
|
|
6069
6226
|
public boolean hasPasswordChangeableDate() {
|
|
6070
|
-
return ((bitField0_ &
|
|
6227
|
+
return ((bitField0_ & 0x00100000) != 0);
|
|
6071
6228
|
}
|
|
6072
6229
|
/**
|
|
6073
6230
|
* <code>optional .google.protobuf.Timestamp password_changeable_date = 20;</code>
|
|
@@ -6092,7 +6249,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6092
6249
|
} else {
|
|
6093
6250
|
passwordChangeableDateBuilder_.setMessage(value);
|
|
6094
6251
|
}
|
|
6095
|
-
bitField0_ |=
|
|
6252
|
+
bitField0_ |= 0x00100000;
|
|
6096
6253
|
onChanged();
|
|
6097
6254
|
return this;
|
|
6098
6255
|
}
|
|
@@ -6106,7 +6263,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6106
6263
|
} else {
|
|
6107
6264
|
passwordChangeableDateBuilder_.setMessage(builderForValue.build());
|
|
6108
6265
|
}
|
|
6109
|
-
bitField0_ |=
|
|
6266
|
+
bitField0_ |= 0x00100000;
|
|
6110
6267
|
onChanged();
|
|
6111
6268
|
return this;
|
|
6112
6269
|
}
|
|
@@ -6115,7 +6272,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6115
6272
|
*/
|
|
6116
6273
|
public Builder mergePasswordChangeableDate(com.google.protobuf.Timestamp value) {
|
|
6117
6274
|
if (passwordChangeableDateBuilder_ == null) {
|
|
6118
|
-
if (((bitField0_ &
|
|
6275
|
+
if (((bitField0_ & 0x00100000) != 0) &&
|
|
6119
6276
|
passwordChangeableDate_ != null &&
|
|
6120
6277
|
passwordChangeableDate_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
|
|
6121
6278
|
getPasswordChangeableDateBuilder().mergeFrom(value);
|
|
@@ -6126,7 +6283,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6126
6283
|
passwordChangeableDateBuilder_.mergeFrom(value);
|
|
6127
6284
|
}
|
|
6128
6285
|
if (passwordChangeableDate_ != null) {
|
|
6129
|
-
bitField0_ |=
|
|
6286
|
+
bitField0_ |= 0x00100000;
|
|
6130
6287
|
onChanged();
|
|
6131
6288
|
}
|
|
6132
6289
|
return this;
|
|
@@ -6135,7 +6292,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6135
6292
|
* <code>optional .google.protobuf.Timestamp password_changeable_date = 20;</code>
|
|
6136
6293
|
*/
|
|
6137
6294
|
public Builder clearPasswordChangeableDate() {
|
|
6138
|
-
bitField0_ = (bitField0_ & ~
|
|
6295
|
+
bitField0_ = (bitField0_ & ~0x00100000);
|
|
6139
6296
|
passwordChangeableDate_ = null;
|
|
6140
6297
|
if (passwordChangeableDateBuilder_ != null) {
|
|
6141
6298
|
passwordChangeableDateBuilder_.dispose();
|
|
@@ -6148,7 +6305,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6148
6305
|
* <code>optional .google.protobuf.Timestamp password_changeable_date = 20;</code>
|
|
6149
6306
|
*/
|
|
6150
6307
|
public com.google.protobuf.Timestamp.Builder getPasswordChangeableDateBuilder() {
|
|
6151
|
-
bitField0_ |=
|
|
6308
|
+
bitField0_ |= 0x00100000;
|
|
6152
6309
|
onChanged();
|
|
6153
6310
|
return getPasswordChangeableDateFieldBuilder().getBuilder();
|
|
6154
6311
|
}
|
|
@@ -6186,7 +6343,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6186
6343
|
* @return Whether the email field is set.
|
|
6187
6344
|
*/
|
|
6188
6345
|
public boolean hasEmail() {
|
|
6189
|
-
return ((bitField0_ &
|
|
6346
|
+
return ((bitField0_ & 0x00200000) != 0);
|
|
6190
6347
|
}
|
|
6191
6348
|
/**
|
|
6192
6349
|
* <code>optional string email = 21;</code>
|
|
@@ -6230,7 +6387,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6230
6387
|
java.lang.String value) {
|
|
6231
6388
|
if (value == null) { throw new NullPointerException(); }
|
|
6232
6389
|
email_ = value;
|
|
6233
|
-
bitField0_ |=
|
|
6390
|
+
bitField0_ |= 0x00200000;
|
|
6234
6391
|
onChanged();
|
|
6235
6392
|
return this;
|
|
6236
6393
|
}
|
|
@@ -6240,7 +6397,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6240
6397
|
*/
|
|
6241
6398
|
public Builder clearEmail() {
|
|
6242
6399
|
email_ = getDefaultInstance().getEmail();
|
|
6243
|
-
bitField0_ = (bitField0_ & ~
|
|
6400
|
+
bitField0_ = (bitField0_ & ~0x00200000);
|
|
6244
6401
|
onChanged();
|
|
6245
6402
|
return this;
|
|
6246
6403
|
}
|
|
@@ -6254,7 +6411,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6254
6411
|
if (value == null) { throw new NullPointerException(); }
|
|
6255
6412
|
checkByteStringIsUtf8(value);
|
|
6256
6413
|
email_ = value;
|
|
6257
|
-
bitField0_ |=
|
|
6414
|
+
bitField0_ |= 0x00200000;
|
|
6258
6415
|
onChanged();
|
|
6259
6416
|
return this;
|
|
6260
6417
|
}
|
|
@@ -6265,7 +6422,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6265
6422
|
* @return Whether the displayName field is set.
|
|
6266
6423
|
*/
|
|
6267
6424
|
public boolean hasDisplayName() {
|
|
6268
|
-
return ((bitField0_ &
|
|
6425
|
+
return ((bitField0_ & 0x00400000) != 0);
|
|
6269
6426
|
}
|
|
6270
6427
|
/**
|
|
6271
6428
|
* <code>optional string display_name = 22;</code>
|
|
@@ -6309,7 +6466,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6309
6466
|
java.lang.String value) {
|
|
6310
6467
|
if (value == null) { throw new NullPointerException(); }
|
|
6311
6468
|
displayName_ = value;
|
|
6312
|
-
bitField0_ |=
|
|
6469
|
+
bitField0_ |= 0x00400000;
|
|
6313
6470
|
onChanged();
|
|
6314
6471
|
return this;
|
|
6315
6472
|
}
|
|
@@ -6319,7 +6476,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6319
6476
|
*/
|
|
6320
6477
|
public Builder clearDisplayName() {
|
|
6321
6478
|
displayName_ = getDefaultInstance().getDisplayName();
|
|
6322
|
-
bitField0_ = (bitField0_ & ~
|
|
6479
|
+
bitField0_ = (bitField0_ & ~0x00400000);
|
|
6323
6480
|
onChanged();
|
|
6324
6481
|
return this;
|
|
6325
6482
|
}
|
|
@@ -6333,7 +6490,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6333
6490
|
if (value == null) { throw new NullPointerException(); }
|
|
6334
6491
|
checkByteStringIsUtf8(value);
|
|
6335
6492
|
displayName_ = value;
|
|
6336
|
-
bitField0_ |=
|
|
6493
|
+
bitField0_ |= 0x00400000;
|
|
6337
6494
|
onChanged();
|
|
6338
6495
|
return this;
|
|
6339
6496
|
}
|
|
@@ -6344,7 +6501,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6344
6501
|
* @return Whether the givenName field is set.
|
|
6345
6502
|
*/
|
|
6346
6503
|
public boolean hasGivenName() {
|
|
6347
|
-
return ((bitField0_ &
|
|
6504
|
+
return ((bitField0_ & 0x00800000) != 0);
|
|
6348
6505
|
}
|
|
6349
6506
|
/**
|
|
6350
6507
|
* <code>optional string given_name = 23;</code>
|
|
@@ -6388,7 +6545,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6388
6545
|
java.lang.String value) {
|
|
6389
6546
|
if (value == null) { throw new NullPointerException(); }
|
|
6390
6547
|
givenName_ = value;
|
|
6391
|
-
bitField0_ |=
|
|
6548
|
+
bitField0_ |= 0x00800000;
|
|
6392
6549
|
onChanged();
|
|
6393
6550
|
return this;
|
|
6394
6551
|
}
|
|
@@ -6398,7 +6555,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6398
6555
|
*/
|
|
6399
6556
|
public Builder clearGivenName() {
|
|
6400
6557
|
givenName_ = getDefaultInstance().getGivenName();
|
|
6401
|
-
bitField0_ = (bitField0_ & ~
|
|
6558
|
+
bitField0_ = (bitField0_ & ~0x00800000);
|
|
6402
6559
|
onChanged();
|
|
6403
6560
|
return this;
|
|
6404
6561
|
}
|
|
@@ -6412,7 +6569,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6412
6569
|
if (value == null) { throw new NullPointerException(); }
|
|
6413
6570
|
checkByteStringIsUtf8(value);
|
|
6414
6571
|
givenName_ = value;
|
|
6415
|
-
bitField0_ |=
|
|
6572
|
+
bitField0_ |= 0x00800000;
|
|
6416
6573
|
onChanged();
|
|
6417
6574
|
return this;
|
|
6418
6575
|
}
|
|
@@ -6423,7 +6580,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6423
6580
|
* @return Whether the surname field is set.
|
|
6424
6581
|
*/
|
|
6425
6582
|
public boolean hasSurname() {
|
|
6426
|
-
return ((bitField0_ &
|
|
6583
|
+
return ((bitField0_ & 0x01000000) != 0);
|
|
6427
6584
|
}
|
|
6428
6585
|
/**
|
|
6429
6586
|
* <code>optional string surname = 24;</code>
|
|
@@ -6467,7 +6624,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6467
6624
|
java.lang.String value) {
|
|
6468
6625
|
if (value == null) { throw new NullPointerException(); }
|
|
6469
6626
|
surname_ = value;
|
|
6470
|
-
bitField0_ |=
|
|
6627
|
+
bitField0_ |= 0x01000000;
|
|
6471
6628
|
onChanged();
|
|
6472
6629
|
return this;
|
|
6473
6630
|
}
|
|
@@ -6477,7 +6634,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6477
6634
|
*/
|
|
6478
6635
|
public Builder clearSurname() {
|
|
6479
6636
|
surname_ = getDefaultInstance().getSurname();
|
|
6480
|
-
bitField0_ = (bitField0_ & ~
|
|
6637
|
+
bitField0_ = (bitField0_ & ~0x01000000);
|
|
6481
6638
|
onChanged();
|
|
6482
6639
|
return this;
|
|
6483
6640
|
}
|
|
@@ -6491,7 +6648,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6491
6648
|
if (value == null) { throw new NullPointerException(); }
|
|
6492
6649
|
checkByteStringIsUtf8(value);
|
|
6493
6650
|
surname_ = value;
|
|
6494
|
-
bitField0_ |=
|
|
6651
|
+
bitField0_ |= 0x01000000;
|
|
6495
6652
|
onChanged();
|
|
6496
6653
|
return this;
|
|
6497
6654
|
}
|
|
@@ -6502,7 +6659,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6502
6659
|
* @return Whether the telephone field is set.
|
|
6503
6660
|
*/
|
|
6504
6661
|
public boolean hasTelephone() {
|
|
6505
|
-
return ((bitField0_ &
|
|
6662
|
+
return ((bitField0_ & 0x02000000) != 0);
|
|
6506
6663
|
}
|
|
6507
6664
|
/**
|
|
6508
6665
|
* <code>optional string telephone = 25;</code>
|
|
@@ -6546,7 +6703,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6546
6703
|
java.lang.String value) {
|
|
6547
6704
|
if (value == null) { throw new NullPointerException(); }
|
|
6548
6705
|
telephone_ = value;
|
|
6549
|
-
bitField0_ |=
|
|
6706
|
+
bitField0_ |= 0x02000000;
|
|
6550
6707
|
onChanged();
|
|
6551
6708
|
return this;
|
|
6552
6709
|
}
|
|
@@ -6556,7 +6713,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6556
6713
|
*/
|
|
6557
6714
|
public Builder clearTelephone() {
|
|
6558
6715
|
telephone_ = getDefaultInstance().getTelephone();
|
|
6559
|
-
bitField0_ = (bitField0_ & ~
|
|
6716
|
+
bitField0_ = (bitField0_ & ~0x02000000);
|
|
6560
6717
|
onChanged();
|
|
6561
6718
|
return this;
|
|
6562
6719
|
}
|
|
@@ -6570,7 +6727,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6570
6727
|
if (value == null) { throw new NullPointerException(); }
|
|
6571
6728
|
checkByteStringIsUtf8(value);
|
|
6572
6729
|
telephone_ = value;
|
|
6573
|
-
bitField0_ |=
|
|
6730
|
+
bitField0_ |= 0x02000000;
|
|
6574
6731
|
onChanged();
|
|
6575
6732
|
return this;
|
|
6576
6733
|
}
|
|
@@ -6581,7 +6738,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6581
6738
|
* @return Whether the facSimile field is set.
|
|
6582
6739
|
*/
|
|
6583
6740
|
public boolean hasFacSimile() {
|
|
6584
|
-
return ((bitField0_ &
|
|
6741
|
+
return ((bitField0_ & 0x04000000) != 0);
|
|
6585
6742
|
}
|
|
6586
6743
|
/**
|
|
6587
6744
|
* <code>optional string fac_simile = 26;</code>
|
|
@@ -6625,7 +6782,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6625
6782
|
java.lang.String value) {
|
|
6626
6783
|
if (value == null) { throw new NullPointerException(); }
|
|
6627
6784
|
facSimile_ = value;
|
|
6628
|
-
bitField0_ |=
|
|
6785
|
+
bitField0_ |= 0x04000000;
|
|
6629
6786
|
onChanged();
|
|
6630
6787
|
return this;
|
|
6631
6788
|
}
|
|
@@ -6635,7 +6792,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6635
6792
|
*/
|
|
6636
6793
|
public Builder clearFacSimile() {
|
|
6637
6794
|
facSimile_ = getDefaultInstance().getFacSimile();
|
|
6638
|
-
bitField0_ = (bitField0_ & ~
|
|
6795
|
+
bitField0_ = (bitField0_ & ~0x04000000);
|
|
6639
6796
|
onChanged();
|
|
6640
6797
|
return this;
|
|
6641
6798
|
}
|
|
@@ -6649,7 +6806,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6649
6806
|
if (value == null) { throw new NullPointerException(); }
|
|
6650
6807
|
checkByteStringIsUtf8(value);
|
|
6651
6808
|
facSimile_ = value;
|
|
6652
|
-
bitField0_ |=
|
|
6809
|
+
bitField0_ |= 0x04000000;
|
|
6653
6810
|
onChanged();
|
|
6654
6811
|
return this;
|
|
6655
6812
|
}
|
|
@@ -6660,7 +6817,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6660
6817
|
* @return Whether the mobile field is set.
|
|
6661
6818
|
*/
|
|
6662
6819
|
public boolean hasMobile() {
|
|
6663
|
-
return ((bitField0_ &
|
|
6820
|
+
return ((bitField0_ & 0x08000000) != 0);
|
|
6664
6821
|
}
|
|
6665
6822
|
/**
|
|
6666
6823
|
* <code>optional string mobile = 27;</code>
|
|
@@ -6704,7 +6861,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6704
6861
|
java.lang.String value) {
|
|
6705
6862
|
if (value == null) { throw new NullPointerException(); }
|
|
6706
6863
|
mobile_ = value;
|
|
6707
|
-
bitField0_ |=
|
|
6864
|
+
bitField0_ |= 0x08000000;
|
|
6708
6865
|
onChanged();
|
|
6709
6866
|
return this;
|
|
6710
6867
|
}
|
|
@@ -6714,7 +6871,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6714
6871
|
*/
|
|
6715
6872
|
public Builder clearMobile() {
|
|
6716
6873
|
mobile_ = getDefaultInstance().getMobile();
|
|
6717
|
-
bitField0_ = (bitField0_ & ~
|
|
6874
|
+
bitField0_ = (bitField0_ & ~0x08000000);
|
|
6718
6875
|
onChanged();
|
|
6719
6876
|
return this;
|
|
6720
6877
|
}
|
|
@@ -6728,7 +6885,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6728
6885
|
if (value == null) { throw new NullPointerException(); }
|
|
6729
6886
|
checkByteStringIsUtf8(value);
|
|
6730
6887
|
mobile_ = value;
|
|
6731
|
-
bitField0_ |=
|
|
6888
|
+
bitField0_ |= 0x08000000;
|
|
6732
6889
|
onChanged();
|
|
6733
6890
|
return this;
|
|
6734
6891
|
}
|
|
@@ -6739,7 +6896,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6739
6896
|
* @return Whether the streetAddress field is set.
|
|
6740
6897
|
*/
|
|
6741
6898
|
public boolean hasStreetAddress() {
|
|
6742
|
-
return ((bitField0_ &
|
|
6899
|
+
return ((bitField0_ & 0x10000000) != 0);
|
|
6743
6900
|
}
|
|
6744
6901
|
/**
|
|
6745
6902
|
* <code>optional string street_address = 28;</code>
|
|
@@ -6783,7 +6940,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6783
6940
|
java.lang.String value) {
|
|
6784
6941
|
if (value == null) { throw new NullPointerException(); }
|
|
6785
6942
|
streetAddress_ = value;
|
|
6786
|
-
bitField0_ |=
|
|
6943
|
+
bitField0_ |= 0x10000000;
|
|
6787
6944
|
onChanged();
|
|
6788
6945
|
return this;
|
|
6789
6946
|
}
|
|
@@ -6793,7 +6950,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6793
6950
|
*/
|
|
6794
6951
|
public Builder clearStreetAddress() {
|
|
6795
6952
|
streetAddress_ = getDefaultInstance().getStreetAddress();
|
|
6796
|
-
bitField0_ = (bitField0_ & ~
|
|
6953
|
+
bitField0_ = (bitField0_ & ~0x10000000);
|
|
6797
6954
|
onChanged();
|
|
6798
6955
|
return this;
|
|
6799
6956
|
}
|
|
@@ -6807,7 +6964,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6807
6964
|
if (value == null) { throw new NullPointerException(); }
|
|
6808
6965
|
checkByteStringIsUtf8(value);
|
|
6809
6966
|
streetAddress_ = value;
|
|
6810
|
-
bitField0_ |=
|
|
6967
|
+
bitField0_ |= 0x10000000;
|
|
6811
6968
|
onChanged();
|
|
6812
6969
|
return this;
|
|
6813
6970
|
}
|
|
@@ -6818,7 +6975,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6818
6975
|
* @return Whether the city field is set.
|
|
6819
6976
|
*/
|
|
6820
6977
|
public boolean hasCity() {
|
|
6821
|
-
return ((bitField0_ &
|
|
6978
|
+
return ((bitField0_ & 0x20000000) != 0);
|
|
6822
6979
|
}
|
|
6823
6980
|
/**
|
|
6824
6981
|
* <code>optional string city = 29;</code>
|
|
@@ -6862,7 +7019,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6862
7019
|
java.lang.String value) {
|
|
6863
7020
|
if (value == null) { throw new NullPointerException(); }
|
|
6864
7021
|
city_ = value;
|
|
6865
|
-
bitField0_ |=
|
|
7022
|
+
bitField0_ |= 0x20000000;
|
|
6866
7023
|
onChanged();
|
|
6867
7024
|
return this;
|
|
6868
7025
|
}
|
|
@@ -6872,7 +7029,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6872
7029
|
*/
|
|
6873
7030
|
public Builder clearCity() {
|
|
6874
7031
|
city_ = getDefaultInstance().getCity();
|
|
6875
|
-
bitField0_ = (bitField0_ & ~
|
|
7032
|
+
bitField0_ = (bitField0_ & ~0x20000000);
|
|
6876
7033
|
onChanged();
|
|
6877
7034
|
return this;
|
|
6878
7035
|
}
|
|
@@ -6886,7 +7043,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6886
7043
|
if (value == null) { throw new NullPointerException(); }
|
|
6887
7044
|
checkByteStringIsUtf8(value);
|
|
6888
7045
|
city_ = value;
|
|
6889
|
-
bitField0_ |=
|
|
7046
|
+
bitField0_ |= 0x20000000;
|
|
6890
7047
|
onChanged();
|
|
6891
7048
|
return this;
|
|
6892
7049
|
}
|
|
@@ -6897,7 +7054,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6897
7054
|
* @return Whether the country field is set.
|
|
6898
7055
|
*/
|
|
6899
7056
|
public boolean hasCountry() {
|
|
6900
|
-
return ((bitField0_ &
|
|
7057
|
+
return ((bitField0_ & 0x40000000) != 0);
|
|
6901
7058
|
}
|
|
6902
7059
|
/**
|
|
6903
7060
|
* <code>optional string country = 30;</code>
|
|
@@ -6941,7 +7098,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6941
7098
|
java.lang.String value) {
|
|
6942
7099
|
if (value == null) { throw new NullPointerException(); }
|
|
6943
7100
|
country_ = value;
|
|
6944
|
-
bitField0_ |=
|
|
7101
|
+
bitField0_ |= 0x40000000;
|
|
6945
7102
|
onChanged();
|
|
6946
7103
|
return this;
|
|
6947
7104
|
}
|
|
@@ -6951,7 +7108,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6951
7108
|
*/
|
|
6952
7109
|
public Builder clearCountry() {
|
|
6953
7110
|
country_ = getDefaultInstance().getCountry();
|
|
6954
|
-
bitField0_ = (bitField0_ & ~
|
|
7111
|
+
bitField0_ = (bitField0_ & ~0x40000000);
|
|
6955
7112
|
onChanged();
|
|
6956
7113
|
return this;
|
|
6957
7114
|
}
|
|
@@ -6965,7 +7122,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6965
7122
|
if (value == null) { throw new NullPointerException(); }
|
|
6966
7123
|
checkByteStringIsUtf8(value);
|
|
6967
7124
|
country_ = value;
|
|
6968
|
-
bitField0_ |=
|
|
7125
|
+
bitField0_ |= 0x40000000;
|
|
6969
7126
|
onChanged();
|
|
6970
7127
|
return this;
|
|
6971
7128
|
}
|
|
@@ -6976,7 +7133,7 @@ private static final long serialVersionUID = 0L;
|
|
|
6976
7133
|
* @return Whether the department field is set.
|
|
6977
7134
|
*/
|
|
6978
7135
|
public boolean hasDepartment() {
|
|
6979
|
-
return ((bitField0_ &
|
|
7136
|
+
return ((bitField0_ & 0x80000000) != 0);
|
|
6980
7137
|
}
|
|
6981
7138
|
/**
|
|
6982
7139
|
* <code>optional string department = 31;</code>
|
|
@@ -7020,7 +7177,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7020
7177
|
java.lang.String value) {
|
|
7021
7178
|
if (value == null) { throw new NullPointerException(); }
|
|
7022
7179
|
department_ = value;
|
|
7023
|
-
bitField0_ |=
|
|
7180
|
+
bitField0_ |= 0x80000000;
|
|
7024
7181
|
onChanged();
|
|
7025
7182
|
return this;
|
|
7026
7183
|
}
|
|
@@ -7030,7 +7187,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7030
7187
|
*/
|
|
7031
7188
|
public Builder clearDepartment() {
|
|
7032
7189
|
department_ = getDefaultInstance().getDepartment();
|
|
7033
|
-
bitField0_ = (bitField0_ & ~
|
|
7190
|
+
bitField0_ = (bitField0_ & ~0x80000000);
|
|
7034
7191
|
onChanged();
|
|
7035
7192
|
return this;
|
|
7036
7193
|
}
|
|
@@ -7044,7 +7201,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7044
7201
|
if (value == null) { throw new NullPointerException(); }
|
|
7045
7202
|
checkByteStringIsUtf8(value);
|
|
7046
7203
|
department_ = value;
|
|
7047
|
-
bitField0_ |=
|
|
7204
|
+
bitField0_ |= 0x80000000;
|
|
7048
7205
|
onChanged();
|
|
7049
7206
|
return this;
|
|
7050
7207
|
}
|
|
@@ -7055,7 +7212,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7055
7212
|
* @return Whether the deliveryOfficeName field is set.
|
|
7056
7213
|
*/
|
|
7057
7214
|
public boolean hasDeliveryOfficeName() {
|
|
7058
|
-
return ((
|
|
7215
|
+
return ((bitField1_ & 0x00000001) != 0);
|
|
7059
7216
|
}
|
|
7060
7217
|
/**
|
|
7061
7218
|
* <code>optional string delivery_office_name = 32;</code>
|
|
@@ -7099,7 +7256,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7099
7256
|
java.lang.String value) {
|
|
7100
7257
|
if (value == null) { throw new NullPointerException(); }
|
|
7101
7258
|
deliveryOfficeName_ = value;
|
|
7102
|
-
|
|
7259
|
+
bitField1_ |= 0x00000001;
|
|
7103
7260
|
onChanged();
|
|
7104
7261
|
return this;
|
|
7105
7262
|
}
|
|
@@ -7109,7 +7266,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7109
7266
|
*/
|
|
7110
7267
|
public Builder clearDeliveryOfficeName() {
|
|
7111
7268
|
deliveryOfficeName_ = getDefaultInstance().getDeliveryOfficeName();
|
|
7112
|
-
|
|
7269
|
+
bitField1_ = (bitField1_ & ~0x00000001);
|
|
7113
7270
|
onChanged();
|
|
7114
7271
|
return this;
|
|
7115
7272
|
}
|
|
@@ -7123,7 +7280,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7123
7280
|
if (value == null) { throw new NullPointerException(); }
|
|
7124
7281
|
checkByteStringIsUtf8(value);
|
|
7125
7282
|
deliveryOfficeName_ = value;
|
|
7126
|
-
|
|
7283
|
+
bitField1_ |= 0x00000001;
|
|
7127
7284
|
onChanged();
|
|
7128
7285
|
return this;
|
|
7129
7286
|
}
|
|
@@ -7134,7 +7291,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7134
7291
|
* @return Whether the countryAbbreviation field is set.
|
|
7135
7292
|
*/
|
|
7136
7293
|
public boolean hasCountryAbbreviation() {
|
|
7137
|
-
return ((bitField1_ &
|
|
7294
|
+
return ((bitField1_ & 0x00000002) != 0);
|
|
7138
7295
|
}
|
|
7139
7296
|
/**
|
|
7140
7297
|
* <code>optional string country_abbreviation = 33;</code>
|
|
@@ -7178,7 +7335,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7178
7335
|
java.lang.String value) {
|
|
7179
7336
|
if (value == null) { throw new NullPointerException(); }
|
|
7180
7337
|
countryAbbreviation_ = value;
|
|
7181
|
-
bitField1_ |=
|
|
7338
|
+
bitField1_ |= 0x00000002;
|
|
7182
7339
|
onChanged();
|
|
7183
7340
|
return this;
|
|
7184
7341
|
}
|
|
@@ -7188,7 +7345,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7188
7345
|
*/
|
|
7189
7346
|
public Builder clearCountryAbbreviation() {
|
|
7190
7347
|
countryAbbreviation_ = getDefaultInstance().getCountryAbbreviation();
|
|
7191
|
-
bitField1_ = (bitField1_ & ~
|
|
7348
|
+
bitField1_ = (bitField1_ & ~0x00000002);
|
|
7192
7349
|
onChanged();
|
|
7193
7350
|
return this;
|
|
7194
7351
|
}
|
|
@@ -7202,7 +7359,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7202
7359
|
if (value == null) { throw new NullPointerException(); }
|
|
7203
7360
|
checkByteStringIsUtf8(value);
|
|
7204
7361
|
countryAbbreviation_ = value;
|
|
7205
|
-
bitField1_ |=
|
|
7362
|
+
bitField1_ |= 0x00000002;
|
|
7206
7363
|
onChanged();
|
|
7207
7364
|
return this;
|
|
7208
7365
|
}
|
|
@@ -7213,7 +7370,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7213
7370
|
* @return Whether the postalCode field is set.
|
|
7214
7371
|
*/
|
|
7215
7372
|
public boolean hasPostalCode() {
|
|
7216
|
-
return ((bitField1_ &
|
|
7373
|
+
return ((bitField1_ & 0x00000004) != 0);
|
|
7217
7374
|
}
|
|
7218
7375
|
/**
|
|
7219
7376
|
* <code>optional string postal_code = 34;</code>
|
|
@@ -7257,7 +7414,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7257
7414
|
java.lang.String value) {
|
|
7258
7415
|
if (value == null) { throw new NullPointerException(); }
|
|
7259
7416
|
postalCode_ = value;
|
|
7260
|
-
bitField1_ |=
|
|
7417
|
+
bitField1_ |= 0x00000004;
|
|
7261
7418
|
onChanged();
|
|
7262
7419
|
return this;
|
|
7263
7420
|
}
|
|
@@ -7267,7 +7424,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7267
7424
|
*/
|
|
7268
7425
|
public Builder clearPostalCode() {
|
|
7269
7426
|
postalCode_ = getDefaultInstance().getPostalCode();
|
|
7270
|
-
bitField1_ = (bitField1_ & ~
|
|
7427
|
+
bitField1_ = (bitField1_ & ~0x00000004);
|
|
7271
7428
|
onChanged();
|
|
7272
7429
|
return this;
|
|
7273
7430
|
}
|
|
@@ -7281,7 +7438,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7281
7438
|
if (value == null) { throw new NullPointerException(); }
|
|
7282
7439
|
checkByteStringIsUtf8(value);
|
|
7283
7440
|
postalCode_ = value;
|
|
7284
|
-
bitField1_ |=
|
|
7441
|
+
bitField1_ |= 0x00000004;
|
|
7285
7442
|
onChanged();
|
|
7286
7443
|
return this;
|
|
7287
7444
|
}
|
|
@@ -7292,7 +7449,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7292
7449
|
* @return Whether the countryCode field is set.
|
|
7293
7450
|
*/
|
|
7294
7451
|
public boolean hasCountryCode() {
|
|
7295
|
-
return ((bitField1_ &
|
|
7452
|
+
return ((bitField1_ & 0x00000008) != 0);
|
|
7296
7453
|
}
|
|
7297
7454
|
/**
|
|
7298
7455
|
* <code>optional string country_code = 35;</code>
|
|
@@ -7336,7 +7493,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7336
7493
|
java.lang.String value) {
|
|
7337
7494
|
if (value == null) { throw new NullPointerException(); }
|
|
7338
7495
|
countryCode_ = value;
|
|
7339
|
-
bitField1_ |=
|
|
7496
|
+
bitField1_ |= 0x00000008;
|
|
7340
7497
|
onChanged();
|
|
7341
7498
|
return this;
|
|
7342
7499
|
}
|
|
@@ -7346,7 +7503,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7346
7503
|
*/
|
|
7347
7504
|
public Builder clearCountryCode() {
|
|
7348
7505
|
countryCode_ = getDefaultInstance().getCountryCode();
|
|
7349
|
-
bitField1_ = (bitField1_ & ~
|
|
7506
|
+
bitField1_ = (bitField1_ & ~0x00000008);
|
|
7350
7507
|
onChanged();
|
|
7351
7508
|
return this;
|
|
7352
7509
|
}
|
|
@@ -7360,7 +7517,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7360
7517
|
if (value == null) { throw new NullPointerException(); }
|
|
7361
7518
|
checkByteStringIsUtf8(value);
|
|
7362
7519
|
countryCode_ = value;
|
|
7363
|
-
bitField1_ |=
|
|
7520
|
+
bitField1_ |= 0x00000008;
|
|
7364
7521
|
onChanged();
|
|
7365
7522
|
return this;
|
|
7366
7523
|
}
|
|
@@ -7371,7 +7528,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7371
7528
|
* @return Whether the principalName field is set.
|
|
7372
7529
|
*/
|
|
7373
7530
|
public boolean hasPrincipalName() {
|
|
7374
|
-
return ((bitField1_ &
|
|
7531
|
+
return ((bitField1_ & 0x00000010) != 0);
|
|
7375
7532
|
}
|
|
7376
7533
|
/**
|
|
7377
7534
|
* <code>optional string principal_name = 36;</code>
|
|
@@ -7415,7 +7572,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7415
7572
|
java.lang.String value) {
|
|
7416
7573
|
if (value == null) { throw new NullPointerException(); }
|
|
7417
7574
|
principalName_ = value;
|
|
7418
|
-
bitField1_ |=
|
|
7575
|
+
bitField1_ |= 0x00000010;
|
|
7419
7576
|
onChanged();
|
|
7420
7577
|
return this;
|
|
7421
7578
|
}
|
|
@@ -7425,7 +7582,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7425
7582
|
*/
|
|
7426
7583
|
public Builder clearPrincipalName() {
|
|
7427
7584
|
principalName_ = getDefaultInstance().getPrincipalName();
|
|
7428
|
-
bitField1_ = (bitField1_ & ~
|
|
7585
|
+
bitField1_ = (bitField1_ & ~0x00000010);
|
|
7429
7586
|
onChanged();
|
|
7430
7587
|
return this;
|
|
7431
7588
|
}
|
|
@@ -7439,7 +7596,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7439
7596
|
if (value == null) { throw new NullPointerException(); }
|
|
7440
7597
|
checkByteStringIsUtf8(value);
|
|
7441
7598
|
principalName_ = value;
|
|
7442
|
-
bitField1_ |=
|
|
7599
|
+
bitField1_ |= 0x00000010;
|
|
7443
7600
|
onChanged();
|
|
7444
7601
|
return this;
|
|
7445
7602
|
}
|
|
@@ -7450,7 +7607,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7450
7607
|
* @return Whether the title field is set.
|
|
7451
7608
|
*/
|
|
7452
7609
|
public boolean hasTitle() {
|
|
7453
|
-
return ((bitField1_ &
|
|
7610
|
+
return ((bitField1_ & 0x00000020) != 0);
|
|
7454
7611
|
}
|
|
7455
7612
|
/**
|
|
7456
7613
|
* <code>optional string title = 37;</code>
|
|
@@ -7494,7 +7651,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7494
7651
|
java.lang.String value) {
|
|
7495
7652
|
if (value == null) { throw new NullPointerException(); }
|
|
7496
7653
|
title_ = value;
|
|
7497
|
-
bitField1_ |=
|
|
7654
|
+
bitField1_ |= 0x00000020;
|
|
7498
7655
|
onChanged();
|
|
7499
7656
|
return this;
|
|
7500
7657
|
}
|
|
@@ -7504,7 +7661,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7504
7661
|
*/
|
|
7505
7662
|
public Builder clearTitle() {
|
|
7506
7663
|
title_ = getDefaultInstance().getTitle();
|
|
7507
|
-
bitField1_ = (bitField1_ & ~
|
|
7664
|
+
bitField1_ = (bitField1_ & ~0x00000020);
|
|
7508
7665
|
onChanged();
|
|
7509
7666
|
return this;
|
|
7510
7667
|
}
|
|
@@ -7518,7 +7675,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7518
7675
|
if (value == null) { throw new NullPointerException(); }
|
|
7519
7676
|
checkByteStringIsUtf8(value);
|
|
7520
7677
|
title_ = value;
|
|
7521
|
-
bitField1_ |=
|
|
7678
|
+
bitField1_ |= 0x00000020;
|
|
7522
7679
|
onChanged();
|
|
7523
7680
|
return this;
|
|
7524
7681
|
}
|
|
@@ -7529,7 +7686,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7529
7686
|
* @return Whether the division field is set.
|
|
7530
7687
|
*/
|
|
7531
7688
|
public boolean hasDivision() {
|
|
7532
|
-
return ((bitField1_ &
|
|
7689
|
+
return ((bitField1_ & 0x00000040) != 0);
|
|
7533
7690
|
}
|
|
7534
7691
|
/**
|
|
7535
7692
|
* <code>optional string division = 38;</code>
|
|
@@ -7573,7 +7730,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7573
7730
|
java.lang.String value) {
|
|
7574
7731
|
if (value == null) { throw new NullPointerException(); }
|
|
7575
7732
|
division_ = value;
|
|
7576
|
-
bitField1_ |=
|
|
7733
|
+
bitField1_ |= 0x00000040;
|
|
7577
7734
|
onChanged();
|
|
7578
7735
|
return this;
|
|
7579
7736
|
}
|
|
@@ -7583,7 +7740,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7583
7740
|
*/
|
|
7584
7741
|
public Builder clearDivision() {
|
|
7585
7742
|
division_ = getDefaultInstance().getDivision();
|
|
7586
|
-
bitField1_ = (bitField1_ & ~
|
|
7743
|
+
bitField1_ = (bitField1_ & ~0x00000040);
|
|
7587
7744
|
onChanged();
|
|
7588
7745
|
return this;
|
|
7589
7746
|
}
|
|
@@ -7597,7 +7754,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7597
7754
|
if (value == null) { throw new NullPointerException(); }
|
|
7598
7755
|
checkByteStringIsUtf8(value);
|
|
7599
7756
|
division_ = value;
|
|
7600
|
-
bitField1_ |=
|
|
7757
|
+
bitField1_ |= 0x00000040;
|
|
7601
7758
|
onChanged();
|
|
7602
7759
|
return this;
|
|
7603
7760
|
}
|
|
@@ -7608,7 +7765,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7608
7765
|
* @return Whether the info field is set.
|
|
7609
7766
|
*/
|
|
7610
7767
|
public boolean hasInfo() {
|
|
7611
|
-
return ((bitField1_ &
|
|
7768
|
+
return ((bitField1_ & 0x00000080) != 0);
|
|
7612
7769
|
}
|
|
7613
7770
|
/**
|
|
7614
7771
|
* <code>optional string info = 39;</code>
|
|
@@ -7652,7 +7809,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7652
7809
|
java.lang.String value) {
|
|
7653
7810
|
if (value == null) { throw new NullPointerException(); }
|
|
7654
7811
|
info_ = value;
|
|
7655
|
-
bitField1_ |=
|
|
7812
|
+
bitField1_ |= 0x00000080;
|
|
7656
7813
|
onChanged();
|
|
7657
7814
|
return this;
|
|
7658
7815
|
}
|
|
@@ -7662,7 +7819,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7662
7819
|
*/
|
|
7663
7820
|
public Builder clearInfo() {
|
|
7664
7821
|
info_ = getDefaultInstance().getInfo();
|
|
7665
|
-
bitField1_ = (bitField1_ & ~
|
|
7822
|
+
bitField1_ = (bitField1_ & ~0x00000080);
|
|
7666
7823
|
onChanged();
|
|
7667
7824
|
return this;
|
|
7668
7825
|
}
|
|
@@ -7676,7 +7833,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7676
7833
|
if (value == null) { throw new NullPointerException(); }
|
|
7677
7834
|
checkByteStringIsUtf8(value);
|
|
7678
7835
|
info_ = value;
|
|
7679
|
-
bitField1_ |=
|
|
7836
|
+
bitField1_ |= 0x00000080;
|
|
7680
7837
|
onChanged();
|
|
7681
7838
|
return this;
|
|
7682
7839
|
}
|
|
@@ -7687,7 +7844,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7687
7844
|
* @return Whether the homePhone field is set.
|
|
7688
7845
|
*/
|
|
7689
7846
|
public boolean hasHomePhone() {
|
|
7690
|
-
return ((bitField1_ &
|
|
7847
|
+
return ((bitField1_ & 0x00000100) != 0);
|
|
7691
7848
|
}
|
|
7692
7849
|
/**
|
|
7693
7850
|
* <code>optional string home_phone = 40;</code>
|
|
@@ -7731,7 +7888,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7731
7888
|
java.lang.String value) {
|
|
7732
7889
|
if (value == null) { throw new NullPointerException(); }
|
|
7733
7890
|
homePhone_ = value;
|
|
7734
|
-
bitField1_ |=
|
|
7891
|
+
bitField1_ |= 0x00000100;
|
|
7735
7892
|
onChanged();
|
|
7736
7893
|
return this;
|
|
7737
7894
|
}
|
|
@@ -7741,7 +7898,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7741
7898
|
*/
|
|
7742
7899
|
public Builder clearHomePhone() {
|
|
7743
7900
|
homePhone_ = getDefaultInstance().getHomePhone();
|
|
7744
|
-
bitField1_ = (bitField1_ & ~
|
|
7901
|
+
bitField1_ = (bitField1_ & ~0x00000100);
|
|
7745
7902
|
onChanged();
|
|
7746
7903
|
return this;
|
|
7747
7904
|
}
|
|
@@ -7755,7 +7912,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7755
7912
|
if (value == null) { throw new NullPointerException(); }
|
|
7756
7913
|
checkByteStringIsUtf8(value);
|
|
7757
7914
|
homePhone_ = value;
|
|
7758
|
-
bitField1_ |=
|
|
7915
|
+
bitField1_ |= 0x00000100;
|
|
7759
7916
|
onChanged();
|
|
7760
7917
|
return this;
|
|
7761
7918
|
}
|
|
@@ -7766,7 +7923,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7766
7923
|
* @return Whether the pager field is set.
|
|
7767
7924
|
*/
|
|
7768
7925
|
public boolean hasPager() {
|
|
7769
|
-
return ((bitField1_ &
|
|
7926
|
+
return ((bitField1_ & 0x00000200) != 0);
|
|
7770
7927
|
}
|
|
7771
7928
|
/**
|
|
7772
7929
|
* <code>optional string pager = 41;</code>
|
|
@@ -7810,7 +7967,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7810
7967
|
java.lang.String value) {
|
|
7811
7968
|
if (value == null) { throw new NullPointerException(); }
|
|
7812
7969
|
pager_ = value;
|
|
7813
|
-
bitField1_ |=
|
|
7970
|
+
bitField1_ |= 0x00000200;
|
|
7814
7971
|
onChanged();
|
|
7815
7972
|
return this;
|
|
7816
7973
|
}
|
|
@@ -7820,7 +7977,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7820
7977
|
*/
|
|
7821
7978
|
public Builder clearPager() {
|
|
7822
7979
|
pager_ = getDefaultInstance().getPager();
|
|
7823
|
-
bitField1_ = (bitField1_ & ~
|
|
7980
|
+
bitField1_ = (bitField1_ & ~0x00000200);
|
|
7824
7981
|
onChanged();
|
|
7825
7982
|
return this;
|
|
7826
7983
|
}
|
|
@@ -7834,7 +7991,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7834
7991
|
if (value == null) { throw new NullPointerException(); }
|
|
7835
7992
|
checkByteStringIsUtf8(value);
|
|
7836
7993
|
pager_ = value;
|
|
7837
|
-
bitField1_ |=
|
|
7994
|
+
bitField1_ |= 0x00000200;
|
|
7838
7995
|
onChanged();
|
|
7839
7996
|
return this;
|
|
7840
7997
|
}
|
|
@@ -7845,7 +8002,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7845
8002
|
* @return Whether the ipPhone field is set.
|
|
7846
8003
|
*/
|
|
7847
8004
|
public boolean hasIpPhone() {
|
|
7848
|
-
return ((bitField1_ &
|
|
8005
|
+
return ((bitField1_ & 0x00000400) != 0);
|
|
7849
8006
|
}
|
|
7850
8007
|
/**
|
|
7851
8008
|
* <code>optional string ip_phone = 42;</code>
|
|
@@ -7889,7 +8046,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7889
8046
|
java.lang.String value) {
|
|
7890
8047
|
if (value == null) { throw new NullPointerException(); }
|
|
7891
8048
|
ipPhone_ = value;
|
|
7892
|
-
bitField1_ |=
|
|
8049
|
+
bitField1_ |= 0x00000400;
|
|
7893
8050
|
onChanged();
|
|
7894
8051
|
return this;
|
|
7895
8052
|
}
|
|
@@ -7899,7 +8056,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7899
8056
|
*/
|
|
7900
8057
|
public Builder clearIpPhone() {
|
|
7901
8058
|
ipPhone_ = getDefaultInstance().getIpPhone();
|
|
7902
|
-
bitField1_ = (bitField1_ & ~
|
|
8059
|
+
bitField1_ = (bitField1_ & ~0x00000400);
|
|
7903
8060
|
onChanged();
|
|
7904
8061
|
return this;
|
|
7905
8062
|
}
|
|
@@ -7913,7 +8070,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7913
8070
|
if (value == null) { throw new NullPointerException(); }
|
|
7914
8071
|
checkByteStringIsUtf8(value);
|
|
7915
8072
|
ipPhone_ = value;
|
|
7916
|
-
bitField1_ |=
|
|
8073
|
+
bitField1_ |= 0x00000400;
|
|
7917
8074
|
onChanged();
|
|
7918
8075
|
return this;
|
|
7919
8076
|
}
|
|
@@ -7924,7 +8081,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7924
8081
|
* @return Whether the homePage field is set.
|
|
7925
8082
|
*/
|
|
7926
8083
|
public boolean hasHomePage() {
|
|
7927
|
-
return ((bitField1_ &
|
|
8084
|
+
return ((bitField1_ & 0x00000800) != 0);
|
|
7928
8085
|
}
|
|
7929
8086
|
/**
|
|
7930
8087
|
* <code>optional string home_page = 43;</code>
|
|
@@ -7968,7 +8125,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7968
8125
|
java.lang.String value) {
|
|
7969
8126
|
if (value == null) { throw new NullPointerException(); }
|
|
7970
8127
|
homePage_ = value;
|
|
7971
|
-
bitField1_ |=
|
|
8128
|
+
bitField1_ |= 0x00000800;
|
|
7972
8129
|
onChanged();
|
|
7973
8130
|
return this;
|
|
7974
8131
|
}
|
|
@@ -7978,7 +8135,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7978
8135
|
*/
|
|
7979
8136
|
public Builder clearHomePage() {
|
|
7980
8137
|
homePage_ = getDefaultInstance().getHomePage();
|
|
7981
|
-
bitField1_ = (bitField1_ & ~
|
|
8138
|
+
bitField1_ = (bitField1_ & ~0x00000800);
|
|
7982
8139
|
onChanged();
|
|
7983
8140
|
return this;
|
|
7984
8141
|
}
|
|
@@ -7992,7 +8149,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7992
8149
|
if (value == null) { throw new NullPointerException(); }
|
|
7993
8150
|
checkByteStringIsUtf8(value);
|
|
7994
8151
|
homePage_ = value;
|
|
7995
|
-
bitField1_ |=
|
|
8152
|
+
bitField1_ |= 0x00000800;
|
|
7996
8153
|
onChanged();
|
|
7997
8154
|
return this;
|
|
7998
8155
|
}
|
|
@@ -8003,7 +8160,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8003
8160
|
* @return Whether the postOfficeBox field is set.
|
|
8004
8161
|
*/
|
|
8005
8162
|
public boolean hasPostOfficeBox() {
|
|
8006
|
-
return ((bitField1_ &
|
|
8163
|
+
return ((bitField1_ & 0x00001000) != 0);
|
|
8007
8164
|
}
|
|
8008
8165
|
/**
|
|
8009
8166
|
* <code>optional string post_office_box = 44;</code>
|
|
@@ -8047,7 +8204,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8047
8204
|
java.lang.String value) {
|
|
8048
8205
|
if (value == null) { throw new NullPointerException(); }
|
|
8049
8206
|
postOfficeBox_ = value;
|
|
8050
|
-
bitField1_ |=
|
|
8207
|
+
bitField1_ |= 0x00001000;
|
|
8051
8208
|
onChanged();
|
|
8052
8209
|
return this;
|
|
8053
8210
|
}
|
|
@@ -8057,7 +8214,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8057
8214
|
*/
|
|
8058
8215
|
public Builder clearPostOfficeBox() {
|
|
8059
8216
|
postOfficeBox_ = getDefaultInstance().getPostOfficeBox();
|
|
8060
|
-
bitField1_ = (bitField1_ & ~
|
|
8217
|
+
bitField1_ = (bitField1_ & ~0x00001000);
|
|
8061
8218
|
onChanged();
|
|
8062
8219
|
return this;
|
|
8063
8220
|
}
|
|
@@ -8071,7 +8228,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8071
8228
|
if (value == null) { throw new NullPointerException(); }
|
|
8072
8229
|
checkByteStringIsUtf8(value);
|
|
8073
8230
|
postOfficeBox_ = value;
|
|
8074
|
-
bitField1_ |=
|
|
8231
|
+
bitField1_ |= 0x00001000;
|
|
8075
8232
|
onChanged();
|
|
8076
8233
|
return this;
|
|
8077
8234
|
}
|
|
@@ -8082,7 +8239,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8082
8239
|
* @return Whether the state field is set.
|
|
8083
8240
|
*/
|
|
8084
8241
|
public boolean hasState() {
|
|
8085
|
-
return ((bitField1_ &
|
|
8242
|
+
return ((bitField1_ & 0x00002000) != 0);
|
|
8086
8243
|
}
|
|
8087
8244
|
/**
|
|
8088
8245
|
* <code>optional string state = 45;</code>
|
|
@@ -8126,7 +8283,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8126
8283
|
java.lang.String value) {
|
|
8127
8284
|
if (value == null) { throw new NullPointerException(); }
|
|
8128
8285
|
state_ = value;
|
|
8129
|
-
bitField1_ |=
|
|
8286
|
+
bitField1_ |= 0x00002000;
|
|
8130
8287
|
onChanged();
|
|
8131
8288
|
return this;
|
|
8132
8289
|
}
|
|
@@ -8136,7 +8293,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8136
8293
|
*/
|
|
8137
8294
|
public Builder clearState() {
|
|
8138
8295
|
state_ = getDefaultInstance().getState();
|
|
8139
|
-
bitField1_ = (bitField1_ & ~
|
|
8296
|
+
bitField1_ = (bitField1_ & ~0x00002000);
|
|
8140
8297
|
onChanged();
|
|
8141
8298
|
return this;
|
|
8142
8299
|
}
|
|
@@ -8150,7 +8307,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8150
8307
|
if (value == null) { throw new NullPointerException(); }
|
|
8151
8308
|
checkByteStringIsUtf8(value);
|
|
8152
8309
|
state_ = value;
|
|
8153
|
-
bitField1_ |=
|
|
8310
|
+
bitField1_ |= 0x00002000;
|
|
8154
8311
|
onChanged();
|
|
8155
8312
|
return this;
|
|
8156
8313
|
}
|
|
@@ -8161,7 +8318,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8161
8318
|
* @return Whether the profilePath field is set.
|
|
8162
8319
|
*/
|
|
8163
8320
|
public boolean hasProfilePath() {
|
|
8164
|
-
return ((bitField1_ &
|
|
8321
|
+
return ((bitField1_ & 0x00004000) != 0);
|
|
8165
8322
|
}
|
|
8166
8323
|
/**
|
|
8167
8324
|
* <code>optional string profile_path = 46;</code>
|
|
@@ -8205,7 +8362,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8205
8362
|
java.lang.String value) {
|
|
8206
8363
|
if (value == null) { throw new NullPointerException(); }
|
|
8207
8364
|
profilePath_ = value;
|
|
8208
|
-
bitField1_ |=
|
|
8365
|
+
bitField1_ |= 0x00004000;
|
|
8209
8366
|
onChanged();
|
|
8210
8367
|
return this;
|
|
8211
8368
|
}
|
|
@@ -8215,7 +8372,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8215
8372
|
*/
|
|
8216
8373
|
public Builder clearProfilePath() {
|
|
8217
8374
|
profilePath_ = getDefaultInstance().getProfilePath();
|
|
8218
|
-
bitField1_ = (bitField1_ & ~
|
|
8375
|
+
bitField1_ = (bitField1_ & ~0x00004000);
|
|
8219
8376
|
onChanged();
|
|
8220
8377
|
return this;
|
|
8221
8378
|
}
|
|
@@ -8229,7 +8386,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8229
8386
|
if (value == null) { throw new NullPointerException(); }
|
|
8230
8387
|
checkByteStringIsUtf8(value);
|
|
8231
8388
|
profilePath_ = value;
|
|
8232
|
-
bitField1_ |=
|
|
8389
|
+
bitField1_ |= 0x00004000;
|
|
8233
8390
|
onChanged();
|
|
8234
8391
|
return this;
|
|
8235
8392
|
}
|
|
@@ -8240,7 +8397,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8240
8397
|
* @return Whether the scriptPath field is set.
|
|
8241
8398
|
*/
|
|
8242
8399
|
public boolean hasScriptPath() {
|
|
8243
|
-
return ((bitField1_ &
|
|
8400
|
+
return ((bitField1_ & 0x00008000) != 0);
|
|
8244
8401
|
}
|
|
8245
8402
|
/**
|
|
8246
8403
|
* <code>optional string script_path = 47;</code>
|
|
@@ -8284,7 +8441,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8284
8441
|
java.lang.String value) {
|
|
8285
8442
|
if (value == null) { throw new NullPointerException(); }
|
|
8286
8443
|
scriptPath_ = value;
|
|
8287
|
-
bitField1_ |=
|
|
8444
|
+
bitField1_ |= 0x00008000;
|
|
8288
8445
|
onChanged();
|
|
8289
8446
|
return this;
|
|
8290
8447
|
}
|
|
@@ -8294,7 +8451,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8294
8451
|
*/
|
|
8295
8452
|
public Builder clearScriptPath() {
|
|
8296
8453
|
scriptPath_ = getDefaultInstance().getScriptPath();
|
|
8297
|
-
bitField1_ = (bitField1_ & ~
|
|
8454
|
+
bitField1_ = (bitField1_ & ~0x00008000);
|
|
8298
8455
|
onChanged();
|
|
8299
8456
|
return this;
|
|
8300
8457
|
}
|
|
@@ -8308,7 +8465,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8308
8465
|
if (value == null) { throw new NullPointerException(); }
|
|
8309
8466
|
checkByteStringIsUtf8(value);
|
|
8310
8467
|
scriptPath_ = value;
|
|
8311
|
-
bitField1_ |=
|
|
8468
|
+
bitField1_ |= 0x00008000;
|
|
8312
8469
|
onChanged();
|
|
8313
8470
|
return this;
|
|
8314
8471
|
}
|
|
@@ -8319,7 +8476,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8319
8476
|
* @return Whether the homeDirectory field is set.
|
|
8320
8477
|
*/
|
|
8321
8478
|
public boolean hasHomeDirectory() {
|
|
8322
|
-
return ((bitField1_ &
|
|
8479
|
+
return ((bitField1_ & 0x00010000) != 0);
|
|
8323
8480
|
}
|
|
8324
8481
|
/**
|
|
8325
8482
|
* <code>optional string home_directory = 48;</code>
|
|
@@ -8363,7 +8520,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8363
8520
|
java.lang.String value) {
|
|
8364
8521
|
if (value == null) { throw new NullPointerException(); }
|
|
8365
8522
|
homeDirectory_ = value;
|
|
8366
|
-
bitField1_ |=
|
|
8523
|
+
bitField1_ |= 0x00010000;
|
|
8367
8524
|
onChanged();
|
|
8368
8525
|
return this;
|
|
8369
8526
|
}
|
|
@@ -8373,7 +8530,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8373
8530
|
*/
|
|
8374
8531
|
public Builder clearHomeDirectory() {
|
|
8375
8532
|
homeDirectory_ = getDefaultInstance().getHomeDirectory();
|
|
8376
|
-
bitField1_ = (bitField1_ & ~
|
|
8533
|
+
bitField1_ = (bitField1_ & ~0x00010000);
|
|
8377
8534
|
onChanged();
|
|
8378
8535
|
return this;
|
|
8379
8536
|
}
|
|
@@ -8387,7 +8544,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8387
8544
|
if (value == null) { throw new NullPointerException(); }
|
|
8388
8545
|
checkByteStringIsUtf8(value);
|
|
8389
8546
|
homeDirectory_ = value;
|
|
8390
|
-
bitField1_ |=
|
|
8547
|
+
bitField1_ |= 0x00010000;
|
|
8391
8548
|
onChanged();
|
|
8392
8549
|
return this;
|
|
8393
8550
|
}
|
|
@@ -8399,7 +8556,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8399
8556
|
*/
|
|
8400
8557
|
@java.lang.Override
|
|
8401
8558
|
public boolean hasThumbnailPhoto() {
|
|
8402
|
-
return ((bitField1_ &
|
|
8559
|
+
return ((bitField1_ & 0x00020000) != 0);
|
|
8403
8560
|
}
|
|
8404
8561
|
/**
|
|
8405
8562
|
* <code>optional bytes thumbnail_photo = 49;</code>
|
|
@@ -8417,7 +8574,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8417
8574
|
public Builder setThumbnailPhoto(com.google.protobuf.ByteString value) {
|
|
8418
8575
|
if (value == null) { throw new NullPointerException(); }
|
|
8419
8576
|
thumbnailPhoto_ = value;
|
|
8420
|
-
bitField1_ |=
|
|
8577
|
+
bitField1_ |= 0x00020000;
|
|
8421
8578
|
onChanged();
|
|
8422
8579
|
return this;
|
|
8423
8580
|
}
|
|
@@ -8426,7 +8583,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8426
8583
|
* @return This builder for chaining.
|
|
8427
8584
|
*/
|
|
8428
8585
|
public Builder clearThumbnailPhoto() {
|
|
8429
|
-
bitField1_ = (bitField1_ & ~
|
|
8586
|
+
bitField1_ = (bitField1_ & ~0x00020000);
|
|
8430
8587
|
thumbnailPhoto_ = getDefaultInstance().getThumbnailPhoto();
|
|
8431
8588
|
onChanged();
|
|
8432
8589
|
return this;
|
|
@@ -8438,7 +8595,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8438
8595
|
* @return Whether the employeeId field is set.
|
|
8439
8596
|
*/
|
|
8440
8597
|
public boolean hasEmployeeId() {
|
|
8441
|
-
return ((bitField1_ &
|
|
8598
|
+
return ((bitField1_ & 0x00040000) != 0);
|
|
8442
8599
|
}
|
|
8443
8600
|
/**
|
|
8444
8601
|
* <code>optional string employee_id = 50;</code>
|
|
@@ -8482,7 +8639,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8482
8639
|
java.lang.String value) {
|
|
8483
8640
|
if (value == null) { throw new NullPointerException(); }
|
|
8484
8641
|
employeeId_ = value;
|
|
8485
|
-
bitField1_ |=
|
|
8642
|
+
bitField1_ |= 0x00040000;
|
|
8486
8643
|
onChanged();
|
|
8487
8644
|
return this;
|
|
8488
8645
|
}
|
|
@@ -8492,7 +8649,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8492
8649
|
*/
|
|
8493
8650
|
public Builder clearEmployeeId() {
|
|
8494
8651
|
employeeId_ = getDefaultInstance().getEmployeeId();
|
|
8495
|
-
bitField1_ = (bitField1_ & ~
|
|
8652
|
+
bitField1_ = (bitField1_ & ~0x00040000);
|
|
8496
8653
|
onChanged();
|
|
8497
8654
|
return this;
|
|
8498
8655
|
}
|
|
@@ -8506,7 +8663,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8506
8663
|
if (value == null) { throw new NullPointerException(); }
|
|
8507
8664
|
checkByteStringIsUtf8(value);
|
|
8508
8665
|
employeeId_ = value;
|
|
8509
|
-
bitField1_ |=
|
|
8666
|
+
bitField1_ |= 0x00040000;
|
|
8510
8667
|
onChanged();
|
|
8511
8668
|
return this;
|
|
8512
8669
|
}
|
|
@@ -8517,7 +8674,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8517
8674
|
* @return Whether the employeeNumber field is set.
|
|
8518
8675
|
*/
|
|
8519
8676
|
public boolean hasEmployeeNumber() {
|
|
8520
|
-
return ((bitField1_ &
|
|
8677
|
+
return ((bitField1_ & 0x00080000) != 0);
|
|
8521
8678
|
}
|
|
8522
8679
|
/**
|
|
8523
8680
|
* <code>optional string employee_number = 51;</code>
|
|
@@ -8561,7 +8718,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8561
8718
|
java.lang.String value) {
|
|
8562
8719
|
if (value == null) { throw new NullPointerException(); }
|
|
8563
8720
|
employeeNumber_ = value;
|
|
8564
|
-
bitField1_ |=
|
|
8721
|
+
bitField1_ |= 0x00080000;
|
|
8565
8722
|
onChanged();
|
|
8566
8723
|
return this;
|
|
8567
8724
|
}
|
|
@@ -8571,7 +8728,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8571
8728
|
*/
|
|
8572
8729
|
public Builder clearEmployeeNumber() {
|
|
8573
8730
|
employeeNumber_ = getDefaultInstance().getEmployeeNumber();
|
|
8574
|
-
bitField1_ = (bitField1_ & ~
|
|
8731
|
+
bitField1_ = (bitField1_ & ~0x00080000);
|
|
8575
8732
|
onChanged();
|
|
8576
8733
|
return this;
|
|
8577
8734
|
}
|
|
@@ -8585,7 +8742,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8585
8742
|
if (value == null) { throw new NullPointerException(); }
|
|
8586
8743
|
checkByteStringIsUtf8(value);
|
|
8587
8744
|
employeeNumber_ = value;
|
|
8588
|
-
bitField1_ |=
|
|
8745
|
+
bitField1_ |= 0x00080000;
|
|
8589
8746
|
onChanged();
|
|
8590
8747
|
return this;
|
|
8591
8748
|
}
|
|
@@ -8596,7 +8753,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8596
8753
|
* @return Whether the employeeType field is set.
|
|
8597
8754
|
*/
|
|
8598
8755
|
public boolean hasEmployeeType() {
|
|
8599
|
-
return ((bitField1_ &
|
|
8756
|
+
return ((bitField1_ & 0x00100000) != 0);
|
|
8600
8757
|
}
|
|
8601
8758
|
/**
|
|
8602
8759
|
* <code>optional string employee_type = 52;</code>
|
|
@@ -8640,7 +8797,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8640
8797
|
java.lang.String value) {
|
|
8641
8798
|
if (value == null) { throw new NullPointerException(); }
|
|
8642
8799
|
employeeType_ = value;
|
|
8643
|
-
bitField1_ |=
|
|
8800
|
+
bitField1_ |= 0x00100000;
|
|
8644
8801
|
onChanged();
|
|
8645
8802
|
return this;
|
|
8646
8803
|
}
|
|
@@ -8650,7 +8807,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8650
8807
|
*/
|
|
8651
8808
|
public Builder clearEmployeeType() {
|
|
8652
8809
|
employeeType_ = getDefaultInstance().getEmployeeType();
|
|
8653
|
-
bitField1_ = (bitField1_ & ~
|
|
8810
|
+
bitField1_ = (bitField1_ & ~0x00100000);
|
|
8654
8811
|
onChanged();
|
|
8655
8812
|
return this;
|
|
8656
8813
|
}
|
|
@@ -8664,7 +8821,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8664
8821
|
if (value == null) { throw new NullPointerException(); }
|
|
8665
8822
|
checkByteStringIsUtf8(value);
|
|
8666
8823
|
employeeType_ = value;
|
|
8667
|
-
bitField1_ |=
|
|
8824
|
+
bitField1_ |= 0x00100000;
|
|
8668
8825
|
onChanged();
|
|
8669
8826
|
return this;
|
|
8670
8827
|
}
|
|
@@ -8675,7 +8832,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8675
8832
|
* @return Whether the initials field is set.
|
|
8676
8833
|
*/
|
|
8677
8834
|
public boolean hasInitials() {
|
|
8678
|
-
return ((bitField1_ &
|
|
8835
|
+
return ((bitField1_ & 0x00200000) != 0);
|
|
8679
8836
|
}
|
|
8680
8837
|
/**
|
|
8681
8838
|
* <code>optional string initials = 53;</code>
|
|
@@ -8719,7 +8876,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8719
8876
|
java.lang.String value) {
|
|
8720
8877
|
if (value == null) { throw new NullPointerException(); }
|
|
8721
8878
|
initials_ = value;
|
|
8722
|
-
bitField1_ |=
|
|
8879
|
+
bitField1_ |= 0x00200000;
|
|
8723
8880
|
onChanged();
|
|
8724
8881
|
return this;
|
|
8725
8882
|
}
|
|
@@ -8729,7 +8886,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8729
8886
|
*/
|
|
8730
8887
|
public Builder clearInitials() {
|
|
8731
8888
|
initials_ = getDefaultInstance().getInitials();
|
|
8732
|
-
bitField1_ = (bitField1_ & ~
|
|
8889
|
+
bitField1_ = (bitField1_ & ~0x00200000);
|
|
8733
8890
|
onChanged();
|
|
8734
8891
|
return this;
|
|
8735
8892
|
}
|
|
@@ -8743,7 +8900,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8743
8900
|
if (value == null) { throw new NullPointerException(); }
|
|
8744
8901
|
checkByteStringIsUtf8(value);
|
|
8745
8902
|
initials_ = value;
|
|
8746
|
-
bitField1_ |=
|
|
8903
|
+
bitField1_ |= 0x00200000;
|
|
8747
8904
|
onChanged();
|
|
8748
8905
|
return this;
|
|
8749
8906
|
}
|
|
@@ -8754,7 +8911,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8754
8911
|
* @return Whether the middleName field is set.
|
|
8755
8912
|
*/
|
|
8756
8913
|
public boolean hasMiddleName() {
|
|
8757
|
-
return ((bitField1_ &
|
|
8914
|
+
return ((bitField1_ & 0x00400000) != 0);
|
|
8758
8915
|
}
|
|
8759
8916
|
/**
|
|
8760
8917
|
* <code>optional string middle_name = 54;</code>
|
|
@@ -8798,7 +8955,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8798
8955
|
java.lang.String value) {
|
|
8799
8956
|
if (value == null) { throw new NullPointerException(); }
|
|
8800
8957
|
middleName_ = value;
|
|
8801
|
-
bitField1_ |=
|
|
8958
|
+
bitField1_ |= 0x00400000;
|
|
8802
8959
|
onChanged();
|
|
8803
8960
|
return this;
|
|
8804
8961
|
}
|
|
@@ -8808,7 +8965,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8808
8965
|
*/
|
|
8809
8966
|
public Builder clearMiddleName() {
|
|
8810
8967
|
middleName_ = getDefaultInstance().getMiddleName();
|
|
8811
|
-
bitField1_ = (bitField1_ & ~
|
|
8968
|
+
bitField1_ = (bitField1_ & ~0x00400000);
|
|
8812
8969
|
onChanged();
|
|
8813
8970
|
return this;
|
|
8814
8971
|
}
|
|
@@ -8822,7 +8979,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8822
8979
|
if (value == null) { throw new NullPointerException(); }
|
|
8823
8980
|
checkByteStringIsUtf8(value);
|
|
8824
8981
|
middleName_ = value;
|
|
8825
|
-
bitField1_ |=
|
|
8982
|
+
bitField1_ |= 0x00400000;
|
|
8826
8983
|
onChanged();
|
|
8827
8984
|
return this;
|
|
8828
8985
|
}
|
|
@@ -8833,7 +8990,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8833
8990
|
* @return Whether the primaryGroupOid field is set.
|
|
8834
8991
|
*/
|
|
8835
8992
|
public boolean hasPrimaryGroupOid() {
|
|
8836
|
-
return ((bitField1_ &
|
|
8993
|
+
return ((bitField1_ & 0x00800000) != 0);
|
|
8837
8994
|
}
|
|
8838
8995
|
/**
|
|
8839
8996
|
* <code>optional string primary_group_oid = 55;</code>
|
|
@@ -8877,7 +9034,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8877
9034
|
java.lang.String value) {
|
|
8878
9035
|
if (value == null) { throw new NullPointerException(); }
|
|
8879
9036
|
primaryGroupOid_ = value;
|
|
8880
|
-
bitField1_ |=
|
|
9037
|
+
bitField1_ |= 0x00800000;
|
|
8881
9038
|
onChanged();
|
|
8882
9039
|
return this;
|
|
8883
9040
|
}
|
|
@@ -8887,7 +9044,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8887
9044
|
*/
|
|
8888
9045
|
public Builder clearPrimaryGroupOid() {
|
|
8889
9046
|
primaryGroupOid_ = getDefaultInstance().getPrimaryGroupOid();
|
|
8890
|
-
bitField1_ = (bitField1_ & ~
|
|
9047
|
+
bitField1_ = (bitField1_ & ~0x00800000);
|
|
8891
9048
|
onChanged();
|
|
8892
9049
|
return this;
|
|
8893
9050
|
}
|
|
@@ -8901,7 +9058,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8901
9058
|
if (value == null) { throw new NullPointerException(); }
|
|
8902
9059
|
checkByteStringIsUtf8(value);
|
|
8903
9060
|
primaryGroupOid_ = value;
|
|
8904
|
-
bitField1_ |=
|
|
9061
|
+
bitField1_ |= 0x00800000;
|
|
8905
9062
|
onChanged();
|
|
8906
9063
|
return this;
|
|
8907
9064
|
}
|
|
@@ -8912,7 +9069,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8912
9069
|
* @return Whether the managerOid field is set.
|
|
8913
9070
|
*/
|
|
8914
9071
|
public boolean hasManagerOid() {
|
|
8915
|
-
return ((bitField1_ &
|
|
9072
|
+
return ((bitField1_ & 0x01000000) != 0);
|
|
8916
9073
|
}
|
|
8917
9074
|
/**
|
|
8918
9075
|
* <code>optional string manager_oid = 56;</code>
|
|
@@ -8956,7 +9113,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8956
9113
|
java.lang.String value) {
|
|
8957
9114
|
if (value == null) { throw new NullPointerException(); }
|
|
8958
9115
|
managerOid_ = value;
|
|
8959
|
-
bitField1_ |=
|
|
9116
|
+
bitField1_ |= 0x01000000;
|
|
8960
9117
|
onChanged();
|
|
8961
9118
|
return this;
|
|
8962
9119
|
}
|
|
@@ -8966,7 +9123,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8966
9123
|
*/
|
|
8967
9124
|
public Builder clearManagerOid() {
|
|
8968
9125
|
managerOid_ = getDefaultInstance().getManagerOid();
|
|
8969
|
-
bitField1_ = (bitField1_ & ~
|
|
9126
|
+
bitField1_ = (bitField1_ & ~0x01000000);
|
|
8970
9127
|
onChanged();
|
|
8971
9128
|
return this;
|
|
8972
9129
|
}
|
|
@@ -8980,7 +9137,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8980
9137
|
if (value == null) { throw new NullPointerException(); }
|
|
8981
9138
|
checkByteStringIsUtf8(value);
|
|
8982
9139
|
managerOid_ = value;
|
|
8983
|
-
bitField1_ |=
|
|
9140
|
+
bitField1_ |= 0x01000000;
|
|
8984
9141
|
onChanged();
|
|
8985
9142
|
return this;
|
|
8986
9143
|
}
|
|
@@ -8991,7 +9148,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8991
9148
|
if (!memberOfOid_.isModifiable()) {
|
|
8992
9149
|
memberOfOid_ = new com.google.protobuf.LazyStringArrayList(memberOfOid_);
|
|
8993
9150
|
}
|
|
8994
|
-
bitField1_ |=
|
|
9151
|
+
bitField1_ |= 0x02000000;
|
|
8995
9152
|
}
|
|
8996
9153
|
/**
|
|
8997
9154
|
* <code>repeated string member_of_oid = 57;</code>
|
|
@@ -9037,7 +9194,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9037
9194
|
if (value == null) { throw new NullPointerException(); }
|
|
9038
9195
|
ensureMemberOfOidIsMutable();
|
|
9039
9196
|
memberOfOid_.set(index, value);
|
|
9040
|
-
bitField1_ |=
|
|
9197
|
+
bitField1_ |= 0x02000000;
|
|
9041
9198
|
onChanged();
|
|
9042
9199
|
return this;
|
|
9043
9200
|
}
|
|
@@ -9051,7 +9208,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9051
9208
|
if (value == null) { throw new NullPointerException(); }
|
|
9052
9209
|
ensureMemberOfOidIsMutable();
|
|
9053
9210
|
memberOfOid_.add(value);
|
|
9054
|
-
bitField1_ |=
|
|
9211
|
+
bitField1_ |= 0x02000000;
|
|
9055
9212
|
onChanged();
|
|
9056
9213
|
return this;
|
|
9057
9214
|
}
|
|
@@ -9065,7 +9222,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9065
9222
|
ensureMemberOfOidIsMutable();
|
|
9066
9223
|
com.google.protobuf.AbstractMessageLite.Builder.addAll(
|
|
9067
9224
|
values, memberOfOid_);
|
|
9068
|
-
bitField1_ |=
|
|
9225
|
+
bitField1_ |= 0x02000000;
|
|
9069
9226
|
onChanged();
|
|
9070
9227
|
return this;
|
|
9071
9228
|
}
|
|
@@ -9076,7 +9233,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9076
9233
|
public Builder clearMemberOfOid() {
|
|
9077
9234
|
memberOfOid_ =
|
|
9078
9235
|
com.google.protobuf.LazyStringArrayList.emptyList();
|
|
9079
|
-
bitField1_ = (bitField1_ & ~
|
|
9236
|
+
bitField1_ = (bitField1_ & ~0x02000000);;
|
|
9080
9237
|
onChanged();
|
|
9081
9238
|
return this;
|
|
9082
9239
|
}
|
|
@@ -9091,7 +9248,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9091
9248
|
checkByteStringIsUtf8(value);
|
|
9092
9249
|
ensureMemberOfOidIsMutable();
|
|
9093
9250
|
memberOfOid_.add(value);
|
|
9094
|
-
bitField1_ |=
|
|
9251
|
+
bitField1_ |= 0x02000000;
|
|
9095
9252
|
onChanged();
|
|
9096
9253
|
return this;
|
|
9097
9254
|
}
|