This file is indexed.

/usr/share/doc/libmission-control-plugins-doc/mission-control-plugins/mission-control-plugins-McpAccountStorage.html is in libmission-control-plugins-doc 1:5.16.1-1ubuntu3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Mission Control Plugins Reference Manual: McpAccountStorage</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="Mission Control Plugins Reference Manual">
<link rel="up" href="ch02.html" title="Account storage">
<link rel="prev" href="ch02.html" title="Account storage">
<link rel="next" href="McpAccountManager.html" title="McpAccountManager">
<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
<td width="100%" align="left" class="shortcuts">
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
                  <a href="#mission-control-plugins-McpAccountStorage.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
                  <a href="#mission-control-plugins-McpAccountStorage.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
</td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
<td><a accesskey="u" href="ch02.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
<td><a accesskey="p" href="ch02.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
<td><a accesskey="n" href="McpAccountManager.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
</tr></table>
<div class="refentry">
<a name="mission-control-plugins-McpAccountStorage"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="mission-control-plugins-McpAccountStorage.top_of_page"></a>McpAccountStorage</span></h2>
<p>McpAccountStorage — Account Storage object, implemented by plugins</p>
</td>
<td class="gallery_image" valign="top" align="right"></td>
</tr></table></div>
<div class="refsect1">
<a name="mission-control-plugins-McpAccountStorage.functions"></a><h2>Functions</h2>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="functions_return">
<col class="functions_name">
</colgroup>
<tbody>
<tr>
<td class="function_type">
<span class="returnvalue">gint</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-priority" title="mcp_account_storage_priority ()">mcp_account_storage_priority</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">gboolean</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-get" title="mcp_account_storage_get ()">mcp_account_storage_get</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">gboolean</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-set" title="mcp_account_storage_set ()">mcp_account_storage_set</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">gchar</span> *
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-create" title="mcp_account_storage_create ()">mcp_account_storage_create</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">gboolean</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-delete" title="mcp_account_storage_delete ()">mcp_account_storage_delete</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-ready" title="mcp_account_storage_ready ()">mcp_account_storage_ready</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">gboolean</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-commit" title="mcp_account_storage_commit ()">mcp_account_storage_commit</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">gboolean</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-commit-one" title="mcp_account_storage_commit_one ()">mcp_account_storage_commit_one</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">GList</span> *
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-list" title="mcp_account_storage_list ()">mcp_account_storage_list</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-get-identifier" title="mcp_account_storage_get_identifier ()">mcp_account_storage_get_identifier</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">GHashTable</span> *
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-get-additional-info" title="mcp_account_storage_get_additional_info ()">mcp_account_storage_get_additional_info</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">guint</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-get-restrictions" title="mcp_account_storage_get_restrictions ()">mcp_account_storage_get_restrictions</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">const <span class="returnvalue">gchar</span> *
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-name" title="mcp_account_storage_name ()">mcp_account_storage_name</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">const <span class="returnvalue">gchar</span> *
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-description" title="mcp_account_storage_description ()">mcp_account_storage_description</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">const <span class="returnvalue">gchar</span> *
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-provider" title="mcp_account_storage_provider ()">mcp_account_storage_provider</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">gboolean</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-owns" title="mcp_account_storage_owns ()">mcp_account_storage_owns</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">gboolean</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-set-attribute" title="mcp_account_storage_set_attribute ()">mcp_account_storage_set_attribute</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">gboolean</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-set-parameter" title="mcp_account_storage_set_parameter ()">mcp_account_storage_set_parameter</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-emit-created" title="mcp_account_storage_emit_created ()">mcp_account_storage_emit_created</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-emit-altered" title="mcp_account_storage_emit_altered ()">mcp_account_storage_emit_altered</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-emit-altered-one" title="mcp_account_storage_emit_altered_one ()">mcp_account_storage_emit_altered_one</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-emit-deleted" title="mcp_account_storage_emit_deleted ()">mcp_account_storage_emit_deleted</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-emit-toggled" title="mcp_account_storage_emit_toggled ()">mcp_account_storage_emit_toggled</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-emit-reconnect" title="mcp_account_storage_emit_reconnect ()">mcp_account_storage_emit_reconnect</a> <span class="c_punctuation">()</span>
</td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect1">
<a name="mission-control-plugins-McpAccountStorage.other"></a><h2>Types and Values</h2>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="name">
<col class="description">
</colgroup>
<tbody>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="mission-control-plugins-McpAccountStorage.html#MCP-ACCOUNT-STORAGE-PLUGIN-PRIO-READONLY:CAPS" title="MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_READONLY">MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_READONLY</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="mission-control-plugins-McpAccountStorage.html#MCP-ACCOUNT-STORAGE-PLUGIN-PRIO-DEFAULT:CAPS" title="MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_DEFAULT">MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_DEFAULT</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="mission-control-plugins-McpAccountStorage.html#MCP-ACCOUNT-STORAGE-PLUGIN-PRIO-NORMAL:CAPS" title="MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_NORMAL">MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_NORMAL</a></td>
</tr>
<tr>
<td class="define_keyword">#define</td>
<td class="function_name"><a class="link" href="mission-control-plugins-McpAccountStorage.html#MCP-ACCOUNT-STORAGE-PLUGIN-PRIO-KEYRING:CAPS" title="MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_KEYRING">MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_KEYRING</a></td>
</tr>
<tr>
<td class="datatype_keyword">struct</td>
<td class="function_name"><a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage">McpAccountStorage</a></td>
</tr>
<tr>
<td class="datatype_keyword"> </td>
<td class="function_name"><a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorageIface" title="McpAccountStorageIface">McpAccountStorageIface</a></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect1">
<a name="mission-control-plugins-McpAccountStorage.object-hierarchy"></a><h2>Object Hierarchy</h2>
<pre class="screen">
</pre>
</div>
<div class="refsect1">
<a name="mission-control-plugins-McpAccountStorage.includes"></a><h2>Includes</h2>
<pre class="synopsis">#include &lt;mission-control-plugins/mission-control-plugins.h&gt;
</pre>
</div>
<div class="refsect1">
<a name="mission-control-plugins-McpAccountStorage.description"></a><h2>Description</h2>
<p>Plugins may implement <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> in order to provide account
parameter storage backends to the AccountManager object.</p>
<p>To do so, the plugin must implement a <span class="type">GObject</span> subclass that implements
<a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a>, then return an instance of that subclass from
<a class="link" href="mission-control-plugins-Plugin-loader-and-global-functions.html#mcp-plugin-ref-nth-object" title="mcp_plugin_ref_nth_object ()"><code class="function">mcp_plugin_ref_nth_object()</code></a>.</p>
<p>Many methods take "the unique name of an account" as an argument.
In this plugin, that means the unique "tail" of the account's
object path, for instance "gabble/jabber/chris_40example_2ecom".
The account's full object path is obtained by prepending
<code class="literal">TP_ACCOUNT_OBJECT_PATH_BASE</code>.</p>
<p>A complete implementation of this interface with all methods would
look something like this:</p>
<div class="example">
<a name="id-1.3.2.7.6"></a><p class="title"><b>Example 1. </b></p>
<div class="example-contents"><pre class="programlisting">
G_DEFINE_TYPE_WITH_CODE (FooPlugin, foo_plugin,
   G_TYPE_OBJECT,
   G_IMPLEMENT_INTERFACE (...);
   G_IMPLEMENT_INTERFACE (MCP_TYPE_ACCOUNT_STORAGE,
     account_storage_iface_init));
