@lansweeper/data-platform-outbound-grpc 0.6.0 → 0.7.0
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 +23 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +107 -6
- package/gen-proto/outbound_pb.js +859 -53
- package/generated-go/outbound.pb.go +13354 -13126
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +22 -2
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/AssetOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LockedFields$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LockedFields$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LockedFields.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/LockedFieldsOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Printer$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Printer$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Printer.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/PrinterOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +22 -2
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java +532 -114
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +42 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LockedFields.java +2549 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LockedFieldsOrBuilder.java +225 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3911 -3882
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Printer.java +4 -243
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PrinterOrBuilder.java +0 -27
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +4 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
- package/model/target/{outbound-model-0.5.0-sources.jar → outbound-model-0.6.1-sources.jar} +0 -0
- package/model/target/{outbound-model-0.5.0.jar → outbound-model-0.6.1.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +22 -2
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.5.0-sources.jar → outbound-service-0.6.1-sources.jar} +0 -0
- package/service/target/{outbound-service-0.5.0.jar → outbound-service-0.6.1.jar} +0 -0
package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java
CHANGED
|
@@ -1154,6 +1154,32 @@ private static final long serialVersionUID = 0L;
|
|
|
1154
1154
|
return hyperVComputer_ == null ? com.lansweeper.dp.outbound.v1.HyperV.getDefaultInstance() : hyperVComputer_;
|
|
1155
1155
|
}
|
|
1156
1156
|
|
|
1157
|
+
public static final int AD_PRINTER_FIELD_NUMBER = 96;
|
|
1158
|
+
private com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter adPrinter_;
|
|
1159
|
+
/**
|
|
1160
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter ad_printer = 96;</code>
|
|
1161
|
+
* @return Whether the adPrinter field is set.
|
|
1162
|
+
*/
|
|
1163
|
+
@java.lang.Override
|
|
1164
|
+
public boolean hasAdPrinter() {
|
|
1165
|
+
return ((bitField0_ & 0x00400000) != 0);
|
|
1166
|
+
}
|
|
1167
|
+
/**
|
|
1168
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter ad_printer = 96;</code>
|
|
1169
|
+
* @return The adPrinter.
|
|
1170
|
+
*/
|
|
1171
|
+
@java.lang.Override
|
|
1172
|
+
public com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter getAdPrinter() {
|
|
1173
|
+
return adPrinter_ == null ? com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter.getDefaultInstance() : adPrinter_;
|
|
1174
|
+
}
|
|
1175
|
+
/**
|
|
1176
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter ad_printer = 96;</code>
|
|
1177
|
+
*/
|
|
1178
|
+
@java.lang.Override
|
|
1179
|
+
public com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinterOrBuilder getAdPrinterOrBuilder() {
|
|
1180
|
+
return adPrinter_ == null ? com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter.getDefaultInstance() : adPrinter_;
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1157
1183
|
public static final int PRINTER_FIELD_NUMBER = 84;
|
|
1158
1184
|
private com.lansweeper.dp.outbound.v1.Printer printer_;
|
|
1159
1185
|
/**
|
|
@@ -1162,7 +1188,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1162
1188
|
*/
|
|
1163
1189
|
@java.lang.Override
|
|
1164
1190
|
public boolean hasPrinter() {
|
|
1165
|
-
return ((bitField0_ &
|
|
1191
|
+
return ((bitField0_ & 0x00800000) != 0);
|
|
1166
1192
|
}
|
|
1167
1193
|
/**
|
|
1168
1194
|
* <code>optional .com.lansweeper.dp.outbound.v1.Printer printer = 84;</code>
|
|
@@ -1188,7 +1214,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1188
1214
|
*/
|
|
1189
1215
|
@java.lang.Override
|
|
1190
1216
|
public boolean hasUps() {
|
|
1191
|
-
return ((bitField0_ &
|
|
1217
|
+
return ((bitField0_ & 0x01000000) != 0);
|
|
1192
1218
|
}
|
|
1193
1219
|
/**
|
|
1194
1220
|
* <code>optional .com.lansweeper.dp.outbound.v1.Ups ups = 85;</code>
|
|
@@ -1218,7 +1244,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1218
1244
|
*/
|
|
1219
1245
|
@java.lang.Override
|
|
1220
1246
|
public boolean hasOtModule() {
|
|
1221
|
-
return ((bitField0_ &
|
|
1247
|
+
return ((bitField0_ & 0x02000000) != 0);
|
|
1222
1248
|
}
|
|
1223
1249
|
/**
|
|
1224
1250
|
* <pre>
|
|
@@ -1252,7 +1278,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1252
1278
|
*/
|
|
1253
1279
|
@java.lang.Override
|
|
1254
1280
|
public boolean hasCloud() {
|
|
1255
|
-
return ((bitField0_ &
|
|
1281
|
+
return ((bitField0_ & 0x04000000) != 0);
|
|
1256
1282
|
}
|
|
1257
1283
|
/**
|
|
1258
1284
|
* <code>optional .com.lansweeper.dp.outbound.v1.CloudEntity cloud = 17;</code>
|
|
@@ -1319,7 +1345,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1319
1345
|
*/
|
|
1320
1346
|
@java.lang.Override
|
|
1321
1347
|
public boolean hasIntuneDevice() {
|
|
1322
|
-
return ((bitField0_ &
|
|
1348
|
+
return ((bitField0_ & 0x08000000) != 0);
|
|
1323
1349
|
}
|
|
1324
1350
|
/**
|
|
1325
1351
|
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
@@ -1345,7 +1371,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1345
1371
|
*/
|
|
1346
1372
|
@java.lang.Override
|
|
1347
1373
|
public boolean hasVmware() {
|
|
1348
|
-
return ((bitField0_ &
|
|
1374
|
+
return ((bitField0_ & 0x10000000) != 0);
|
|
1349
1375
|
}
|
|
1350
1376
|
/**
|
|
1351
1377
|
* <code>optional .com.lansweeper.dp.outbound.v1.Vmware vmware = 93;</code>
|
|
@@ -1375,7 +1401,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1375
1401
|
*/
|
|
1376
1402
|
@java.lang.Override
|
|
1377
1403
|
public boolean hasOffice365Organization() {
|
|
1378
|
-
return ((bitField0_ &
|
|
1404
|
+
return ((bitField0_ & 0x20000000) != 0);
|
|
1379
1405
|
}
|
|
1380
1406
|
/**
|
|
1381
1407
|
* <pre>
|
|
@@ -1409,7 +1435,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1409
1435
|
*/
|
|
1410
1436
|
@java.lang.Override
|
|
1411
1437
|
public boolean hasCitrix() {
|
|
1412
|
-
return ((bitField0_ &
|
|
1438
|
+
return ((bitField0_ & 0x40000000) != 0);
|
|
1413
1439
|
}
|
|
1414
1440
|
/**
|
|
1415
1441
|
* <code>optional .com.lansweeper.dp.outbound.v1.Citrix citrix = 95;</code>
|
|
@@ -1427,6 +1453,44 @@ private static final long serialVersionUID = 0L;
|
|
|
1427
1453
|
return citrix_ == null ? com.lansweeper.dp.outbound.v1.Citrix.getDefaultInstance() : citrix_;
|
|
1428
1454
|
}
|
|
1429
1455
|
|
|
1456
|
+
public static final int MANUAL_ASSET_LOCKED_FIELDS_FIELD_NUMBER = 97;
|
|
1457
|
+
private com.lansweeper.dp.outbound.v1.LockedFields manualAssetLockedFields_;
|
|
1458
|
+
/**
|
|
1459
|
+
* <pre>
|
|
1460
|
+
* fields locked by the user in the manual asset UI
|
|
1461
|
+
* </pre>
|
|
1462
|
+
*
|
|
1463
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.LockedFields manual_asset_locked_fields = 97;</code>
|
|
1464
|
+
* @return Whether the manualAssetLockedFields field is set.
|
|
1465
|
+
*/
|
|
1466
|
+
@java.lang.Override
|
|
1467
|
+
public boolean hasManualAssetLockedFields() {
|
|
1468
|
+
return ((bitField0_ & 0x80000000) != 0);
|
|
1469
|
+
}
|
|
1470
|
+
/**
|
|
1471
|
+
* <pre>
|
|
1472
|
+
* fields locked by the user in the manual asset UI
|
|
1473
|
+
* </pre>
|
|
1474
|
+
*
|
|
1475
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.LockedFields manual_asset_locked_fields = 97;</code>
|
|
1476
|
+
* @return The manualAssetLockedFields.
|
|
1477
|
+
*/
|
|
1478
|
+
@java.lang.Override
|
|
1479
|
+
public com.lansweeper.dp.outbound.v1.LockedFields getManualAssetLockedFields() {
|
|
1480
|
+
return manualAssetLockedFields_ == null ? com.lansweeper.dp.outbound.v1.LockedFields.getDefaultInstance() : manualAssetLockedFields_;
|
|
1481
|
+
}
|
|
1482
|
+
/**
|
|
1483
|
+
* <pre>
|
|
1484
|
+
* fields locked by the user in the manual asset UI
|
|
1485
|
+
* </pre>
|
|
1486
|
+
*
|
|
1487
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.LockedFields manual_asset_locked_fields = 97;</code>
|
|
1488
|
+
*/
|
|
1489
|
+
@java.lang.Override
|
|
1490
|
+
public com.lansweeper.dp.outbound.v1.LockedFieldsOrBuilder getManualAssetLockedFieldsOrBuilder() {
|
|
1491
|
+
return manualAssetLockedFields_ == null ? com.lansweeper.dp.outbound.v1.LockedFields.getDefaultInstance() : manualAssetLockedFields_;
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1430
1494
|
private byte memoizedIsInitialized = -1;
|
|
1431
1495
|
@java.lang.Override
|
|
1432
1496
|
public final boolean isInitialized() {
|
|
@@ -1474,10 +1538,10 @@ private static final long serialVersionUID = 0L;
|
|
|
1474
1538
|
for (int i = 0; i < tag_.size(); i++) {
|
|
1475
1539
|
output.writeMessage(14, tag_.get(i));
|
|
1476
1540
|
}
|
|
1477
|
-
if (((bitField0_ &
|
|
1541
|
+
if (((bitField0_ & 0x02000000) != 0)) {
|
|
1478
1542
|
output.writeMessage(16, getOtModule());
|
|
1479
1543
|
}
|
|
1480
|
-
if (((bitField0_ &
|
|
1544
|
+
if (((bitField0_ & 0x04000000) != 0)) {
|
|
1481
1545
|
output.writeMessage(17, getCloud());
|
|
1482
1546
|
}
|
|
1483
1547
|
for (int i = 0; i < relation_.size(); i++) {
|
|
@@ -1522,10 +1586,10 @@ private static final long serialVersionUID = 0L;
|
|
|
1522
1586
|
for (int i = 0; i < warrantyInfo_.size(); i++) {
|
|
1523
1587
|
output.writeMessage(81, warrantyInfo_.get(i));
|
|
1524
1588
|
}
|
|
1525
|
-
if (((bitField0_ &
|
|
1589
|
+
if (((bitField0_ & 0x00800000) != 0)) {
|
|
1526
1590
|
output.writeMessage(84, getPrinter());
|
|
1527
1591
|
}
|
|
1528
|
-
if (((bitField0_ &
|
|
1592
|
+
if (((bitField0_ & 0x01000000) != 0)) {
|
|
1529
1593
|
output.writeMessage(85, getUps());
|
|
1530
1594
|
}
|
|
1531
1595
|
for (int i = 0; i < unlinkedSourceInfo_.size(); i++) {
|
|
@@ -1540,21 +1604,27 @@ private static final long serialVersionUID = 0L;
|
|
|
1540
1604
|
if (((bitField0_ & 0x00200000) != 0)) {
|
|
1541
1605
|
output.writeMessage(89, getHyperVComputer());
|
|
1542
1606
|
}
|
|
1543
|
-
if (((bitField0_ &
|
|
1607
|
+
if (((bitField0_ & 0x08000000) != 0)) {
|
|
1544
1608
|
output.writeMessage(90, getIntuneDevice());
|
|
1545
1609
|
}
|
|
1546
1610
|
for (int i = 0; i < dataProcessor_.size(); i++) {
|
|
1547
1611
|
output.writeMessage(92, dataProcessor_.get(i));
|
|
1548
1612
|
}
|
|
1549
|
-
if (((bitField0_ &
|
|
1613
|
+
if (((bitField0_ & 0x10000000) != 0)) {
|
|
1550
1614
|
output.writeMessage(93, getVmware());
|
|
1551
1615
|
}
|
|
1552
|
-
if (((bitField0_ &
|
|
1616
|
+
if (((bitField0_ & 0x20000000) != 0)) {
|
|
1553
1617
|
output.writeMessage(94, getOffice365Organization());
|
|
1554
1618
|
}
|
|
1555
|
-
if (((bitField0_ &
|
|
1619
|
+
if (((bitField0_ & 0x40000000) != 0)) {
|
|
1556
1620
|
output.writeMessage(95, getCitrix());
|
|
1557
1621
|
}
|
|
1622
|
+
if (((bitField0_ & 0x00400000) != 0)) {
|
|
1623
|
+
output.writeMessage(96, getAdPrinter());
|
|
1624
|
+
}
|
|
1625
|
+
if (((bitField0_ & 0x80000000) != 0)) {
|
|
1626
|
+
output.writeMessage(97, getManualAssetLockedFields());
|
|
1627
|
+
}
|
|
1558
1628
|
getUnknownFields().writeTo(output);
|
|
1559
1629
|
}
|
|
1560
1630
|
|
|
@@ -1608,11 +1678,11 @@ private static final long serialVersionUID = 0L;
|
|
|
1608
1678
|
size += com.google.protobuf.CodedOutputStream
|
|
1609
1679
|
.computeMessageSize(14, tag_.get(i));
|
|
1610
1680
|
}
|
|
1611
|
-
if (((bitField0_ &
|
|
1681
|
+
if (((bitField0_ & 0x02000000) != 0)) {
|
|
1612
1682
|
size += com.google.protobuf.CodedOutputStream
|
|
1613
1683
|
.computeMessageSize(16, getOtModule());
|
|
1614
1684
|
}
|
|
1615
|
-
if (((bitField0_ &
|
|
1685
|
+
if (((bitField0_ & 0x04000000) != 0)) {
|
|
1616
1686
|
size += com.google.protobuf.CodedOutputStream
|
|
1617
1687
|
.computeMessageSize(17, getCloud());
|
|
1618
1688
|
}
|
|
@@ -1669,11 +1739,11 @@ private static final long serialVersionUID = 0L;
|
|
|
1669
1739
|
size += com.google.protobuf.CodedOutputStream
|
|
1670
1740
|
.computeMessageSize(81, warrantyInfo_.get(i));
|
|
1671
1741
|
}
|
|
1672
|
-
if (((bitField0_ &
|
|
1742
|
+
if (((bitField0_ & 0x00800000) != 0)) {
|
|
1673
1743
|
size += com.google.protobuf.CodedOutputStream
|
|
1674
1744
|
.computeMessageSize(84, getPrinter());
|
|
1675
1745
|
}
|
|
1676
|
-
if (((bitField0_ &
|
|
1746
|
+
if (((bitField0_ & 0x01000000) != 0)) {
|
|
1677
1747
|
size += com.google.protobuf.CodedOutputStream
|
|
1678
1748
|
.computeMessageSize(85, getUps());
|
|
1679
1749
|
}
|
|
@@ -1693,7 +1763,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1693
1763
|
size += com.google.protobuf.CodedOutputStream
|
|
1694
1764
|
.computeMessageSize(89, getHyperVComputer());
|
|
1695
1765
|
}
|
|
1696
|
-
if (((bitField0_ &
|
|
1766
|
+
if (((bitField0_ & 0x08000000) != 0)) {
|
|
1697
1767
|
size += com.google.protobuf.CodedOutputStream
|
|
1698
1768
|
.computeMessageSize(90, getIntuneDevice());
|
|
1699
1769
|
}
|
|
@@ -1701,18 +1771,26 @@ private static final long serialVersionUID = 0L;
|
|
|
1701
1771
|
size += com.google.protobuf.CodedOutputStream
|
|
1702
1772
|
.computeMessageSize(92, dataProcessor_.get(i));
|
|
1703
1773
|
}
|
|
1704
|
-
if (((bitField0_ &
|
|
1774
|
+
if (((bitField0_ & 0x10000000) != 0)) {
|
|
1705
1775
|
size += com.google.protobuf.CodedOutputStream
|
|
1706
1776
|
.computeMessageSize(93, getVmware());
|
|
1707
1777
|
}
|
|
1708
|
-
if (((bitField0_ &
|
|
1778
|
+
if (((bitField0_ & 0x20000000) != 0)) {
|
|
1709
1779
|
size += com.google.protobuf.CodedOutputStream
|
|
1710
1780
|
.computeMessageSize(94, getOffice365Organization());
|
|
1711
1781
|
}
|
|
1712
|
-
if (((bitField0_ &
|
|
1782
|
+
if (((bitField0_ & 0x40000000) != 0)) {
|
|
1713
1783
|
size += com.google.protobuf.CodedOutputStream
|
|
1714
1784
|
.computeMessageSize(95, getCitrix());
|
|
1715
1785
|
}
|
|
1786
|
+
if (((bitField0_ & 0x00400000) != 0)) {
|
|
1787
|
+
size += com.google.protobuf.CodedOutputStream
|
|
1788
|
+
.computeMessageSize(96, getAdPrinter());
|
|
1789
|
+
}
|
|
1790
|
+
if (((bitField0_ & 0x80000000) != 0)) {
|
|
1791
|
+
size += com.google.protobuf.CodedOutputStream
|
|
1792
|
+
.computeMessageSize(97, getManualAssetLockedFields());
|
|
1793
|
+
}
|
|
1716
1794
|
size += getUnknownFields().getSerializedSize();
|
|
1717
1795
|
memoizedSize = size;
|
|
1718
1796
|
return size;
|
|
@@ -1852,6 +1930,11 @@ private static final long serialVersionUID = 0L;
|
|
|
1852
1930
|
if (!getHyperVComputer()
|
|
1853
1931
|
.equals(other.getHyperVComputer())) return false;
|
|
1854
1932
|
}
|
|
1933
|
+
if (hasAdPrinter() != other.hasAdPrinter()) return false;
|
|
1934
|
+
if (hasAdPrinter()) {
|
|
1935
|
+
if (!getAdPrinter()
|
|
1936
|
+
.equals(other.getAdPrinter())) return false;
|
|
1937
|
+
}
|
|
1855
1938
|
if (hasPrinter() != other.hasPrinter()) return false;
|
|
1856
1939
|
if (hasPrinter()) {
|
|
1857
1940
|
if (!getPrinter()
|
|
@@ -1894,6 +1977,11 @@ private static final long serialVersionUID = 0L;
|
|
|
1894
1977
|
if (!getCitrix()
|
|
1895
1978
|
.equals(other.getCitrix())) return false;
|
|
1896
1979
|
}
|
|
1980
|
+
if (hasManualAssetLockedFields() != other.hasManualAssetLockedFields()) return false;
|
|
1981
|
+
if (hasManualAssetLockedFields()) {
|
|
1982
|
+
if (!getManualAssetLockedFields()
|
|
1983
|
+
.equals(other.getManualAssetLockedFields())) return false;
|
|
1984
|
+
}
|
|
1897
1985
|
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
|
|
1898
1986
|
return true;
|
|
1899
1987
|
}
|
|
@@ -2021,6 +2109,10 @@ private static final long serialVersionUID = 0L;
|
|
|
2021
2109
|
hash = (37 * hash) + HYPER_V_COMPUTER_FIELD_NUMBER;
|
|
2022
2110
|
hash = (53 * hash) + getHyperVComputer().hashCode();
|
|
2023
2111
|
}
|
|
2112
|
+
if (hasAdPrinter()) {
|
|
2113
|
+
hash = (37 * hash) + AD_PRINTER_FIELD_NUMBER;
|
|
2114
|
+
hash = (53 * hash) + getAdPrinter().hashCode();
|
|
2115
|
+
}
|
|
2024
2116
|
if (hasPrinter()) {
|
|
2025
2117
|
hash = (37 * hash) + PRINTER_FIELD_NUMBER;
|
|
2026
2118
|
hash = (53 * hash) + getPrinter().hashCode();
|
|
@@ -2057,6 +2149,10 @@ private static final long serialVersionUID = 0L;
|
|
|
2057
2149
|
hash = (37 * hash) + CITRIX_FIELD_NUMBER;
|
|
2058
2150
|
hash = (53 * hash) + getCitrix().hashCode();
|
|
2059
2151
|
}
|
|
2152
|
+
if (hasManualAssetLockedFields()) {
|
|
2153
|
+
hash = (37 * hash) + MANUAL_ASSET_LOCKED_FIELDS_FIELD_NUMBER;
|
|
2154
|
+
hash = (53 * hash) + getManualAssetLockedFields().hashCode();
|
|
2155
|
+
}
|
|
2060
2156
|
hash = (29 * hash) + getUnknownFields().hashCode();
|
|
2061
2157
|
memoizedHashCode = hash;
|
|
2062
2158
|
return hash;
|
|
@@ -2217,6 +2313,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2217
2313
|
getServerGroupFieldBuilder();
|
|
2218
2314
|
getAdComputerFieldBuilder();
|
|
2219
2315
|
getHyperVComputerFieldBuilder();
|
|
2316
|
+
getAdPrinterFieldBuilder();
|
|
2220
2317
|
getPrinterFieldBuilder();
|
|
2221
2318
|
getUpsFieldBuilder();
|
|
2222
2319
|
getOtModuleFieldBuilder();
|
|
@@ -2226,6 +2323,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2226
2323
|
getVmwareFieldBuilder();
|
|
2227
2324
|
getOffice365OrganizationFieldBuilder();
|
|
2228
2325
|
getCitrixFieldBuilder();
|
|
2326
|
+
getManualAssetLockedFieldsFieldBuilder();
|
|
2229
2327
|
}
|
|
2230
2328
|
}
|
|
2231
2329
|
@java.lang.Override
|
|
@@ -2380,6 +2478,11 @@ private static final long serialVersionUID = 0L;
|
|
|
2380
2478
|
hyperVComputerBuilder_.dispose();
|
|
2381
2479
|
hyperVComputerBuilder_ = null;
|
|
2382
2480
|
}
|
|
2481
|
+
adPrinter_ = null;
|
|
2482
|
+
if (adPrinterBuilder_ != null) {
|
|
2483
|
+
adPrinterBuilder_.dispose();
|
|
2484
|
+
adPrinterBuilder_ = null;
|
|
2485
|
+
}
|
|
2383
2486
|
printer_ = null;
|
|
2384
2487
|
if (printerBuilder_ != null) {
|
|
2385
2488
|
printerBuilder_.dispose();
|
|
@@ -2406,7 +2509,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2406
2509
|
changeLog_ = null;
|
|
2407
2510
|
changeLogBuilder_.clear();
|
|
2408
2511
|
}
|
|
2409
|
-
bitField1_ = (bitField1_ & ~
|
|
2512
|
+
bitField1_ = (bitField1_ & ~0x00000004);
|
|
2410
2513
|
intuneDevice_ = null;
|
|
2411
2514
|
if (intuneDeviceBuilder_ != null) {
|
|
2412
2515
|
intuneDeviceBuilder_.dispose();
|
|
@@ -2427,6 +2530,11 @@ private static final long serialVersionUID = 0L;
|
|
|
2427
2530
|
citrixBuilder_.dispose();
|
|
2428
2531
|
citrixBuilder_ = null;
|
|
2429
2532
|
}
|
|
2533
|
+
manualAssetLockedFields_ = null;
|
|
2534
|
+
if (manualAssetLockedFieldsBuilder_ != null) {
|
|
2535
|
+
manualAssetLockedFieldsBuilder_.dispose();
|
|
2536
|
+
manualAssetLockedFieldsBuilder_ = null;
|
|
2537
|
+
}
|
|
2430
2538
|
return this;
|
|
2431
2539
|
}
|
|
2432
2540
|
|
|
@@ -2525,9 +2633,9 @@ private static final long serialVersionUID = 0L;
|
|
|
2525
2633
|
result.warrantyInfo_ = warrantyInfoBuilder_.build();
|
|
2526
2634
|
}
|
|
2527
2635
|
if (changeLogBuilder_ == null) {
|
|
2528
|
-
if (((bitField1_ &
|
|
2636
|
+
if (((bitField1_ & 0x00000004) != 0)) {
|
|
2529
2637
|
changeLog_ = java.util.Collections.unmodifiableList(changeLog_);
|
|
2530
|
-
bitField1_ = (bitField1_ & ~
|
|
2638
|
+
bitField1_ = (bitField1_ & ~0x00000004);
|
|
2531
2639
|
}
|
|
2532
2640
|
result.changeLog_ = changeLog_;
|
|
2533
2641
|
} else {
|
|
@@ -2665,21 +2773,21 @@ private static final long serialVersionUID = 0L;
|
|
|
2665
2773
|
to_bitField0_ |= 0x00200000;
|
|
2666
2774
|
}
|
|
2667
2775
|
if (((from_bitField0_ & 0x20000000) != 0)) {
|
|
2776
|
+
result.adPrinter_ = adPrinterBuilder_ == null
|
|
2777
|
+
? adPrinter_
|
|
2778
|
+
: adPrinterBuilder_.build();
|
|
2779
|
+
to_bitField0_ |= 0x00400000;
|
|
2780
|
+
}
|
|
2781
|
+
if (((from_bitField0_ & 0x40000000) != 0)) {
|
|
2668
2782
|
result.printer_ = printerBuilder_ == null
|
|
2669
2783
|
? printer_
|
|
2670
2784
|
: printerBuilder_.build();
|
|
2671
|
-
to_bitField0_ |=
|
|
2785
|
+
to_bitField0_ |= 0x00800000;
|
|
2672
2786
|
}
|
|
2673
|
-
if (((from_bitField0_ &
|
|
2787
|
+
if (((from_bitField0_ & 0x80000000) != 0)) {
|
|
2674
2788
|
result.ups_ = upsBuilder_ == null
|
|
2675
2789
|
? ups_
|
|
2676
2790
|
: upsBuilder_.build();
|
|
2677
|
-
to_bitField0_ |= 0x00800000;
|
|
2678
|
-
}
|
|
2679
|
-
if (((from_bitField0_ & 0x80000000) != 0)) {
|
|
2680
|
-
result.otModule_ = otModuleBuilder_ == null
|
|
2681
|
-
? otModule_
|
|
2682
|
-
: otModuleBuilder_.build();
|
|
2683
2791
|
to_bitField0_ |= 0x01000000;
|
|
2684
2792
|
}
|
|
2685
2793
|
result.bitField0_ |= to_bitField0_;
|
|
@@ -2689,34 +2797,46 @@ private static final long serialVersionUID = 0L;
|
|
|
2689
2797
|
int from_bitField1_ = bitField1_;
|
|
2690
2798
|
int to_bitField0_ = 0;
|
|
2691
2799
|
if (((from_bitField1_ & 0x00000001) != 0)) {
|
|
2800
|
+
result.otModule_ = otModuleBuilder_ == null
|
|
2801
|
+
? otModule_
|
|
2802
|
+
: otModuleBuilder_.build();
|
|
2803
|
+
to_bitField0_ |= 0x02000000;
|
|
2804
|
+
}
|
|
2805
|
+
if (((from_bitField1_ & 0x00000002) != 0)) {
|
|
2692
2806
|
result.cloud_ = cloudBuilder_ == null
|
|
2693
2807
|
? cloud_
|
|
2694
2808
|
: cloudBuilder_.build();
|
|
2695
|
-
to_bitField0_ |=
|
|
2809
|
+
to_bitField0_ |= 0x04000000;
|
|
2696
2810
|
}
|
|
2697
|
-
if (((from_bitField1_ &
|
|
2811
|
+
if (((from_bitField1_ & 0x00000008) != 0)) {
|
|
2698
2812
|
result.intuneDevice_ = intuneDeviceBuilder_ == null
|
|
2699
2813
|
? intuneDevice_
|
|
2700
2814
|
: intuneDeviceBuilder_.build();
|
|
2701
|
-
to_bitField0_ |=
|
|
2815
|
+
to_bitField0_ |= 0x08000000;
|
|
2702
2816
|
}
|
|
2703
|
-
if (((from_bitField1_ &
|
|
2817
|
+
if (((from_bitField1_ & 0x00000010) != 0)) {
|
|
2704
2818
|
result.vmware_ = vmwareBuilder_ == null
|
|
2705
2819
|
? vmware_
|
|
2706
2820
|
: vmwareBuilder_.build();
|
|
2707
|
-
to_bitField0_ |=
|
|
2821
|
+
to_bitField0_ |= 0x10000000;
|
|
2708
2822
|
}
|
|
2709
|
-
if (((from_bitField1_ &
|
|
2823
|
+
if (((from_bitField1_ & 0x00000020) != 0)) {
|
|
2710
2824
|
result.office365Organization_ = office365OrganizationBuilder_ == null
|
|
2711
2825
|
? office365Organization_
|
|
2712
2826
|
: office365OrganizationBuilder_.build();
|
|
2713
|
-
to_bitField0_ |=
|
|
2827
|
+
to_bitField0_ |= 0x20000000;
|
|
2714
2828
|
}
|
|
2715
|
-
if (((from_bitField1_ &
|
|
2829
|
+
if (((from_bitField1_ & 0x00000040) != 0)) {
|
|
2716
2830
|
result.citrix_ = citrixBuilder_ == null
|
|
2717
2831
|
? citrix_
|
|
2718
2832
|
: citrixBuilder_.build();
|
|
2719
|
-
to_bitField0_ |=
|
|
2833
|
+
to_bitField0_ |= 0x40000000;
|
|
2834
|
+
}
|
|
2835
|
+
if (((from_bitField1_ & 0x00000080) != 0)) {
|
|
2836
|
+
result.manualAssetLockedFields_ = manualAssetLockedFieldsBuilder_ == null
|
|
2837
|
+
? manualAssetLockedFields_
|
|
2838
|
+
: manualAssetLockedFieldsBuilder_.build();
|
|
2839
|
+
to_bitField0_ |= 0x80000000;
|
|
2720
2840
|
}
|
|
2721
2841
|
result.bitField0_ |= to_bitField0_;
|
|
2722
2842
|
}
|
|
@@ -3019,6 +3139,9 @@ private static final long serialVersionUID = 0L;
|
|
|
3019
3139
|
if (other.hasHyperVComputer()) {
|
|
3020
3140
|
mergeHyperVComputer(other.getHyperVComputer());
|
|
3021
3141
|
}
|
|
3142
|
+
if (other.hasAdPrinter()) {
|
|
3143
|
+
mergeAdPrinter(other.getAdPrinter());
|
|
3144
|
+
}
|
|
3022
3145
|
if (other.hasPrinter()) {
|
|
3023
3146
|
mergePrinter(other.getPrinter());
|
|
3024
3147
|
}
|
|
@@ -3035,7 +3158,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3035
3158
|
if (!other.changeLog_.isEmpty()) {
|
|
3036
3159
|
if (changeLog_.isEmpty()) {
|
|
3037
3160
|
changeLog_ = other.changeLog_;
|
|
3038
|
-
bitField1_ = (bitField1_ & ~
|
|
3161
|
+
bitField1_ = (bitField1_ & ~0x00000004);
|
|
3039
3162
|
} else {
|
|
3040
3163
|
ensureChangeLogIsMutable();
|
|
3041
3164
|
changeLog_.addAll(other.changeLog_);
|
|
@@ -3048,7 +3171,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3048
3171
|
changeLogBuilder_.dispose();
|
|
3049
3172
|
changeLogBuilder_ = null;
|
|
3050
3173
|
changeLog_ = other.changeLog_;
|
|
3051
|
-
bitField1_ = (bitField1_ & ~
|
|
3174
|
+
bitField1_ = (bitField1_ & ~0x00000004);
|
|
3052
3175
|
changeLogBuilder_ =
|
|
3053
3176
|
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
|
|
3054
3177
|
getChangeLogFieldBuilder() : null;
|
|
@@ -3069,6 +3192,9 @@ private static final long serialVersionUID = 0L;
|
|
|
3069
3192
|
if (other.hasCitrix()) {
|
|
3070
3193
|
mergeCitrix(other.getCitrix());
|
|
3071
3194
|
}
|
|
3195
|
+
if (other.hasManualAssetLockedFields()) {
|
|
3196
|
+
mergeManualAssetLockedFields(other.getManualAssetLockedFields());
|
|
3197
|
+
}
|
|
3072
3198
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
3073
3199
|
onChanged();
|
|
3074
3200
|
return this;
|
|
@@ -3182,14 +3308,14 @@ private static final long serialVersionUID = 0L;
|
|
|
3182
3308
|
input.readMessage(
|
|
3183
3309
|
getOtModuleFieldBuilder().getBuilder(),
|
|
3184
3310
|
extensionRegistry);
|
|
3185
|
-
|
|
3311
|
+
bitField1_ |= 0x00000001;
|
|
3186
3312
|
break;
|
|
3187
3313
|
} // case 130
|
|
3188
3314
|
case 138: {
|
|
3189
3315
|
input.readMessage(
|
|
3190
3316
|
getCloudFieldBuilder().getBuilder(),
|
|
3191
3317
|
extensionRegistry);
|
|
3192
|
-
bitField1_ |=
|
|
3318
|
+
bitField1_ |= 0x00000002;
|
|
3193
3319
|
break;
|
|
3194
3320
|
} // case 138
|
|
3195
3321
|
case 162: {
|
|
@@ -3318,14 +3444,14 @@ private static final long serialVersionUID = 0L;
|
|
|
3318
3444
|
input.readMessage(
|
|
3319
3445
|
getPrinterFieldBuilder().getBuilder(),
|
|
3320
3446
|
extensionRegistry);
|
|
3321
|
-
bitField0_ |=
|
|
3447
|
+
bitField0_ |= 0x40000000;
|
|
3322
3448
|
break;
|
|
3323
3449
|
} // case 674
|
|
3324
3450
|
case 682: {
|
|
3325
3451
|
input.readMessage(
|
|
3326
3452
|
getUpsFieldBuilder().getBuilder(),
|
|
3327
3453
|
extensionRegistry);
|
|
3328
|
-
bitField0_ |=
|
|
3454
|
+
bitField0_ |= 0x80000000;
|
|
3329
3455
|
break;
|
|
3330
3456
|
} // case 682
|
|
3331
3457
|
case 690: {
|
|
@@ -3366,7 +3492,7 @@ private static final long serialVersionUID = 0L;
|
|
|
3366
3492
|
input.readMessage(
|
|
3367
3493
|
getIntuneDeviceFieldBuilder().getBuilder(),
|
|
3368
3494
|
extensionRegistry);
|
|
3369
|
-
bitField1_ |=
|
|
3495
|
+
bitField1_ |= 0x00000008;
|
|
3370
3496
|
break;
|
|
3371
3497
|
} // case 722
|
|
3372
3498
|
case 738: {
|
|
@@ -3386,23 +3512,37 @@ private static final long serialVersionUID = 0L;
|
|
|
3386
3512
|
input.readMessage(
|
|
3387
3513
|
getVmwareFieldBuilder().getBuilder(),
|
|
3388
3514
|
extensionRegistry);
|
|
3389
|
-
bitField1_ |=
|
|
3515
|
+
bitField1_ |= 0x00000010;
|
|
3390
3516
|
break;
|
|
3391
3517
|
} // case 746
|
|
3392
3518
|
case 754: {
|
|
3393
3519
|
input.readMessage(
|
|
3394
3520
|
getOffice365OrganizationFieldBuilder().getBuilder(),
|
|
3395
3521
|
extensionRegistry);
|
|
3396
|
-
bitField1_ |=
|
|
3522
|
+
bitField1_ |= 0x00000020;
|
|
3397
3523
|
break;
|
|
3398
3524
|
} // case 754
|
|
3399
3525
|
case 762: {
|
|
3400
3526
|
input.readMessage(
|
|
3401
3527
|
getCitrixFieldBuilder().getBuilder(),
|
|
3402
3528
|
extensionRegistry);
|
|
3403
|
-
bitField1_ |=
|
|
3529
|
+
bitField1_ |= 0x00000040;
|
|
3404
3530
|
break;
|
|
3405
3531
|
} // case 762
|
|
3532
|
+
case 770: {
|
|
3533
|
+
input.readMessage(
|
|
3534
|
+
getAdPrinterFieldBuilder().getBuilder(),
|
|
3535
|
+
extensionRegistry);
|
|
3536
|
+
bitField0_ |= 0x20000000;
|
|
3537
|
+
break;
|
|
3538
|
+
} // case 770
|
|
3539
|
+
case 778: {
|
|
3540
|
+
input.readMessage(
|
|
3541
|
+
getManualAssetLockedFieldsFieldBuilder().getBuilder(),
|
|
3542
|
+
extensionRegistry);
|
|
3543
|
+
bitField1_ |= 0x00000080;
|
|
3544
|
+
break;
|
|
3545
|
+
} // case 778
|
|
3406
3546
|
default: {
|
|
3407
3547
|
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
|
|
3408
3548
|
done = true; // was an endgroup tag
|
|
@@ -8183,6 +8323,127 @@ private static final long serialVersionUID = 0L;
|
|
|
8183
8323
|
return hyperVComputerBuilder_;
|
|
8184
8324
|
}
|
|
8185
8325
|
|
|
8326
|
+
private com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter adPrinter_;
|
|
8327
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
8328
|
+
com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter, com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter.Builder, com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinterOrBuilder> adPrinterBuilder_;
|
|
8329
|
+
/**
|
|
8330
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter ad_printer = 96;</code>
|
|
8331
|
+
* @return Whether the adPrinter field is set.
|
|
8332
|
+
*/
|
|
8333
|
+
public boolean hasAdPrinter() {
|
|
8334
|
+
return ((bitField0_ & 0x20000000) != 0);
|
|
8335
|
+
}
|
|
8336
|
+
/**
|
|
8337
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter ad_printer = 96;</code>
|
|
8338
|
+
* @return The adPrinter.
|
|
8339
|
+
*/
|
|
8340
|
+
public com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter getAdPrinter() {
|
|
8341
|
+
if (adPrinterBuilder_ == null) {
|
|
8342
|
+
return adPrinter_ == null ? com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter.getDefaultInstance() : adPrinter_;
|
|
8343
|
+
} else {
|
|
8344
|
+
return adPrinterBuilder_.getMessage();
|
|
8345
|
+
}
|
|
8346
|
+
}
|
|
8347
|
+
/**
|
|
8348
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter ad_printer = 96;</code>
|
|
8349
|
+
*/
|
|
8350
|
+
public Builder setAdPrinter(com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter value) {
|
|
8351
|
+
if (adPrinterBuilder_ == null) {
|
|
8352
|
+
if (value == null) {
|
|
8353
|
+
throw new NullPointerException();
|
|
8354
|
+
}
|
|
8355
|
+
adPrinter_ = value;
|
|
8356
|
+
} else {
|
|
8357
|
+
adPrinterBuilder_.setMessage(value);
|
|
8358
|
+
}
|
|
8359
|
+
bitField0_ |= 0x20000000;
|
|
8360
|
+
onChanged();
|
|
8361
|
+
return this;
|
|
8362
|
+
}
|
|
8363
|
+
/**
|
|
8364
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter ad_printer = 96;</code>
|
|
8365
|
+
*/
|
|
8366
|
+
public Builder setAdPrinter(
|
|
8367
|
+
com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter.Builder builderForValue) {
|
|
8368
|
+
if (adPrinterBuilder_ == null) {
|
|
8369
|
+
adPrinter_ = builderForValue.build();
|
|
8370
|
+
} else {
|
|
8371
|
+
adPrinterBuilder_.setMessage(builderForValue.build());
|
|
8372
|
+
}
|
|
8373
|
+
bitField0_ |= 0x20000000;
|
|
8374
|
+
onChanged();
|
|
8375
|
+
return this;
|
|
8376
|
+
}
|
|
8377
|
+
/**
|
|
8378
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter ad_printer = 96;</code>
|
|
8379
|
+
*/
|
|
8380
|
+
public Builder mergeAdPrinter(com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter value) {
|
|
8381
|
+
if (adPrinterBuilder_ == null) {
|
|
8382
|
+
if (((bitField0_ & 0x20000000) != 0) &&
|
|
8383
|
+
adPrinter_ != null &&
|
|
8384
|
+
adPrinter_ != com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter.getDefaultInstance()) {
|
|
8385
|
+
getAdPrinterBuilder().mergeFrom(value);
|
|
8386
|
+
} else {
|
|
8387
|
+
adPrinter_ = value;
|
|
8388
|
+
}
|
|
8389
|
+
} else {
|
|
8390
|
+
adPrinterBuilder_.mergeFrom(value);
|
|
8391
|
+
}
|
|
8392
|
+
if (adPrinter_ != null) {
|
|
8393
|
+
bitField0_ |= 0x20000000;
|
|
8394
|
+
onChanged();
|
|
8395
|
+
}
|
|
8396
|
+
return this;
|
|
8397
|
+
}
|
|
8398
|
+
/**
|
|
8399
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter ad_printer = 96;</code>
|
|
8400
|
+
*/
|
|
8401
|
+
public Builder clearAdPrinter() {
|
|
8402
|
+
bitField0_ = (bitField0_ & ~0x20000000);
|
|
8403
|
+
adPrinter_ = null;
|
|
8404
|
+
if (adPrinterBuilder_ != null) {
|
|
8405
|
+
adPrinterBuilder_.dispose();
|
|
8406
|
+
adPrinterBuilder_ = null;
|
|
8407
|
+
}
|
|
8408
|
+
onChanged();
|
|
8409
|
+
return this;
|
|
8410
|
+
}
|
|
8411
|
+
/**
|
|
8412
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter ad_printer = 96;</code>
|
|
8413
|
+
*/
|
|
8414
|
+
public com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter.Builder getAdPrinterBuilder() {
|
|
8415
|
+
bitField0_ |= 0x20000000;
|
|
8416
|
+
onChanged();
|
|
8417
|
+
return getAdPrinterFieldBuilder().getBuilder();
|
|
8418
|
+
}
|
|
8419
|
+
/**
|
|
8420
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter ad_printer = 96;</code>
|
|
8421
|
+
*/
|
|
8422
|
+
public com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinterOrBuilder getAdPrinterOrBuilder() {
|
|
8423
|
+
if (adPrinterBuilder_ != null) {
|
|
8424
|
+
return adPrinterBuilder_.getMessageOrBuilder();
|
|
8425
|
+
} else {
|
|
8426
|
+
return adPrinter_ == null ?
|
|
8427
|
+
com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter.getDefaultInstance() : adPrinter_;
|
|
8428
|
+
}
|
|
8429
|
+
}
|
|
8430
|
+
/**
|
|
8431
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter ad_printer = 96;</code>
|
|
8432
|
+
*/
|
|
8433
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
8434
|
+
com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter, com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter.Builder, com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinterOrBuilder>
|
|
8435
|
+
getAdPrinterFieldBuilder() {
|
|
8436
|
+
if (adPrinterBuilder_ == null) {
|
|
8437
|
+
adPrinterBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
|
|
8438
|
+
com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter, com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinter.Builder, com.lansweeper.dp.outbound.v1.ActiveDirectoryPrinterOrBuilder>(
|
|
8439
|
+
getAdPrinter(),
|
|
8440
|
+
getParentForChildren(),
|
|
8441
|
+
isClean());
|
|
8442
|
+
adPrinter_ = null;
|
|
8443
|
+
}
|
|
8444
|
+
return adPrinterBuilder_;
|
|
8445
|
+
}
|
|
8446
|
+
|
|
8186
8447
|
private com.lansweeper.dp.outbound.v1.Printer printer_;
|
|
8187
8448
|
private com.google.protobuf.SingleFieldBuilderV3<
|
|
8188
8449
|
com.lansweeper.dp.outbound.v1.Printer, com.lansweeper.dp.outbound.v1.Printer.Builder, com.lansweeper.dp.outbound.v1.PrinterOrBuilder> printerBuilder_;
|
|
@@ -8191,7 +8452,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8191
8452
|
* @return Whether the printer field is set.
|
|
8192
8453
|
*/
|
|
8193
8454
|
public boolean hasPrinter() {
|
|
8194
|
-
return ((bitField0_ &
|
|
8455
|
+
return ((bitField0_ & 0x40000000) != 0);
|
|
8195
8456
|
}
|
|
8196
8457
|
/**
|
|
8197
8458
|
* <code>optional .com.lansweeper.dp.outbound.v1.Printer printer = 84;</code>
|
|
@@ -8216,7 +8477,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8216
8477
|
} else {
|
|
8217
8478
|
printerBuilder_.setMessage(value);
|
|
8218
8479
|
}
|
|
8219
|
-
bitField0_ |=
|
|
8480
|
+
bitField0_ |= 0x40000000;
|
|
8220
8481
|
onChanged();
|
|
8221
8482
|
return this;
|
|
8222
8483
|
}
|
|
@@ -8230,7 +8491,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8230
8491
|
} else {
|
|
8231
8492
|
printerBuilder_.setMessage(builderForValue.build());
|
|
8232
8493
|
}
|
|
8233
|
-
bitField0_ |=
|
|
8494
|
+
bitField0_ |= 0x40000000;
|
|
8234
8495
|
onChanged();
|
|
8235
8496
|
return this;
|
|
8236
8497
|
}
|
|
@@ -8239,7 +8500,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8239
8500
|
*/
|
|
8240
8501
|
public Builder mergePrinter(com.lansweeper.dp.outbound.v1.Printer value) {
|
|
8241
8502
|
if (printerBuilder_ == null) {
|
|
8242
|
-
if (((bitField0_ &
|
|
8503
|
+
if (((bitField0_ & 0x40000000) != 0) &&
|
|
8243
8504
|
printer_ != null &&
|
|
8244
8505
|
printer_ != com.lansweeper.dp.outbound.v1.Printer.getDefaultInstance()) {
|
|
8245
8506
|
getPrinterBuilder().mergeFrom(value);
|
|
@@ -8250,7 +8511,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8250
8511
|
printerBuilder_.mergeFrom(value);
|
|
8251
8512
|
}
|
|
8252
8513
|
if (printer_ != null) {
|
|
8253
|
-
bitField0_ |=
|
|
8514
|
+
bitField0_ |= 0x40000000;
|
|
8254
8515
|
onChanged();
|
|
8255
8516
|
}
|
|
8256
8517
|
return this;
|
|
@@ -8259,7 +8520,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8259
8520
|
* <code>optional .com.lansweeper.dp.outbound.v1.Printer printer = 84;</code>
|
|
8260
8521
|
*/
|
|
8261
8522
|
public Builder clearPrinter() {
|
|
8262
|
-
bitField0_ = (bitField0_ & ~
|
|
8523
|
+
bitField0_ = (bitField0_ & ~0x40000000);
|
|
8263
8524
|
printer_ = null;
|
|
8264
8525
|
if (printerBuilder_ != null) {
|
|
8265
8526
|
printerBuilder_.dispose();
|
|
@@ -8272,7 +8533,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8272
8533
|
* <code>optional .com.lansweeper.dp.outbound.v1.Printer printer = 84;</code>
|
|
8273
8534
|
*/
|
|
8274
8535
|
public com.lansweeper.dp.outbound.v1.Printer.Builder getPrinterBuilder() {
|
|
8275
|
-
bitField0_ |=
|
|
8536
|
+
bitField0_ |= 0x40000000;
|
|
8276
8537
|
onChanged();
|
|
8277
8538
|
return getPrinterFieldBuilder().getBuilder();
|
|
8278
8539
|
}
|
|
@@ -8312,7 +8573,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8312
8573
|
* @return Whether the ups field is set.
|
|
8313
8574
|
*/
|
|
8314
8575
|
public boolean hasUps() {
|
|
8315
|
-
return ((bitField0_ &
|
|
8576
|
+
return ((bitField0_ & 0x80000000) != 0);
|
|
8316
8577
|
}
|
|
8317
8578
|
/**
|
|
8318
8579
|
* <code>optional .com.lansweeper.dp.outbound.v1.Ups ups = 85;</code>
|
|
@@ -8337,7 +8598,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8337
8598
|
} else {
|
|
8338
8599
|
upsBuilder_.setMessage(value);
|
|
8339
8600
|
}
|
|
8340
|
-
bitField0_ |=
|
|
8601
|
+
bitField0_ |= 0x80000000;
|
|
8341
8602
|
onChanged();
|
|
8342
8603
|
return this;
|
|
8343
8604
|
}
|
|
@@ -8351,7 +8612,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8351
8612
|
} else {
|
|
8352
8613
|
upsBuilder_.setMessage(builderForValue.build());
|
|
8353
8614
|
}
|
|
8354
|
-
bitField0_ |=
|
|
8615
|
+
bitField0_ |= 0x80000000;
|
|
8355
8616
|
onChanged();
|
|
8356
8617
|
return this;
|
|
8357
8618
|
}
|
|
@@ -8360,7 +8621,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8360
8621
|
*/
|
|
8361
8622
|
public Builder mergeUps(com.lansweeper.dp.outbound.v1.Ups value) {
|
|
8362
8623
|
if (upsBuilder_ == null) {
|
|
8363
|
-
if (((bitField0_ &
|
|
8624
|
+
if (((bitField0_ & 0x80000000) != 0) &&
|
|
8364
8625
|
ups_ != null &&
|
|
8365
8626
|
ups_ != com.lansweeper.dp.outbound.v1.Ups.getDefaultInstance()) {
|
|
8366
8627
|
getUpsBuilder().mergeFrom(value);
|
|
@@ -8371,7 +8632,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8371
8632
|
upsBuilder_.mergeFrom(value);
|
|
8372
8633
|
}
|
|
8373
8634
|
if (ups_ != null) {
|
|
8374
|
-
bitField0_ |=
|
|
8635
|
+
bitField0_ |= 0x80000000;
|
|
8375
8636
|
onChanged();
|
|
8376
8637
|
}
|
|
8377
8638
|
return this;
|
|
@@ -8380,7 +8641,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8380
8641
|
* <code>optional .com.lansweeper.dp.outbound.v1.Ups ups = 85;</code>
|
|
8381
8642
|
*/
|
|
8382
8643
|
public Builder clearUps() {
|
|
8383
|
-
bitField0_ = (bitField0_ & ~
|
|
8644
|
+
bitField0_ = (bitField0_ & ~0x80000000);
|
|
8384
8645
|
ups_ = null;
|
|
8385
8646
|
if (upsBuilder_ != null) {
|
|
8386
8647
|
upsBuilder_.dispose();
|
|
@@ -8393,7 +8654,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8393
8654
|
* <code>optional .com.lansweeper.dp.outbound.v1.Ups ups = 85;</code>
|
|
8394
8655
|
*/
|
|
8395
8656
|
public com.lansweeper.dp.outbound.v1.Ups.Builder getUpsBuilder() {
|
|
8396
|
-
bitField0_ |=
|
|
8657
|
+
bitField0_ |= 0x80000000;
|
|
8397
8658
|
onChanged();
|
|
8398
8659
|
return getUpsFieldBuilder().getBuilder();
|
|
8399
8660
|
}
|
|
@@ -8437,7 +8698,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8437
8698
|
* @return Whether the otModule field is set.
|
|
8438
8699
|
*/
|
|
8439
8700
|
public boolean hasOtModule() {
|
|
8440
|
-
return ((
|
|
8701
|
+
return ((bitField1_ & 0x00000001) != 0);
|
|
8441
8702
|
}
|
|
8442
8703
|
/**
|
|
8443
8704
|
* <pre>
|
|
@@ -8470,7 +8731,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8470
8731
|
} else {
|
|
8471
8732
|
otModuleBuilder_.setMessage(value);
|
|
8472
8733
|
}
|
|
8473
|
-
|
|
8734
|
+
bitField1_ |= 0x00000001;
|
|
8474
8735
|
onChanged();
|
|
8475
8736
|
return this;
|
|
8476
8737
|
}
|
|
@@ -8488,7 +8749,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8488
8749
|
} else {
|
|
8489
8750
|
otModuleBuilder_.setMessage(builderForValue.build());
|
|
8490
8751
|
}
|
|
8491
|
-
|
|
8752
|
+
bitField1_ |= 0x00000001;
|
|
8492
8753
|
onChanged();
|
|
8493
8754
|
return this;
|
|
8494
8755
|
}
|
|
@@ -8501,7 +8762,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8501
8762
|
*/
|
|
8502
8763
|
public Builder mergeOtModule(com.lansweeper.dp.outbound.v1.OtModule value) {
|
|
8503
8764
|
if (otModuleBuilder_ == null) {
|
|
8504
|
-
if (((
|
|
8765
|
+
if (((bitField1_ & 0x00000001) != 0) &&
|
|
8505
8766
|
otModule_ != null &&
|
|
8506
8767
|
otModule_ != com.lansweeper.dp.outbound.v1.OtModule.getDefaultInstance()) {
|
|
8507
8768
|
getOtModuleBuilder().mergeFrom(value);
|
|
@@ -8512,7 +8773,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8512
8773
|
otModuleBuilder_.mergeFrom(value);
|
|
8513
8774
|
}
|
|
8514
8775
|
if (otModule_ != null) {
|
|
8515
|
-
|
|
8776
|
+
bitField1_ |= 0x00000001;
|
|
8516
8777
|
onChanged();
|
|
8517
8778
|
}
|
|
8518
8779
|
return this;
|
|
@@ -8525,7 +8786,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8525
8786
|
* <code>optional .com.lansweeper.dp.outbound.v1.OtModule ot_module = 16;</code>
|
|
8526
8787
|
*/
|
|
8527
8788
|
public Builder clearOtModule() {
|
|
8528
|
-
|
|
8789
|
+
bitField1_ = (bitField1_ & ~0x00000001);
|
|
8529
8790
|
otModule_ = null;
|
|
8530
8791
|
if (otModuleBuilder_ != null) {
|
|
8531
8792
|
otModuleBuilder_.dispose();
|
|
@@ -8542,7 +8803,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8542
8803
|
* <code>optional .com.lansweeper.dp.outbound.v1.OtModule ot_module = 16;</code>
|
|
8543
8804
|
*/
|
|
8544
8805
|
public com.lansweeper.dp.outbound.v1.OtModule.Builder getOtModuleBuilder() {
|
|
8545
|
-
|
|
8806
|
+
bitField1_ |= 0x00000001;
|
|
8546
8807
|
onChanged();
|
|
8547
8808
|
return getOtModuleFieldBuilder().getBuilder();
|
|
8548
8809
|
}
|
|
@@ -8590,7 +8851,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8590
8851
|
* @return Whether the cloud field is set.
|
|
8591
8852
|
*/
|
|
8592
8853
|
public boolean hasCloud() {
|
|
8593
|
-
return ((bitField1_ &
|
|
8854
|
+
return ((bitField1_ & 0x00000002) != 0);
|
|
8594
8855
|
}
|
|
8595
8856
|
/**
|
|
8596
8857
|
* <code>optional .com.lansweeper.dp.outbound.v1.CloudEntity cloud = 17;</code>
|
|
@@ -8615,7 +8876,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8615
8876
|
} else {
|
|
8616
8877
|
cloudBuilder_.setMessage(value);
|
|
8617
8878
|
}
|
|
8618
|
-
bitField1_ |=
|
|
8879
|
+
bitField1_ |= 0x00000002;
|
|
8619
8880
|
onChanged();
|
|
8620
8881
|
return this;
|
|
8621
8882
|
}
|
|
@@ -8629,7 +8890,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8629
8890
|
} else {
|
|
8630
8891
|
cloudBuilder_.setMessage(builderForValue.build());
|
|
8631
8892
|
}
|
|
8632
|
-
bitField1_ |=
|
|
8893
|
+
bitField1_ |= 0x00000002;
|
|
8633
8894
|
onChanged();
|
|
8634
8895
|
return this;
|
|
8635
8896
|
}
|
|
@@ -8638,7 +8899,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8638
8899
|
*/
|
|
8639
8900
|
public Builder mergeCloud(com.lansweeper.dp.outbound.v1.CloudEntity value) {
|
|
8640
8901
|
if (cloudBuilder_ == null) {
|
|
8641
|
-
if (((bitField1_ &
|
|
8902
|
+
if (((bitField1_ & 0x00000002) != 0) &&
|
|
8642
8903
|
cloud_ != null &&
|
|
8643
8904
|
cloud_ != com.lansweeper.dp.outbound.v1.CloudEntity.getDefaultInstance()) {
|
|
8644
8905
|
getCloudBuilder().mergeFrom(value);
|
|
@@ -8649,7 +8910,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8649
8910
|
cloudBuilder_.mergeFrom(value);
|
|
8650
8911
|
}
|
|
8651
8912
|
if (cloud_ != null) {
|
|
8652
|
-
bitField1_ |=
|
|
8913
|
+
bitField1_ |= 0x00000002;
|
|
8653
8914
|
onChanged();
|
|
8654
8915
|
}
|
|
8655
8916
|
return this;
|
|
@@ -8658,7 +8919,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8658
8919
|
* <code>optional .com.lansweeper.dp.outbound.v1.CloudEntity cloud = 17;</code>
|
|
8659
8920
|
*/
|
|
8660
8921
|
public Builder clearCloud() {
|
|
8661
|
-
bitField1_ = (bitField1_ & ~
|
|
8922
|
+
bitField1_ = (bitField1_ & ~0x00000002);
|
|
8662
8923
|
cloud_ = null;
|
|
8663
8924
|
if (cloudBuilder_ != null) {
|
|
8664
8925
|
cloudBuilder_.dispose();
|
|
@@ -8671,7 +8932,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8671
8932
|
* <code>optional .com.lansweeper.dp.outbound.v1.CloudEntity cloud = 17;</code>
|
|
8672
8933
|
*/
|
|
8673
8934
|
public com.lansweeper.dp.outbound.v1.CloudEntity.Builder getCloudBuilder() {
|
|
8674
|
-
bitField1_ |=
|
|
8935
|
+
bitField1_ |= 0x00000002;
|
|
8675
8936
|
onChanged();
|
|
8676
8937
|
return getCloudFieldBuilder().getBuilder();
|
|
8677
8938
|
}
|
|
@@ -8706,9 +8967,9 @@ private static final long serialVersionUID = 0L;
|
|
|
8706
8967
|
private java.util.List<com.lansweeper.dp.outbound.v1.AssetChangeEvent> changeLog_ =
|
|
8707
8968
|
java.util.Collections.emptyList();
|
|
8708
8969
|
private void ensureChangeLogIsMutable() {
|
|
8709
|
-
if (!((bitField1_ &
|
|
8970
|
+
if (!((bitField1_ & 0x00000004) != 0)) {
|
|
8710
8971
|
changeLog_ = new java.util.ArrayList<com.lansweeper.dp.outbound.v1.AssetChangeEvent>(changeLog_);
|
|
8711
|
-
bitField1_ |=
|
|
8972
|
+
bitField1_ |= 0x00000004;
|
|
8712
8973
|
}
|
|
8713
8974
|
}
|
|
8714
8975
|
|
|
@@ -8858,7 +9119,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8858
9119
|
public Builder clearChangeLog() {
|
|
8859
9120
|
if (changeLogBuilder_ == null) {
|
|
8860
9121
|
changeLog_ = java.util.Collections.emptyList();
|
|
8861
|
-
bitField1_ = (bitField1_ & ~
|
|
9122
|
+
bitField1_ = (bitField1_ & ~0x00000004);
|
|
8862
9123
|
onChanged();
|
|
8863
9124
|
} else {
|
|
8864
9125
|
changeLogBuilder_.clear();
|
|
@@ -8935,7 +9196,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8935
9196
|
changeLogBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
|
|
8936
9197
|
com.lansweeper.dp.outbound.v1.AssetChangeEvent, com.lansweeper.dp.outbound.v1.AssetChangeEvent.Builder, com.lansweeper.dp.outbound.v1.AssetChangeEventOrBuilder>(
|
|
8937
9198
|
changeLog_,
|
|
8938
|
-
((bitField1_ &
|
|
9199
|
+
((bitField1_ & 0x00000004) != 0),
|
|
8939
9200
|
getParentForChildren(),
|
|
8940
9201
|
isClean());
|
|
8941
9202
|
changeLog_ = null;
|
|
@@ -8951,7 +9212,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8951
9212
|
* @return Whether the intuneDevice field is set.
|
|
8952
9213
|
*/
|
|
8953
9214
|
public boolean hasIntuneDevice() {
|
|
8954
|
-
return ((bitField1_ &
|
|
9215
|
+
return ((bitField1_ & 0x00000008) != 0);
|
|
8955
9216
|
}
|
|
8956
9217
|
/**
|
|
8957
9218
|
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
@@ -8976,7 +9237,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8976
9237
|
} else {
|
|
8977
9238
|
intuneDeviceBuilder_.setMessage(value);
|
|
8978
9239
|
}
|
|
8979
|
-
bitField1_ |=
|
|
9240
|
+
bitField1_ |= 0x00000008;
|
|
8980
9241
|
onChanged();
|
|
8981
9242
|
return this;
|
|
8982
9243
|
}
|
|
@@ -8990,7 +9251,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8990
9251
|
} else {
|
|
8991
9252
|
intuneDeviceBuilder_.setMessage(builderForValue.build());
|
|
8992
9253
|
}
|
|
8993
|
-
bitField1_ |=
|
|
9254
|
+
bitField1_ |= 0x00000008;
|
|
8994
9255
|
onChanged();
|
|
8995
9256
|
return this;
|
|
8996
9257
|
}
|
|
@@ -8999,7 +9260,7 @@ private static final long serialVersionUID = 0L;
|
|
|
8999
9260
|
*/
|
|
9000
9261
|
public Builder mergeIntuneDevice(com.lansweeper.dp.outbound.v1.IntuneDevice value) {
|
|
9001
9262
|
if (intuneDeviceBuilder_ == null) {
|
|
9002
|
-
if (((bitField1_ &
|
|
9263
|
+
if (((bitField1_ & 0x00000008) != 0) &&
|
|
9003
9264
|
intuneDevice_ != null &&
|
|
9004
9265
|
intuneDevice_ != com.lansweeper.dp.outbound.v1.IntuneDevice.getDefaultInstance()) {
|
|
9005
9266
|
getIntuneDeviceBuilder().mergeFrom(value);
|
|
@@ -9010,7 +9271,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9010
9271
|
intuneDeviceBuilder_.mergeFrom(value);
|
|
9011
9272
|
}
|
|
9012
9273
|
if (intuneDevice_ != null) {
|
|
9013
|
-
bitField1_ |=
|
|
9274
|
+
bitField1_ |= 0x00000008;
|
|
9014
9275
|
onChanged();
|
|
9015
9276
|
}
|
|
9016
9277
|
return this;
|
|
@@ -9019,7 +9280,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9019
9280
|
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
9020
9281
|
*/
|
|
9021
9282
|
public Builder clearIntuneDevice() {
|
|
9022
|
-
bitField1_ = (bitField1_ & ~
|
|
9283
|
+
bitField1_ = (bitField1_ & ~0x00000008);
|
|
9023
9284
|
intuneDevice_ = null;
|
|
9024
9285
|
if (intuneDeviceBuilder_ != null) {
|
|
9025
9286
|
intuneDeviceBuilder_.dispose();
|
|
@@ -9032,7 +9293,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9032
9293
|
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
9033
9294
|
*/
|
|
9034
9295
|
public com.lansweeper.dp.outbound.v1.IntuneDevice.Builder getIntuneDeviceBuilder() {
|
|
9035
|
-
bitField1_ |=
|
|
9296
|
+
bitField1_ |= 0x00000008;
|
|
9036
9297
|
onChanged();
|
|
9037
9298
|
return getIntuneDeviceFieldBuilder().getBuilder();
|
|
9038
9299
|
}
|
|
@@ -9072,7 +9333,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9072
9333
|
* @return Whether the vmware field is set.
|
|
9073
9334
|
*/
|
|
9074
9335
|
public boolean hasVmware() {
|
|
9075
|
-
return ((bitField1_ &
|
|
9336
|
+
return ((bitField1_ & 0x00000010) != 0);
|
|
9076
9337
|
}
|
|
9077
9338
|
/**
|
|
9078
9339
|
* <code>optional .com.lansweeper.dp.outbound.v1.Vmware vmware = 93;</code>
|
|
@@ -9097,7 +9358,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9097
9358
|
} else {
|
|
9098
9359
|
vmwareBuilder_.setMessage(value);
|
|
9099
9360
|
}
|
|
9100
|
-
bitField1_ |=
|
|
9361
|
+
bitField1_ |= 0x00000010;
|
|
9101
9362
|
onChanged();
|
|
9102
9363
|
return this;
|
|
9103
9364
|
}
|
|
@@ -9111,7 +9372,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9111
9372
|
} else {
|
|
9112
9373
|
vmwareBuilder_.setMessage(builderForValue.build());
|
|
9113
9374
|
}
|
|
9114
|
-
bitField1_ |=
|
|
9375
|
+
bitField1_ |= 0x00000010;
|
|
9115
9376
|
onChanged();
|
|
9116
9377
|
return this;
|
|
9117
9378
|
}
|
|
@@ -9120,7 +9381,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9120
9381
|
*/
|
|
9121
9382
|
public Builder mergeVmware(com.lansweeper.dp.outbound.v1.Vmware value) {
|
|
9122
9383
|
if (vmwareBuilder_ == null) {
|
|
9123
|
-
if (((bitField1_ &
|
|
9384
|
+
if (((bitField1_ & 0x00000010) != 0) &&
|
|
9124
9385
|
vmware_ != null &&
|
|
9125
9386
|
vmware_ != com.lansweeper.dp.outbound.v1.Vmware.getDefaultInstance()) {
|
|
9126
9387
|
getVmwareBuilder().mergeFrom(value);
|
|
@@ -9131,7 +9392,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9131
9392
|
vmwareBuilder_.mergeFrom(value);
|
|
9132
9393
|
}
|
|
9133
9394
|
if (vmware_ != null) {
|
|
9134
|
-
bitField1_ |=
|
|
9395
|
+
bitField1_ |= 0x00000010;
|
|
9135
9396
|
onChanged();
|
|
9136
9397
|
}
|
|
9137
9398
|
return this;
|
|
@@ -9140,7 +9401,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9140
9401
|
* <code>optional .com.lansweeper.dp.outbound.v1.Vmware vmware = 93;</code>
|
|
9141
9402
|
*/
|
|
9142
9403
|
public Builder clearVmware() {
|
|
9143
|
-
bitField1_ = (bitField1_ & ~
|
|
9404
|
+
bitField1_ = (bitField1_ & ~0x00000010);
|
|
9144
9405
|
vmware_ = null;
|
|
9145
9406
|
if (vmwareBuilder_ != null) {
|
|
9146
9407
|
vmwareBuilder_.dispose();
|
|
@@ -9153,7 +9414,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9153
9414
|
* <code>optional .com.lansweeper.dp.outbound.v1.Vmware vmware = 93;</code>
|
|
9154
9415
|
*/
|
|
9155
9416
|
public com.lansweeper.dp.outbound.v1.Vmware.Builder getVmwareBuilder() {
|
|
9156
|
-
bitField1_ |=
|
|
9417
|
+
bitField1_ |= 0x00000010;
|
|
9157
9418
|
onChanged();
|
|
9158
9419
|
return getVmwareFieldBuilder().getBuilder();
|
|
9159
9420
|
}
|
|
@@ -9197,7 +9458,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9197
9458
|
* @return Whether the office365Organization field is set.
|
|
9198
9459
|
*/
|
|
9199
9460
|
public boolean hasOffice365Organization() {
|
|
9200
|
-
return ((bitField1_ &
|
|
9461
|
+
return ((bitField1_ & 0x00000020) != 0);
|
|
9201
9462
|
}
|
|
9202
9463
|
/**
|
|
9203
9464
|
* <pre>
|
|
@@ -9230,7 +9491,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9230
9491
|
} else {
|
|
9231
9492
|
office365OrganizationBuilder_.setMessage(value);
|
|
9232
9493
|
}
|
|
9233
|
-
bitField1_ |=
|
|
9494
|
+
bitField1_ |= 0x00000020;
|
|
9234
9495
|
onChanged();
|
|
9235
9496
|
return this;
|
|
9236
9497
|
}
|
|
@@ -9248,7 +9509,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9248
9509
|
} else {
|
|
9249
9510
|
office365OrganizationBuilder_.setMessage(builderForValue.build());
|
|
9250
9511
|
}
|
|
9251
|
-
bitField1_ |=
|
|
9512
|
+
bitField1_ |= 0x00000020;
|
|
9252
9513
|
onChanged();
|
|
9253
9514
|
return this;
|
|
9254
9515
|
}
|
|
@@ -9261,7 +9522,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9261
9522
|
*/
|
|
9262
9523
|
public Builder mergeOffice365Organization(com.lansweeper.dp.outbound.v1.Office365Organization value) {
|
|
9263
9524
|
if (office365OrganizationBuilder_ == null) {
|
|
9264
|
-
if (((bitField1_ &
|
|
9525
|
+
if (((bitField1_ & 0x00000020) != 0) &&
|
|
9265
9526
|
office365Organization_ != null &&
|
|
9266
9527
|
office365Organization_ != com.lansweeper.dp.outbound.v1.Office365Organization.getDefaultInstance()) {
|
|
9267
9528
|
getOffice365OrganizationBuilder().mergeFrom(value);
|
|
@@ -9272,7 +9533,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9272
9533
|
office365OrganizationBuilder_.mergeFrom(value);
|
|
9273
9534
|
}
|
|
9274
9535
|
if (office365Organization_ != null) {
|
|
9275
|
-
bitField1_ |=
|
|
9536
|
+
bitField1_ |= 0x00000020;
|
|
9276
9537
|
onChanged();
|
|
9277
9538
|
}
|
|
9278
9539
|
return this;
|
|
@@ -9285,7 +9546,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9285
9546
|
* <code>optional .com.lansweeper.dp.outbound.v1.Office365Organization office_365_organization = 94;</code>
|
|
9286
9547
|
*/
|
|
9287
9548
|
public Builder clearOffice365Organization() {
|
|
9288
|
-
bitField1_ = (bitField1_ & ~
|
|
9549
|
+
bitField1_ = (bitField1_ & ~0x00000020);
|
|
9289
9550
|
office365Organization_ = null;
|
|
9290
9551
|
if (office365OrganizationBuilder_ != null) {
|
|
9291
9552
|
office365OrganizationBuilder_.dispose();
|
|
@@ -9302,7 +9563,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9302
9563
|
* <code>optional .com.lansweeper.dp.outbound.v1.Office365Organization office_365_organization = 94;</code>
|
|
9303
9564
|
*/
|
|
9304
9565
|
public com.lansweeper.dp.outbound.v1.Office365Organization.Builder getOffice365OrganizationBuilder() {
|
|
9305
|
-
bitField1_ |=
|
|
9566
|
+
bitField1_ |= 0x00000020;
|
|
9306
9567
|
onChanged();
|
|
9307
9568
|
return getOffice365OrganizationFieldBuilder().getBuilder();
|
|
9308
9569
|
}
|
|
@@ -9350,7 +9611,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9350
9611
|
* @return Whether the citrix field is set.
|
|
9351
9612
|
*/
|
|
9352
9613
|
public boolean hasCitrix() {
|
|
9353
|
-
return ((bitField1_ &
|
|
9614
|
+
return ((bitField1_ & 0x00000040) != 0);
|
|
9354
9615
|
}
|
|
9355
9616
|
/**
|
|
9356
9617
|
* <code>optional .com.lansweeper.dp.outbound.v1.Citrix citrix = 95;</code>
|
|
@@ -9375,7 +9636,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9375
9636
|
} else {
|
|
9376
9637
|
citrixBuilder_.setMessage(value);
|
|
9377
9638
|
}
|
|
9378
|
-
bitField1_ |=
|
|
9639
|
+
bitField1_ |= 0x00000040;
|
|
9379
9640
|
onChanged();
|
|
9380
9641
|
return this;
|
|
9381
9642
|
}
|
|
@@ -9389,7 +9650,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9389
9650
|
} else {
|
|
9390
9651
|
citrixBuilder_.setMessage(builderForValue.build());
|
|
9391
9652
|
}
|
|
9392
|
-
bitField1_ |=
|
|
9653
|
+
bitField1_ |= 0x00000040;
|
|
9393
9654
|
onChanged();
|
|
9394
9655
|
return this;
|
|
9395
9656
|
}
|
|
@@ -9398,7 +9659,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9398
9659
|
*/
|
|
9399
9660
|
public Builder mergeCitrix(com.lansweeper.dp.outbound.v1.Citrix value) {
|
|
9400
9661
|
if (citrixBuilder_ == null) {
|
|
9401
|
-
if (((bitField1_ &
|
|
9662
|
+
if (((bitField1_ & 0x00000040) != 0) &&
|
|
9402
9663
|
citrix_ != null &&
|
|
9403
9664
|
citrix_ != com.lansweeper.dp.outbound.v1.Citrix.getDefaultInstance()) {
|
|
9404
9665
|
getCitrixBuilder().mergeFrom(value);
|
|
@@ -9409,7 +9670,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9409
9670
|
citrixBuilder_.mergeFrom(value);
|
|
9410
9671
|
}
|
|
9411
9672
|
if (citrix_ != null) {
|
|
9412
|
-
bitField1_ |=
|
|
9673
|
+
bitField1_ |= 0x00000040;
|
|
9413
9674
|
onChanged();
|
|
9414
9675
|
}
|
|
9415
9676
|
return this;
|
|
@@ -9418,7 +9679,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9418
9679
|
* <code>optional .com.lansweeper.dp.outbound.v1.Citrix citrix = 95;</code>
|
|
9419
9680
|
*/
|
|
9420
9681
|
public Builder clearCitrix() {
|
|
9421
|
-
bitField1_ = (bitField1_ & ~
|
|
9682
|
+
bitField1_ = (bitField1_ & ~0x00000040);
|
|
9422
9683
|
citrix_ = null;
|
|
9423
9684
|
if (citrixBuilder_ != null) {
|
|
9424
9685
|
citrixBuilder_.dispose();
|
|
@@ -9431,7 +9692,7 @@ private static final long serialVersionUID = 0L;
|
|
|
9431
9692
|
* <code>optional .com.lansweeper.dp.outbound.v1.Citrix citrix = 95;</code>
|
|
9432
9693
|
*/
|
|
9433
9694
|
public com.lansweeper.dp.outbound.v1.Citrix.Builder getCitrixBuilder() {
|
|
9434
|
-
bitField1_ |=
|
|
9695
|
+
bitField1_ |= 0x00000040;
|
|
9435
9696
|
onChanged();
|
|
9436
9697
|
return getCitrixFieldBuilder().getBuilder();
|
|
9437
9698
|
}
|
|
@@ -9462,6 +9723,163 @@ private static final long serialVersionUID = 0L;
|
|
|
9462
9723
|
}
|
|
9463
9724
|
return citrixBuilder_;
|
|
9464
9725
|
}
|
|
9726
|
+
|
|
9727
|
+
private com.lansweeper.dp.outbound.v1.LockedFields manualAssetLockedFields_;
|
|
9728
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
9729
|
+
com.lansweeper.dp.outbound.v1.LockedFields, com.lansweeper.dp.outbound.v1.LockedFields.Builder, com.lansweeper.dp.outbound.v1.LockedFieldsOrBuilder> manualAssetLockedFieldsBuilder_;
|
|
9730
|
+
/**
|
|
9731
|
+
* <pre>
|
|
9732
|
+
* fields locked by the user in the manual asset UI
|
|
9733
|
+
* </pre>
|
|
9734
|
+
*
|
|
9735
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.LockedFields manual_asset_locked_fields = 97;</code>
|
|
9736
|
+
* @return Whether the manualAssetLockedFields field is set.
|
|
9737
|
+
*/
|
|
9738
|
+
public boolean hasManualAssetLockedFields() {
|
|
9739
|
+
return ((bitField1_ & 0x00000080) != 0);
|
|
9740
|
+
}
|
|
9741
|
+
/**
|
|
9742
|
+
* <pre>
|
|
9743
|
+
* fields locked by the user in the manual asset UI
|
|
9744
|
+
* </pre>
|
|
9745
|
+
*
|
|
9746
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.LockedFields manual_asset_locked_fields = 97;</code>
|
|
9747
|
+
* @return The manualAssetLockedFields.
|
|
9748
|
+
*/
|
|
9749
|
+
public com.lansweeper.dp.outbound.v1.LockedFields getManualAssetLockedFields() {
|
|
9750
|
+
if (manualAssetLockedFieldsBuilder_ == null) {
|
|
9751
|
+
return manualAssetLockedFields_ == null ? com.lansweeper.dp.outbound.v1.LockedFields.getDefaultInstance() : manualAssetLockedFields_;
|
|
9752
|
+
} else {
|
|
9753
|
+
return manualAssetLockedFieldsBuilder_.getMessage();
|
|
9754
|
+
}
|
|
9755
|
+
}
|
|
9756
|
+
/**
|
|
9757
|
+
* <pre>
|
|
9758
|
+
* fields locked by the user in the manual asset UI
|
|
9759
|
+
* </pre>
|
|
9760
|
+
*
|
|
9761
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.LockedFields manual_asset_locked_fields = 97;</code>
|
|
9762
|
+
*/
|
|
9763
|
+
public Builder setManualAssetLockedFields(com.lansweeper.dp.outbound.v1.LockedFields value) {
|
|
9764
|
+
if (manualAssetLockedFieldsBuilder_ == null) {
|
|
9765
|
+
if (value == null) {
|
|
9766
|
+
throw new NullPointerException();
|
|
9767
|
+
}
|
|
9768
|
+
manualAssetLockedFields_ = value;
|
|
9769
|
+
} else {
|
|
9770
|
+
manualAssetLockedFieldsBuilder_.setMessage(value);
|
|
9771
|
+
}
|
|
9772
|
+
bitField1_ |= 0x00000080;
|
|
9773
|
+
onChanged();
|
|
9774
|
+
return this;
|
|
9775
|
+
}
|
|
9776
|
+
/**
|
|
9777
|
+
* <pre>
|
|
9778
|
+
* fields locked by the user in the manual asset UI
|
|
9779
|
+
* </pre>
|
|
9780
|
+
*
|
|
9781
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.LockedFields manual_asset_locked_fields = 97;</code>
|
|
9782
|
+
*/
|
|
9783
|
+
public Builder setManualAssetLockedFields(
|
|
9784
|
+
com.lansweeper.dp.outbound.v1.LockedFields.Builder builderForValue) {
|
|
9785
|
+
if (manualAssetLockedFieldsBuilder_ == null) {
|
|
9786
|
+
manualAssetLockedFields_ = builderForValue.build();
|
|
9787
|
+
} else {
|
|
9788
|
+
manualAssetLockedFieldsBuilder_.setMessage(builderForValue.build());
|
|
9789
|
+
}
|
|
9790
|
+
bitField1_ |= 0x00000080;
|
|
9791
|
+
onChanged();
|
|
9792
|
+
return this;
|
|
9793
|
+
}
|
|
9794
|
+
/**
|
|
9795
|
+
* <pre>
|
|
9796
|
+
* fields locked by the user in the manual asset UI
|
|
9797
|
+
* </pre>
|
|
9798
|
+
*
|
|
9799
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.LockedFields manual_asset_locked_fields = 97;</code>
|
|
9800
|
+
*/
|
|
9801
|
+
public Builder mergeManualAssetLockedFields(com.lansweeper.dp.outbound.v1.LockedFields value) {
|
|
9802
|
+
if (manualAssetLockedFieldsBuilder_ == null) {
|
|
9803
|
+
if (((bitField1_ & 0x00000080) != 0) &&
|
|
9804
|
+
manualAssetLockedFields_ != null &&
|
|
9805
|
+
manualAssetLockedFields_ != com.lansweeper.dp.outbound.v1.LockedFields.getDefaultInstance()) {
|
|
9806
|
+
getManualAssetLockedFieldsBuilder().mergeFrom(value);
|
|
9807
|
+
} else {
|
|
9808
|
+
manualAssetLockedFields_ = value;
|
|
9809
|
+
}
|
|
9810
|
+
} else {
|
|
9811
|
+
manualAssetLockedFieldsBuilder_.mergeFrom(value);
|
|
9812
|
+
}
|
|
9813
|
+
if (manualAssetLockedFields_ != null) {
|
|
9814
|
+
bitField1_ |= 0x00000080;
|
|
9815
|
+
onChanged();
|
|
9816
|
+
}
|
|
9817
|
+
return this;
|
|
9818
|
+
}
|
|
9819
|
+
/**
|
|
9820
|
+
* <pre>
|
|
9821
|
+
* fields locked by the user in the manual asset UI
|
|
9822
|
+
* </pre>
|
|
9823
|
+
*
|
|
9824
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.LockedFields manual_asset_locked_fields = 97;</code>
|
|
9825
|
+
*/
|
|
9826
|
+
public Builder clearManualAssetLockedFields() {
|
|
9827
|
+
bitField1_ = (bitField1_ & ~0x00000080);
|
|
9828
|
+
manualAssetLockedFields_ = null;
|
|
9829
|
+
if (manualAssetLockedFieldsBuilder_ != null) {
|
|
9830
|
+
manualAssetLockedFieldsBuilder_.dispose();
|
|
9831
|
+
manualAssetLockedFieldsBuilder_ = null;
|
|
9832
|
+
}
|
|
9833
|
+
onChanged();
|
|
9834
|
+
return this;
|
|
9835
|
+
}
|
|
9836
|
+
/**
|
|
9837
|
+
* <pre>
|
|
9838
|
+
* fields locked by the user in the manual asset UI
|
|
9839
|
+
* </pre>
|
|
9840
|
+
*
|
|
9841
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.LockedFields manual_asset_locked_fields = 97;</code>
|
|
9842
|
+
*/
|
|
9843
|
+
public com.lansweeper.dp.outbound.v1.LockedFields.Builder getManualAssetLockedFieldsBuilder() {
|
|
9844
|
+
bitField1_ |= 0x00000080;
|
|
9845
|
+
onChanged();
|
|
9846
|
+
return getManualAssetLockedFieldsFieldBuilder().getBuilder();
|
|
9847
|
+
}
|
|
9848
|
+
/**
|
|
9849
|
+
* <pre>
|
|
9850
|
+
* fields locked by the user in the manual asset UI
|
|
9851
|
+
* </pre>
|
|
9852
|
+
*
|
|
9853
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.LockedFields manual_asset_locked_fields = 97;</code>
|
|
9854
|
+
*/
|
|
9855
|
+
public com.lansweeper.dp.outbound.v1.LockedFieldsOrBuilder getManualAssetLockedFieldsOrBuilder() {
|
|
9856
|
+
if (manualAssetLockedFieldsBuilder_ != null) {
|
|
9857
|
+
return manualAssetLockedFieldsBuilder_.getMessageOrBuilder();
|
|
9858
|
+
} else {
|
|
9859
|
+
return manualAssetLockedFields_ == null ?
|
|
9860
|
+
com.lansweeper.dp.outbound.v1.LockedFields.getDefaultInstance() : manualAssetLockedFields_;
|
|
9861
|
+
}
|
|
9862
|
+
}
|
|
9863
|
+
/**
|
|
9864
|
+
* <pre>
|
|
9865
|
+
* fields locked by the user in the manual asset UI
|
|
9866
|
+
* </pre>
|
|
9867
|
+
*
|
|
9868
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.LockedFields manual_asset_locked_fields = 97;</code>
|
|
9869
|
+
*/
|
|
9870
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
9871
|
+
com.lansweeper.dp.outbound.v1.LockedFields, com.lansweeper.dp.outbound.v1.LockedFields.Builder, com.lansweeper.dp.outbound.v1.LockedFieldsOrBuilder>
|
|
9872
|
+
getManualAssetLockedFieldsFieldBuilder() {
|
|
9873
|
+
if (manualAssetLockedFieldsBuilder_ == null) {
|
|
9874
|
+
manualAssetLockedFieldsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
|
|
9875
|
+
com.lansweeper.dp.outbound.v1.LockedFields, com.lansweeper.dp.outbound.v1.LockedFields.Builder, com.lansweeper.dp.outbound.v1.LockedFieldsOrBuilder>(
|
|
9876
|
+
getManualAssetLockedFields(),
|
|
9877
|
+
getParentForChildren(),
|
|
9878
|
+
isClean());
|
|
9879
|
+
manualAssetLockedFields_ = null;
|
|
9880
|
+
}
|
|
9881
|
+
return manualAssetLockedFieldsBuilder_;
|
|
9882
|
+
}
|
|
9465
9883
|
@java.lang.Override
|
|
9466
9884
|
public final Builder setUnknownFields(
|
|
9467
9885
|
final com.google.protobuf.UnknownFieldSet unknownFields) {
|