/* ... */
static void
account_storage_iface_init (McpAccountStorageIface *iface)
{
  iface-&gt;priority = 0;
  iface-&gt;name = "foo";
  iface-&gt;desc = "The FOO storage backend";
  iface-&gt;provider = "org.freedesktop.Telepathy.MissionControl5.FooStorage";

  iface-&gt;get = foo_plugin_get;
  iface-&gt;set = foo_plugin_get;
  iface-&gt;delete = foo_plugin_delete;
  iface-&gt;commit = foo_plugin_commit;
  iface-&gt;commit_one = foo_plugin_commit_one;
  iface-&gt;list = foo_plugin_list;
  iface-&gt;ready = foo_plugin_ready;
  iface-&gt;get_identifier = foo_plugin_get_identifier;
  iface-&gt;get_additional_info = foo_plugin_get_additional_info;
  iface-&gt;get_restrictions = foo_plugin_get_restrictions;
  iface-&gt;create = foo_plugin_create;
  iface-&gt;owns = foo_plugin_owns;
  iface-&gt;set_attribute = foo_plugin_set_attribute;
  iface-&gt;set_parameter = foo_plugin_set_parameter;
}
</pre></div>
</div>
<br class="example-break"><p>A single object can implement more than one interface; It is currently
unlikely that you would find it useful to implement anything other than
an account storage plugin in an account storage object, though.</p>
</div>
<div class="refsect1">
<a name="mission-control-plugins-McpAccountStorage.functions_details"></a><h2>Functions</h2>
<div class="refsect2">
<a name="mcp-account-storage-priority"></a><h3>mcp_account_storage_priority ()</h3>
<pre class="programlisting"><span class="returnvalue">gint</span>
mcp_account_storage_priority (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>);</pre>
<div class="warning"><p><code class="literal">mcp_account_storage_priority</code> is deprecated and should not be used in newly-written code.</p></div>
<p>Gets the priority for this plugin.</p>
<p>Priorities currently run from MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_DEFAULT
(the default storage plugin priority) upwards. More-positive numbers
are higher priority.</p>
<p>Plugins at a higher priority then MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_KEYRING
used to have the opportunity to "steal" passwords from the gnome keyring.
It is no longer significant.</p>
<p>Plugins at a lower priority than the default plugin will never be asked to
store any details, although they may still be asked to list them at startup
time, and may asynchronously notify MC of accounts via the signals above.</p>
<p>When loading accounts at startup, plugins are consulted in order from
lowest to highest, so that higher priority plugins may overrule settings
from lower priority plugins.</p>
<p>Loading all the accounts is only done at startup, before the dbus name
is claimed, and is therefore the only time plugins are allowed to indulge
in blocking calls (indeed, they are expected to carry out this operation,
and ONLY this operation, synchronously).</p>
<p>When values are being set, the plugins are invoked from highest priority
to lowest, with the first plugin that claims a setting being assigned
ownership, and all lower priority plugins being asked to delete the
setting in question.</p>
<div class="refsect3">
<a name="id-1.3.2.8.2.12"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.2.13"></a><h4>Returns</h4>
<p> the priority of this plugin</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-get"></a><h3>mcp_account_storage_get ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>
mcp_account_storage_get (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                         <em class="parameter"><code><a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> *am</code></em>,
                         <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>,
                         <em class="parameter"><code>const <span class="type">gchar</span> *key</code></em>);</pre>
<p>Get a value from the plugin's in-memory cache.
Before emitting this signal, the plugin must call
either <a class="link" href="McpAccountManager.html#mcp-account-manager-set-attribute" title="mcp_account_manager_set_attribute ()"><code class="function">mcp_account_manager_set_attribute()</code></a>,
<a class="link" href="McpAccountManager.html#mcp-account-manager-set-parameter" title="mcp_account_manager_set_parameter ()"><code class="function">mcp_account_manager_set_parameter()</code></a>,
or <a class="link" href="McpAccountManager.html#mcp-account-manager-set-value" title="mcp_account_manager_set_value ()"><code class="function">mcp_account_manager_set_value()</code></a> and (if appropriate)
<a class="link" href="McpAccountManager.html#mcp-account-manager-parameter-make-secret" title="mcp_account_manager_parameter_make_secret ()"><code class="function">mcp_account_manager_parameter_make_secret()</code></a>
before returning from this method call.</p>
<p>Note that <a class="link" href="McpAccountManager.html#mcp-account-manager-set-parameter" title="mcp_account_manager_set_parameter ()"><code class="function">mcp_account_manager_set_parameter()</code></a> does not use the
"param-" prefix, even if called from this function.</p>
<p>If <em class="parameter"><code>key</code></em>
 is <code class="literal">NULL</code> the plugin should iterate through all attributes and
parameters, and push each of them into <em class="parameter"><code>am</code></em>
, as if this method had
been called once for each attribute or parameter. It must then return
<code class="literal">TRUE</code> if any attributes or parameters were found, or <code class="literal">FALSE</code> if it
was not responsible for <em class="parameter"><code>account</code></em>
.</p>
<div class="refsect3">
<a name="id-1.3.2.8.3.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>am</p></td>
<td class="parameter_description"><p>an <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p>the unique name of the account</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>key</p></td>
<td class="parameter_description"><p>the setting whose value we wish to fetch: either an attribute
like "DisplayName", or "param-" plus a parameter like "account"</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.3.8"></a><h4>Returns</h4>
<p> <code class="literal">TRUE</code> if <em class="parameter"><code>storage</code></em>
is responsible for <em class="parameter"><code>account</code></em>
</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-set"></a><h3>mcp_account_storage_set ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>
mcp_account_storage_set (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                         <em class="parameter"><code>const <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> *am</code></em>,
                         <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>,
                         <em class="parameter"><code>const <span class="type">gchar</span> *key</code></em>,
                         <em class="parameter"><code>const <span class="type">gchar</span> *value</code></em>);</pre>
<p>The plugin is expected to either quickly and synchronously
update its internal cache of values with <em class="parameter"><code>value</code></em>
, or to
decline to store the setting.</p>
<p>The plugin is not expected to write to its long term storage
at this point. It can expect Mission Control to call either
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-commit" title="mcp_account_storage_commit ()"><code class="function">mcp_account_storage_commit()</code></a> or <a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-commit-one" title="mcp_account_storage_commit_one ()"><code class="function">mcp_account_storage_commit_one()</code></a>
after a short delay.</p>
<p>Plugins that implement <code class="function">mcp_storage_set_attribute()</code> and
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-set-parameter" title="mcp_account_storage_set_parameter ()"><code class="function">mcp_account_storage_set_parameter()</code></a> can just return <code class="literal">FALSE</code> here.
There is a default implementation, which just returns <code class="literal">FALSE</code>.</p>
<div class="refsect3">
<a name="id-1.3.2.8.4.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>am</p></td>
<td class="parameter_description"><p>an <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p>the unique name of the account</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>key</p></td>
<td class="parameter_description"><p>the non-<code class="literal">NULL</code> setting whose value we wish to store: either an
attribute like "DisplayName", or "param-" plus a parameter like "account"</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>a value to associate with <em class="parameter"><code>key</code></em>
, escaped as if for a <span class="type">GKeyFile</span></p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.4.8"></a><h4>Returns</h4>
<p> <code class="literal">TRUE</code> if the attribute was claimed, <code class="literal">FALSE</code> otherwise</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-create"></a><h3>mcp_account_storage_create ()</h3>
<pre class="programlisting"><span class="returnvalue">gchar</span> *
mcp_account_storage_create (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                            <em class="parameter"><code>const <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> *am</code></em>,
                            <em class="parameter"><code>const <span class="type">gchar</span> *manager</code></em>,
                            <em class="parameter"><code>const <span class="type">gchar</span> *protocol</code></em>,
                            <em class="parameter"><code><span class="type">GHashTable</span> *params</code></em>,
                            <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
<p>Inform the plugin that a new account is being created. <em class="parameter"><code>manager</code></em>
, <em class="parameter"><code>protocol</code></em>

and <em class="parameter"><code>params</code></em>
 are given to help determining the account's unique name, but does
not need to be stored on the account yet, <a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-set" title="mcp_account_storage_set ()"><code class="function">mcp_account_storage_set()</code></a> and
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-commit" title="mcp_account_storage_commit ()"><code class="function">mcp_account_storage_commit()</code></a> will be called later.</p>
<p>It is recommended to use <a class="link" href="McpAccountManager.html#mcp-account-manager-get-unique-name" title="mcp_account_manager_get_unique_name ()"><code class="function">mcp_account_manager_get_unique_name()</code></a> to create the
unique name, but it's not mandatory. One could base the unique name on an
internal storage identifier, prefixed with the provider's name
(e.g. goa__1234).</p>
<p><span class="type">“created”</span> signal should not be emitted for this account,
not even when <a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-commit" title="mcp_account_storage_commit ()"><code class="function">mcp_account_storage_commit()</code></a> will be called.</p>
<div class="refsect3">
<a name="id-1.3.2.8.5.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>am</p></td>
<td class="parameter_description"><p>an object which can be used to call back into the account manager</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>manager</p></td>
<td class="parameter_description"><p>the name of the manager</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>protocol</p></td>
<td class="parameter_description"><p>the name of the protocol</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>params</p></td>
<td class="parameter_description"><p>A gchar * / GValue * hash table of account parameters</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>error</p></td>
<td class="parameter_description"><p>a GError to fill</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.5.8"></a><h4>Returns</h4>
<p> the newly allocated account name, which should
be freed once the caller is done with it, or <code class="literal">NULL</code> if that couldn't
be done. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-delete"></a><h3>mcp_account_storage_delete ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>
mcp_account_storage_delete (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                            <em class="parameter"><code>const <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> *am</code></em>,
                            <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>,
                            <em class="parameter"><code>const <span class="type">gchar</span> *key</code></em>);</pre>
<p>The plugin is expected to remove the setting for <em class="parameter"><code>key</code></em>
 from its
internal cache and to remember that its state has changed, so
that it can delete said setting from its long term storage if
its long term storage method makes this necessary.</p>
<p>If <em class="parameter"><code>key</code></em>
 is <code class="literal">NULL</code>, the plugin should forget all its settings for
<em class="parameter"><code>account</code></em>
,and remember to delete the entire account from its storage later.</p>
<p>The plugin is not expected to update its long term storage at
this point.</p>
<div class="refsect3">
<a name="id-1.3.2.8.6.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>am</p></td>
<td class="parameter_description"><p>an <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p>the unique name of the account</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>key</p></td>
<td class="parameter_description"><p> the setting whose value we wish to store - either an
attribute like "DisplayName", or "param-" plus a parameter like
"account" - or <code class="literal">NULL</code> to delete the entire account. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.6.8"></a><h4>Returns</h4>
<p> <code class="literal">TRUE</code> if the setting or settings are not
the plugin's cache after this operation, <code class="literal">FALSE</code> otherwise.
This is very unlikely to ever be <code class="literal">FALSE</code>, as a plugin is always
expected to be able to manipulate its own cache.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-ready"></a><h3>mcp_account_storage_ready ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
mcp_account_storage_ready (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                           <em class="parameter"><code>const <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> *am</code></em>);</pre>
<p>Informs the plugin that it is now permitted to create new accounts,
ie it can now fire its "created", "altered", "toggled" and "deleted"
signals.</p>
<div class="refsect3">
<a name="id-1.3.2.8.7.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>am</p></td>
<td class="parameter_description"><p>an <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-commit"></a><h3>mcp_account_storage_commit ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>
mcp_account_storage_commit (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                            <em class="parameter"><code>const <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> *am</code></em>);</pre>
<p>The plugin is expected to write its cache to long term storage,
deleting, adding or updating entries in said storage as needed.</p>
<p>This call is expected to return promptly, but the plugin is
not required to have finished its commit operation when it returns,
merely to have started the operation.</p>
<p>If the <em class="parameter"><code>commit_one</code></em>
 method is implemented, it will be called preferentially
if only one account is to be committed. If the <em class="parameter"><code>commit_one</code></em>
 method is
implemented but <em class="parameter"><code>commit</code></em>
 is not, <em class="parameter"><code>commit_one</code></em>
 will be called with
<em class="parameter"><code>account_name</code></em>
 = <code class="literal">NULL</code> to commit all accounts.</p>
<div class="refsect3">
<a name="id-1.3.2.8.8.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>am</p></td>
<td class="parameter_description"><p>an <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.8.8"></a><h4>Returns</h4>
<p> <code class="literal">TRUE</code> if the commit process was started (but not necessarily
completed) successfully; <code class="literal">FALSE</code> if there was a problem that was immediately
obvious.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-commit-one"></a><h3>mcp_account_storage_commit_one ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>
mcp_account_storage_commit_one (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                                <em class="parameter"><code>const <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> *am</code></em>,
                                <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>);</pre>
<p>The same as <a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-commit" title="mcp_account_storage_commit ()"><code class="function">mcp_account_storage_commit()</code></a>, but only commit the given
account. This is optional to implement; the default implementation
is to call <em class="parameter"><code>commit</code></em>
.</p>
<p>If both <a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-commit-one" title="mcp_account_storage_commit_one ()"><code class="function">mcp_account_storage_commit_one()</code></a> and <a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-commit" title="mcp_account_storage_commit ()"><code class="function">mcp_account_storage_commit()</code></a>
are implemented, Mission Control will never pass <em class="parameter"><code>account</code></em>
 = <code class="literal">NULL</code> to
this method.</p>
<div class="refsect3">
<a name="id-1.3.2.8.9.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>am</p></td>
<td class="parameter_description"><p>an <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p> the unique suffix of an account's object path,
or <code class="literal">NULL</code> if all accounts are to be committed and
<a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-commit" title="mcp_account_storage_commit ()"><code class="function">mcp_account_storage_commit()</code></a> is unimplemented. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.9.7"></a><h4>Returns</h4>
<p> <code class="literal">TRUE</code> if the commit process was started (but not necessarily
completed) successfully; <code class="literal">FALSE</code> if there was a problem that was immediately
obvious.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-list"></a><h3>mcp_account_storage_list ()</h3>
<pre class="programlisting"><span class="returnvalue">GList</span> *
mcp_account_storage_list (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                          <em class="parameter"><code>const <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> *am</code></em>);</pre>
<p>Load details of every account stored by this plugin into an in-memory cache
so that it can respond to requests promptly.</p>
<p>This method is called only at initialisation time, before the dbus name
has been claimed, and is the only one permitted to block.</p>
<div class="refsect3">
<a name="id-1.3.2.8.10.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>am</p></td>
<td class="parameter_description"><p>an <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.10.7"></a><h4>Returns</h4>
<p> a list of account names that
the plugin has settings for. The account names should be freed with
<code class="function">g_free()</code>, and the list with <code class="function">g_list_free()</code>, when the caller is done with
them. </p>
<p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-get-identifier"></a><h3>mcp_account_storage_get_identifier ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
mcp_account_storage_get_identifier (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                                    <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>,
                                    <em class="parameter"><code><span class="type">GValue</span> *identifier</code></em>);</pre>
<p>Get the storage-specific identifier for this account. The type is variant,
hence the GValue.</p>
<p>This method will only be called for the storage plugin that "owns"
the account.</p>
<div class="refsect3">
<a name="id-1.3.2.8.11.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p>the unique name of the account</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>identifier</p></td>
<td class="parameter_description"><p> a zero-filled <span class="type">GValue</span> whose type
can be sent over D-Bus by dbus-glib, to hold the identifier. </p></td>
<td class="parameter_annotations"><span class="annotation">[<acronym title="Out parameter, where caller must allocate storage."><span class="acronym">out caller-allocates</span></acronym>]</span></td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-get-additional-info"></a><h3>mcp_account_storage_get_additional_info ()</h3>
<pre class="programlisting"><span class="returnvalue">GHashTable</span> *
mcp_account_storage_get_additional_info
                               (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                                <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>);</pre>
<p>Return additional storage-specific information about this account, which is
made available on D-Bus but not otherwise interpreted by Mission Control.</p>
<p>This method will only be called for the storage plugin that "owns"
the account.</p>
<div class="refsect3">
<a name="id-1.3.2.8.12.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p>the unique name of the account</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.12.7"></a><h4>Returns</h4>
<p> additional
storage-specific information. </p>
<p><span class="annotation">[<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8 GObject.Value]</span></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-get-restrictions"></a><h3>mcp_account_storage_get_restrictions ()</h3>
<pre class="programlisting"><span class="returnvalue">guint</span>
mcp_account_storage_get_restrictions (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                                      <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>);</pre>
<p>This method will only be called for the storage plugin that "owns"
the account.</p>
<div class="refsect3">
<a name="id-1.3.2.8.13.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p>the unique name of the account</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.13.6"></a><h4>Returns</h4>
<p> a bitmask of <code class="literal">TpStorageRestrictionFlags</code> with the restrictions to
account storage.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-name"></a><h3>mcp_account_storage_name ()</h3>
<pre class="programlisting">const <span class="returnvalue">gchar</span> *
mcp_account_storage_name (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>);</pre>
<p></p>
<div class="refsect3">
<a name="id-1.3.2.8.14.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.14.6"></a><h4>Returns</h4>
<p> the plugin's name (for logging etc)</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-description"></a><h3>mcp_account_storage_description ()</h3>
<pre class="programlisting">const <span class="returnvalue">gchar</span> *
mcp_account_storage_description (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>);</pre>
<p></p>
<div class="refsect3">
<a name="id-1.3.2.8.15.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.15.6"></a><h4>Returns</h4>
<p> the plugin's description (for logging etc)</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-provider"></a><h3>mcp_account_storage_provider ()</h3>
<pre class="programlisting">const <span class="returnvalue">gchar</span> *
mcp_account_storage_provider (<em class="parameter"><code>const <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>);</pre>
<p></p>
<div class="refsect3">
<a name="id-1.3.2.8.16.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.16.6"></a><h4>Returns</h4>
<p> a D-Bus namespaced name for this plugin, or "" if none
was provided in <span class="type">McpAccountStorageIface.provider</span>.</p>
<p></p>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-owns"></a><h3>mcp_account_storage_owns ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>
mcp_account_storage_owns (<em class="parameter"><code><a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                          <em class="parameter"><code><a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> *am</code></em>,
                          <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>);</pre>
<p>Check whether <em class="parameter"><code>account</code></em>
 is stored in <em class="parameter"><code>storage</code></em>
. The highest-priority
plugin for which this function returns <code class="literal">TRUE</code> is considered to be
responsible for <em class="parameter"><code>account</code></em>
.</p>
<p>There is a default implementation, which calls <a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-get" title="mcp_account_storage_get ()"><code class="function">mcp_account_storage_get()</code></a>
for the well-known key "manager".</p>
<div class="refsect3">
<a name="id-1.3.2.8.17.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>am</p></td>
<td class="parameter_description"><p>an <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p>the unique name (object-path tail) of an account</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.17.7"></a><h4>Returns</h4>
<p> <code class="literal">TRUE</code> if <em class="parameter"><code>account</code></em>
is stored in <em class="parameter"><code>storage</code></em>
</p>
<p></p>
</div>
<p class="since">Since 5.15.0</p>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-set-attribute"></a><h3>mcp_account_storage_set_attribute ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>
mcp_account_storage_set_attribute (<em class="parameter"><code><a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                                   <em class="parameter"><code><a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> *am</code></em>,
                                   <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>,
                                   <em class="parameter"><code>const <span class="type">gchar</span> *attribute</code></em>,
                                   <em class="parameter"><code><span class="type">GVariant</span> *value</code></em>,
                                   <em class="parameter"><code><span class="type">McpAttributeFlags</span> flags</code></em>);</pre>
<p>Store an attribute.</p>
<p>The plugin is expected to either quickly and synchronously
update its internal cache of values with <em class="parameter"><code>value</code></em>
, or to
decline to store the attribute.</p>
<p>The plugin is not expected to write to its long term storage
at this point.</p>
<p>There is a default implementation, which just returns <code class="literal">FALSE</code>.
Mission Control will call <a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-set" title="mcp_account_storage_set ()"><code class="function">mcp_account_storage_set()</code></a> instead,
using a keyfile-escaped version of <em class="parameter"><code>value</code></em>
.</p>
<div class="refsect3">
<a name="id-1.3.2.8.18.8"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>am</p></td>
<td class="parameter_description"><p>an <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p>the unique name of the account</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>attribute</p></td>
<td class="parameter_description"><p>the name of an attribute, e.g. "DisplayName"</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>a value to associate with <em class="parameter"><code>attribute</code></em>
</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>flags</p></td>
<td class="parameter_description"><p>flags influencing how the attribute is to be stored</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.18.9"></a><h4>Returns</h4>
<p> <code class="literal">TRUE</code> if the attribute was claimed, <code class="literal">FALSE</code> otherwise</p>
<p></p>
</div>
<p class="since">Since 5.15.0</p>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-set-parameter"></a><h3>mcp_account_storage_set_parameter ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span>
mcp_account_storage_set_parameter (<em class="parameter"><code><a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                                   <em class="parameter"><code><a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> *am</code></em>,
                                   <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>,
                                   <em class="parameter"><code>const <span class="type">gchar</span> *parameter</code></em>,
                                   <em class="parameter"><code><span class="type">GVariant</span> *value</code></em>,
                                   <em class="parameter"><code><span class="type">McpParameterFlags</span> flags</code></em>);</pre>
<p>Store a parameter.</p>
<p>The plugin is expected to either quickly and synchronously
update its internal cache of values with <em class="parameter"><code>value</code></em>
, or to
decline to store the parameter.</p>
<p>The plugin is not expected to write to its long term storage
at this point.</p>
<p>There is a default implementation, which just returns <code class="literal">FALSE</code>.
Mission Control will call <a class="link" href="mission-control-plugins-McpAccountStorage.html#mcp-account-storage-set" title="mcp_account_storage_set ()"><code class="function">mcp_account_storage_set()</code></a> instead,
using "param-" + <em class="parameter"><code>parameter</code></em>
 as key and a keyfile-escaped version
of <em class="parameter"><code>value</code></em>
 as value.</p>
<div class="refsect3">
<a name="id-1.3.2.8.19.8"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>am</p></td>
<td class="parameter_description"><p>an <a class="link" href="McpAccountManager.html" title="McpAccountManager"><span class="type">McpAccountManager</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p>the unique name of the account</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>parameter</p></td>
<td class="parameter_description"><p>the name of a parameter, e.g. "account" (note that there
is no "param-" prefix here)</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>a value to associate with <em class="parameter"><code>parameter</code></em>
</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>flags</p></td>
<td class="parameter_description"><p>flags influencing how the parameter is to be stored</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="id-1.3.2.8.19.9"></a><h4>Returns</h4>
<p> <code class="literal">TRUE</code> if the parameter was claimed, <code class="literal">FALSE</code> otherwise</p>
<p></p>
</div>
<p class="since">Since 5.15.0</p>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-emit-created"></a><h3>mcp_account_storage_emit_created ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
mcp_account_storage_emit_created (<em class="parameter"><code><a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                                  <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>);</pre>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-emit-altered"></a><h3>mcp_account_storage_emit_altered ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
mcp_account_storage_emit_altered (<em class="parameter"><code><a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                                  <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>);</pre>
<div class="warning"><p><code class="literal">mcp_account_storage_emit_altered</code> is deprecated and should not be used in newly-written code.</p></div>
<p>Emits the <span class="type">“altered”</span> signal</p>
<div class="refsect3">
<a name="id-1.3.2.8.21.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p>the unique name of the altered account</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-emit-altered-one"></a><h3>mcp_account_storage_emit_altered_one ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
mcp_account_storage_emit_altered_one (<em class="parameter"><code><a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                                      <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>,
                                      <em class="parameter"><code>const <span class="type">gchar</span> *key</code></em>);</pre>
<p>Emits the <span class="type">“altered-one”</span> signal</p>
<div class="refsect3">
<a name="id-1.3.2.8.22.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p>the unique name of the altered account</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>key</p></td>
<td class="parameter_description"><p>the key of the altered property: either an attribute name
like "DisplayName", or "param-" plus a parameter name like "account"</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-emit-deleted"></a><h3>mcp_account_storage_emit_deleted ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
mcp_account_storage_emit_deleted (<em class="parameter"><code><a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                                  <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>);</pre>
<p>Emits the <span class="type">“deleted”</span> signal</p>
<div class="refsect3">
<a name="id-1.3.2.8.23.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p>the unique name of the deleted account</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-emit-toggled"></a><h3>mcp_account_storage_emit_toggled ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
mcp_account_storage_emit_toggled (<em class="parameter"><code><a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                                  <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>,
                                  <em class="parameter"><code><span class="type">gboolean</span> enabled</code></em>);</pre>
<p>Emits ::toggled signal</p>
<div class="refsect3">
<a name="id-1.3.2.8.24.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p>the unique name of the account</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>enabled</p></td>
<td class="parameter_description"><p><code class="literal">TRUE</code> if the account is now enabled</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
<hr>
<div class="refsect2">
<a name="mcp-account-storage-emit-reconnect"></a><h3>mcp_account_storage_emit_reconnect ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
mcp_account_storage_emit_reconnect (<em class="parameter"><code><a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> *storage</code></em>,
                                    <em class="parameter"><code>const <span class="type">gchar</span> *account</code></em>);</pre>
<p>Emits ::reconnect signal</p>
<div class="refsect3">
<a name="id-1.3.2.8.25.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>storage</p></td>
<td class="parameter_description"><p>an <a class="link" href="mission-control-plugins-McpAccountStorage.html#McpAccountStorage" title="struct McpAccountStorage"><span class="type">McpAccountStorage</span></a> instance</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>account</p></td>
<td class="parameter_description"><p>the unique name of the account to reconnect</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
</div>
</div>
<div class="refsect1">
<a name="mission-control-plugins-McpAccountStorage.other_details"></a><h2>Types and Values</h2>
<div class="refsect2">
<a name="MCP-ACCOUNT-STORAGE-PLUGIN-PRIO-READONLY:CAPS"></a><h3>MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_READONLY</h3>
<pre class="programlisting">#define MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_READONLY -1
</pre>
</div>
<hr>
<div class="refsect2">
<a name="MCP-ACCOUNT-STORAGE-PLUGIN-PRIO-DEFAULT:CAPS"></a><h3>MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_DEFAULT</h3>
<pre class="programlisting">#define MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_DEFAULT   0
</pre>
</div>
<hr>
<div class="refsect2">
<a name="MCP-ACCOUNT-STORAGE-PLUGIN-PRIO-NORMAL:CAPS"></a><h3>MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_NORMAL</h3>
<pre class="programlisting">#define MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_NORMAL    100
</pre>
</div>
<hr>
<div class="refsect2">
<a name="MCP-ACCOUNT-STORAGE-PLUGIN-PRIO-KEYRING:CAPS"></a><h3>MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_KEYRING</h3>
<pre class="programlisting">#define MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_KEYRING   10000
</pre>
</div>
<hr>
<div class="refsect2">
<a name="McpAccountStorage"></a><h3>struct McpAccountStorage</h3>
<pre class="programlisting">struct McpAccountStorage {
 };
#endif

#define MCP_TYPE_ACCOUNT_STORAGE (mcp_account_storage_get_type ())

#define MCP_ACCOUNT_STORAGE(o) \
  (G_TYPE_CHECK_INSTANCE_CAST ((o), MCP_TYPE_ACCOUNT_STORAGE, \
      McpAccountStorage))

#define MCP_IS_ACCOUNT_STORAGE(o) \
  (G_TYPE_CHECK_INSTANCE_TYPE ((o), MCP_TYPE_ACCOUNT_STORAGE))

#define MCP_ACCOUNT_STORAGE_GET_IFACE(o) \
  (G_TYPE_INSTANCE_GET_INTERFACE ((o), MCP_TYPE_ACCOUNT_STORAGE, \
                                  McpAccountStorageIface))

GType mcp_account_storage_get_type (void);

/* Virtual method implementation signatures */
typedef gboolean (*McpAccountStorageGetFunc) (
    const McpAccountStorage *storage,
    const McpAccountManager *am,
    const gchar *account,
    const gchar *key);
typedef gboolean (*McpAccountStorageSetFunc) (
    const McpAccountStorage *storage,
    const McpAccountManager *am,
    const gchar *account,
    const gchar *key,
    const gchar *val);
typedef gchar * (*McpAccountStorageCreate) (
    const McpAccountStorage *storage,
    const McpAccountManager *am,
    const gchar *manager,
    const gchar *protocol,
    GHashTable *params,
    GError **error);
typedef gboolean (*McpAccountStorageDeleteFunc) (
    const McpAccountStorage *storage,
    const McpAccountManager *am,
    const gchar *account,
    const gchar *key);
typedef GList * (*McpAccountStorageListFunc) (
    const McpAccountStorage *storage,
    const McpAccountManager *am);
typedef gboolean (*McpAccountStorageCommitFunc) (
    const McpAccountStorage *storage,
    const McpAccountManager *am);
typedef gboolean (*McpAccountStorageCommitOneFunc) (
    const McpAccountStorage *storage,
    const McpAccountManager *am,
    const gchar *account);
typedef void (*McpAccountStorageReadyFunc) (
    const McpAccountStorage *storage,
    const McpAccountManager *am);
typedef void (*McpAccountStorageGetIdentifierFunc) (
    const McpAccountStorage *storage,
    const gchar *account,
    GValue *identifier);
typedef GHashTable * (*McpAccountStorageGetAdditionalInfoFunc) (
    const McpAccountStorage *storage,
    const gchar *account);
/* FIXME: when breaking API, make this return TpStorageRestrictionFlags */
typedef guint (*McpAccountStorageGetRestrictionsFunc) (
    const McpAccountStorage *storage,
    const gchar *account);

struct _McpAccountStorageIface
{
  GTypeInterface parent;

  gint priority;
  const gchar *name;
  const gchar *desc;
  const gchar *provider;

  McpAccountStorageSetFunc set;
  McpAccountStorageGetFunc get;
  McpAccountStorageDeleteFunc delete;
  McpAccountStorageCommitFunc commit;
  McpAccountStorageListFunc list;
  McpAccountStorageReadyFunc ready;
  McpAccountStorageCommitOneFunc commit_one;
  McpAccountStorageGetIdentifierFunc get_identifier;
  McpAccountStorageGetAdditionalInfoFunc get_additional_info;
  McpAccountStorageGetRestrictionsFunc get_restrictions;
  McpAccountStorageCreate create;

  /* Since 5.15.0 */
  gboolean (*owns) (McpAccountStorage *storage,
      McpAccountManager *am,
      const gchar *account);
  gboolean (*set_attribute) (McpAccountStorage *storage,
      McpAccountManager *am,
      const gchar *account,
      const gchar *attribute,
      GVariant *val,
      McpAttributeFlags flags);
  gboolean (*set_parameter) (McpAccountStorage *storage,
      McpAccountManager *am,
      const gchar *account,
      const gchar *parameter,
      GVariant *val,
      McpParameterFlags flags);
};
</pre>
<p>An object implementing the account storage plugin interface.</p>
</div>
<hr>
<div class="refsect2">
<a name="McpAccountStorageIface"></a><h3>McpAccountStorageIface</h3>
<pre class="programlisting">typedef struct _McpAccountStorageIface McpAccountStorageIface;</pre>
<p>The interface vtable for an account storage plugin.</p>
<div class="refsect3">
<a name="id-1.3.2.9.7.5"></a><h4>Members</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="300px" class="struct_members_name">
<col class="struct_members_description">
<col width="200px" class="struct_members_annotations">
</colgroup>
<tbody></tbody>
</table></div>
</div>
</div>
</div>
</div>
<div class="footer">
<hr>
          Generated by GTK-Doc V1.20</div>
</body>
</html>