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
|
//
// Open Service Platform
// Copyright (c) 2012 Samsung Electronics Co., Ltd.
//
// Licensed under the Apache License, Version 2.0 (the License);
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
/**
* @file FSclAddressbook.h
* @brief This is the header file for the %Addressbook class.
*
* This header file contains the declarations of the %Addressbook class.
*/
#ifndef _FSCL_ADDRESSBOOK_H_
#define _FSCL_ADDRESSBOOK_H_
#include <FBaseObject.h>
#include <FBaseTypes.h>
#include <FSclRecord.h>
#include <FSclTypes.h>
namespace Tizen { namespace Base
{
class String;
namespace Collection
{
class IList;
template<class Type> class IListT;
}
}}
namespace Tizen { namespace Social
{
class Category;
class Contact;
class UserProfile;
class IRecordEventListener;
class IAddressbookEventListener;
class IAddressbookChangeEventListener;
class IRecordEventListener;
/**
* @class Addressbook
* @brief This class handles the address book database.
*
* @since 2.0
*
* @final This class is not intended for extension.
*
* The %Addressbook class handles the %Addressbook database, which is a centralized database used by multiple applications to store a subset of the contact information.
* It also supports the categorizing of the contacts.
*
* For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/social/addressbook_namespace.htm">Address Book</a>.
*
* The following example demonstrates how to use the %Addressbook class to create the categories and add contacts to them.
*
* @code
*
#include <FSocial.h>
using namespace Tizen::Social;
using namespace Tizen::Base;
void
AddressbookExample::CreateExample(void)
{
result r = E_SUCCESS;
// Get default addressbook instance
Addressbook* pAddressbook = AddressbookManager::GetInstance()->GetAddressbookN();
// Creates and constructs a contact
Contact contact;
// Sets the contact's properties: first name and last name
contact.SetValue(CONTACT_PROPERTY_ID_FIRST_NAME , L"Thomas");
contact.SetValue(CONTACT_PROPERTY_ID_LAST_NAME , L"Anderson");
// Sets the contact's properties: add a phone number
PhoneNumber phoneNumber(PHONENUMBER_TYPE_MOBILE, L"820223459876");
contact.AddPhoneNumber(phoneNumber);
// Sets the contact's properties: add an address
Address address;
address.SetCountry(L"KOR");
address.SetCity(L"Seoul");
contact.AddAddress(address);
// Adds the contact to the address book (when it is added, the recordId is created)
r = pAddressbook->AddContact(contact);
if (IsFailed(r))
{
AppLogException( "Fails to add a contact");
delete pAddressbook;
return;
}
// Creates and constructs a category ("Friends")
Category category;
category.SetName(L"Friends");
// Adds the category to the address book
r = pAddressbook->AddCategory(category);
if (IsFailed(r))
{
delete pAddressbook;
return;
}
// Adds the contact to the category
r = pAddressbook->AddMemberToCategory(category.GetRecordId(), contact.GetRecordId());
if (IsFailed(r))
{
delete pAddressbook;
return;
}
delete pAddressbook;
}
*
* @endcode
*
* The following example demonstrates how to use the %Addressbook class to retrieve the contacts associated with each category.
* @code
*
#include <FSocial.h>
using namespace Tizen::Base;
using namespace Tizen::Base::Collection;
using namespace Tizen::Social;
void
AddressbookExample::GetContactsExample(void)
{
result r = E_SUCCESS;
// Get default addressbook instance
Addressbook* pAddressbook = AddressbookManager::GetInstance()->GetAddressbookN();
// Gets all the categories.
IList* pCategoryList = pAddressbook->GetAllCategoriesN();
if (pCategoryList == null)
{
delete pAddressbook;
return;
}
Category* pCategory = null;
Contact* pContact = null;
IList* pContactList = null;
IEnumerator* pContactEnum = null;
String firstName;
String lastName;
IEnumerator* pCategoryEnum = pCategoryList->GetEnumeratorN();
while (pCategoryEnum->MoveNext() == E_SUCCESS)
{
pCategory = static_cast<Category*>(pCategoryEnum->GetCurrent());
// Gets all the contacts of each category.
pContactList = pAddressbook->GetContactsByCategoryN(pCategory->GetRecordId());
if (pContactList == null)
{
continue;
}
pContactEnum = pContactList->GetEnumeratorN();
while (pContactEnum->MoveNext() == E_SUCCESS)
{
pContact = static_cast<Contact*>(pContactEnum->GetCurrent());
//Gets the name.
pContact->GetValue(CONTACT_PROPERTY_ID_FIRST_NAME, firstName);
pContact->GetValue(CONTACT_PROPERTY_ID_LAST_NAME, lastName);
// Displays the first name and last name.
// ...
}
delete pContactEnum;
pContactList->RemoveAll(true);
delete pContactList;
}
delete pCategoryEnum;
pCategoryList->RemoveAll(true);
delete pCategoryList;
delete pAddressbook;
}
*
* @endcode
*
* The following example demonstrates how to use the %Addressbook class to search for a contact.
*
* @code
*
#include <FSocial.h>
using namespace Tizen::Base;
using namespace Tizen::Base::Collection;
using namespace Tizen::Social;
void
AddressbookExample::SearchExample(void)
{
result r = E_SUCCESS;
// Get default addressbook instance
Addressbook* pAddressbook = AddressbookManager::GetInstance()->GetAddressbookN();
//Searches contacts by name ("Anderson").
IList* pContactList = pAddressbook->SearchContactsByNameN(L"Anderson");
if (pContactList == null)
{
delete pAddressbook;
return;
}
Contact* pContact = null;
String firstName;
String lastName;
IEnumerator* pContactEnum = pContactList->GetEnumeratorN();
while (pContactEnum->MoveNext() == E_SUCCESS)
{
pContact = static_cast<Contact*>(pContactEnum->GetCurrent());
//Gets the contact's name.
pContact->GetValue(CONTACT_PROPERTY_ID_FIRST_NAME, firstName);
pContact->GetValue(CONTACT_PROPERTY_ID_LAST_NAME, lastName);
// Displays the first name and last name.
// ...
}
delete pContactEnum;
pContactList->RemoveAll(true);
delete pContactList;
delete pAddressbook;
}
*
* @endcode
*/
class _OSP_EXPORT_ Addressbook
: public Tizen::Base::Object
{
public:
/**
*
* The object is not fully constructed after this constructor is called. @n
* An application must use AddressbookManager::GetAddressbookN() to get fully constructed %Addressbook instance.
* @since 2.0
*
* @see AddressbookManager::GetAddressbookN()
*
* The following example demonstrates how to create an %Addressbook instance.
* @code
* result
* MyApplication::UpdateContact(Contact* pContact)
* {
* Addressbook* pAddressbook = AddressbookManager::GetInstance()->GetAddressbookN();
*
* result r = pAddressbook->UpdateContact(*pContact);
*
* delete pAddressbook;
*
* return r;
* }
* @endcode
*/
Addressbook(void);
/**
* This destructor overrides Tizen::Base::Object::~Object().
*
* @since 2.0
*/
virtual ~Addressbook(void);
/**
* @if OSPDEPREC
* Initializes this instance of %Addressbook with the specified listener.
*
* @brief <i> [Deprecated] </i>
* @deprecated This method and IRecordEventListener are deprecated. Instead of using this method, use AddressbookManager::GetAddressbookN() and SetEventListener().
*
* @since 2.0
*
* @return An error code
* @param[in] pListener The event listener to register
* @exception E_SUCCESS The method is successful.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @endif
*/
result Construct(IRecordEventListener* pListener = null);
/**
* Sets addressbook change event listener. @n
* The listener is called when a contact or a category has been changed.
* To reset the event listener, @c null must be passed.
*
* @brief <i> [Deprecated] </i>
* @deprecated This method and IAddressbookEventListener are deprecated. Instead of using this method, use SetAddressbookChangeEventListener()
* and IAddressbookChangeEventListener.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return An error code
* @param[in] pListener The event listener
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
*/
result SetEventListener(IAddressbookEventListener* pListener);
/**
* Sets addressbook change event listener. @n
* The listener is called when a contact or a category has been changed.
* To reset the event listener, @c null must be passed.
*
* @since 2.1
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return An error code
* @param[in] pListener The event listener
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method.
* @exception E_SYSTEM The method cannot proceed due to a severe system error
*/
result SetAddressbookChangeEventListener(IAddressbookChangeEventListener* pListener);
/**
* Adds a contact to the address book. @n
* At least one property of the contact must have been set. @n
* If the contact has been added successfully, a contact ID is assigned to it.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.write
*
* @return An error code
* @param[in,out] contact The contact to add
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The contact ID is not #INVALID_RECORD_ID, or
* the properties of the contact have not been set.
* @exception E_STORAGE_FULL The storage is insufficient.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks The #CONTACT_PROPERTY_ID_DISPLAY_NAME and #CONTACT_PROPERTY_ID_LAST_REVISION properties cannot be set.
* @n #CONTACT_PROPERTY_ID_DISPLAY_NAME is automatically generated from the first name and last name.
* And #CONTACT_PROPERTY_ID_LAST_REVISION automatically updated with the last update time.
*/
result AddContact(Contact& contact);
/**
* Removes a contact from the address book. @n
* After this operation is done successfully, the ID of the Contact instance is #INVALID_RECORD_ID.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.write
*
* @return An error code
* @param[in,out] contact The contact to remove
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified @c contact is invalid.
* @exception E_OBJ_NOT_FOUND The specified @c contact does not exist.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
*/
result RemoveContact(Contact& contact);
/**
* Removes a contact from the address book.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.write
*
* @return An error code
* @param[in] contactId The contact ID
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified @c contactId is invalid.
* @exception E_OBJ_NOT_FOUND The specified @c contactId does not exist.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
*/
result RemoveContact(RecordId contactId);
/**
* Updates the specified contact. @n
* At least one property of the contact must have been set.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.write
*
* @return An error code
* @param[in] contact The contact to update
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_OBJ_NOT_FOUND The specified @c contact does not exist in this address book.
* @exception E_INVALID_ARG The specified @c contact is invalid, or
* the properties of the specified @c contact have not been set.
* @exception E_STORAGE_FULL The storage is insufficient.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
*/
result UpdateContact(const Contact& contact);
/**
* Adds a category to the address book. @n
* If the category has been added successfully, a category ID is assigned to it.
*
* @if OSPCOMPAT
* @brief <i> [Compatibility] </i>
* @endif
* @since 2.0
* @if OSPCOMPAT
* @compatibility This method has compatibility issues with OSP compatible applications. @n
* For more information, see @ref CompAddressbookAddCategoryPage "here".
* @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.write
*
* @return An error code
* @param[in,out] category The category to add
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG Either of the following conditions has occurred: @n
* - The name of the category has not been set. @n
* - The category ID of the @c category is not #INVALID_RECORD_ID. @n
* - One of the contact members is invalid.
* @exception E_STORAGE_FULL The storage is insufficient.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
*/
result AddCategory(Category& category);
/**
* @if OSPCOMPAT
* @page CompAddressbookAddCategoryPage Compatibility for AddCategory()
* @section CompAddressbookAddCategoryPageIssueSection Issues
* Implementing this method in OSP compatible applications has the following issue: @n
* -# If there already exist a category which has the same name, E_OBJ_ALREADY_EXIST is returned.
*
* @section CompAddressbookAddCategoryPageSolutionSection Resolutions
* The issue mentioned above has been resolved in Tizen.
* @endif
*/
/**
* Removes a category from the address book. @n
* If the category has been deleted successfully, the record ID of this instance is #INVALID_RECORD_ID.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.write
*
* @return An error code
* @param[in,out] category The category to remove
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified @c category is invalid or a default category.
* @exception E_OBJ_NOT_FOUND The specified @c category does not exist in this address book.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @see Category::IsDefault()
*/
result RemoveCategory(Category& category);
/**
* Removes a category from the address book.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.write
*
* @return An error code
* @param[in] categoryId The category ID
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified @c categoryId is invalid or the category specified by @ categoryId is a default category.
* @exception E_OBJ_NOT_FOUND The specified @c categoryId does not exist in this address book.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @see Category::IsDefault()
*/
result RemoveCategory(RecordId categoryId);
/**
* Updates a category in the address book.
*
* @if OSPCOMPAT
* @brief <i> [Compatibility] </i>
* @endif
* @since 2.0
* @if OSPCOMPAT
* @compatibility This method has compatibility issues with OSP compatible applications. @n
* For more information, see @ref CompAddressbookUpdateCategoryPage "here".
* @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.write
*
* @return An error code
* @param[in] category The category to update
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_OBJ_NOT_FOUND The specified @c category does not exist in this address book.
* @exception E_INVALID_ARG The specified @c category is invalid, or
* one of the contact members is invalid.
* @exception E_STORAGE_FULL The storage is insufficient.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
*/
result UpdateCategory(const Category& category);
/**
* @if OSPCOMPAT
* @page CompAddressbookUpdateCategoryPage Compatibility for UpdateCategory()
* @section CompAddressbookUpdateCategoryPageIssueSection Issues
* Implementing this method in OSP compatible applications has the following issue: @n
* -# If there already exist a category which has the same name, E_OBJ_ALREADY_EXIST is returned.
*
* @section CompAddressbookAddCategoryPageSolutionSection Resolutions
* The issue mentioned above has been resolved in Tizen.
* @endif
*/
/**
* Gets all contacts in the addressbook. @n
* The contacts are ordered by display name.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return A list of all contacts in the addressbook, @n
* else an empty list if there is no contact, or @c null if an exception occurs (@ref Contact list)
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks
* - The specific error code can be accessed using the GetLastResult() method.
* - There is a high probability for an occurrence of an out-of-memory exception.
* If possible, check whether the exception is E_OUT_OF_MEMORY or not. @n
* For more information on how to handle the out-of-memory exception, refer
* <a href="../org.tizen.native.appprogramming/html/basics_tizen_programming/exception_check.htm">here</a>.
*/
Tizen::Base::Collection::IList* GetAllContactsN(void) const;
/**
* Gets the member contacts of the specified category. @n
* If the specified @c category is INVALID_RECORD_ID, this method returns the list of contacts that are not member of any category.
* The contacts are ordered by display name.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return A list of contacts that are members of the specified category, @n
* else an empty list if there is no contact, or @c null if an exception occurs (@ref Contact list)
* @param[in] categoryId The category ID
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified @c categoryId is less than INVALID_RECORD_ID.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks
* - The specific error code can be accessed using the GetLastResult() method.
* - There is a high probability for an occurrence of an out-of-memory exception.
* If possible, check whether the exception is E_OUT_OF_MEMORY or not. @n
* For more information on how to handle the out-of-memory exception, refer
* <a href="../org.tizen.native.appprogramming/html/basics_tizen_programming/exception_check.htm">here</a>.
*/
Tizen::Base::Collection::IList* GetContactsByCategoryN(RecordId categoryId) const;
/**
* Gets contacts in the specified range in the address book. @n
* The contacts are ordered by display name.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return A list of contacts in the specified range, @n
* else an empty list if there is no contact, or @c null if an exception occurs (@ref Contact list)
* @param[in] pageNo The page number of the result list @n
* It starts from @c 1.
* @param[in] countPerPage The maximum count of the result items on a page
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_OUT_OF_RANGE The specified @c pageNo or @c countPerPage is less than @c 1.
* @exception E_INVALID_ARG A specified input parameter is invalid.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks
* - The specific error code can be accessed using the GetLastResult() method.
* - There is a high probability for an occurrence of an out-of-memory exception.
* If possible, check whether the exception is E_OUT_OF_MEMORY or not. @n
* For more information on how to handle the out-of-memory exception, refer
* <a href="../org.tizen.native.appprogramming/html/basics_tizen_programming/exception_check.htm">here</a>.
*/
Tizen::Base::Collection::IList* GetContactsN(int pageNo, int countPerPage) const;
/**
* Gets contacts that are in the specified range of the specified category. @n
* The contacts are ordered by display name.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return A list of contacts in the specified range of the specified category, @n
* else an empty list if there is no contact, or @c null if an exception occurs (@ref Contact list)
* @param[in] category The category
* @param[in] pageNo The page number of the result list, which starts from @c 1
* @param[in] countPerPage The maximum count of the result items on a page
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_OUT_OF_RANGE The specified @c pageNo or @c countPerPage is less than @c 1.
* @exception E_INVALID_ARG The specified @c category is invalid, or
* one of the contact members is invalid.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks
* - The specific error code can be accessed using the GetLastResult() method.
* - There is a high probability for an occurrence of an out-of-memory exception.
* If possible, check whether the exception is E_OUT_OF_MEMORY or not. @n
* For more information on how to handle the out-of-memory exception, refer
* <a href="../org.tizen.native.appprogramming/html/basics_tizen_programming/exception_check.htm">here</a>.
*/
Tizen::Base::Collection::IList* GetContactsInN(const Category& category, int pageNo, int countPerPage) const;
/**
* Gets the contact with the specified contact ID.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return The matched contact, @n
* else @c null if no contact matches the specified contact ID
* @param[in] contactId The contact ID
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified @c contactId is invalid.
* @exception E_OBJ_NOT_FOUND The specified @c contactId is not found.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks The specific error code can be accessed using the GetLastResult() method.
*/
Contact* GetContactN(RecordId contactId) const;
/**
* Gets the number of contacts in the address book.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return The number of contacts in the address book, @n
* else @c -1 if an error occurs
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks The specific error code can be accessed using the GetLastResult() method.
*/
int GetContactCount(void) const;
/**
* Adds the specified contact to the specified category.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.write
*
* @return An error code
* @param [in] categoryId The category ID
* @param [in] contactId The contact ID
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified contact or category does not exist, or the specified contact and category are not in this addressbook.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks If the contact is already a member of the category, this method does nothing.
*/
result AddMemberToCategory(RecordId categoryId, RecordId contactId);
/**
* Removes the specified contact from the specified category.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.write
*
* @return An error code
* @param [in] categoryId The category ID
* @param [in] contactId The contact ID
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified contact or category does not exist, or the specified contact and category are not in this addressbook.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks If the contact is not a member of the category, this method does nothing.
*/
result RemoveMemberFromCategory(RecordId categoryId, RecordId contactId);
/**
* Gets all categories in the address book. @n
* The categories are ordered by name.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return A list of categories in the address book, @n
* else an empty list if there is no category, or @c null if an exception occurs (@ref Category list)
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks The specific error code can be accessed using the GetLastResult() method.
*/
Tizen::Base::Collection::IList* GetAllCategoriesN(void) const;
/**
* Gets all categories whose member is the specified contact. @n
* The categories are ordered by name.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return A list of categories that has the specified contact as a member, @n
* else an empty list if there is no category, or @c null if an exception occurs (@ref Category list)
* @param[in] contactId The contact ID
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified @c contactId is invalid.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks The specific error code can be accessed using the GetLastResult() method.
*/
Tizen::Base::Collection::IList* GetCategoriesByContactN(RecordId contactId) const;
/**
* Gets the number of categories in the address book.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return The number of categories in the address book, @n
* else @c -1 if an error occurs
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks The specific error code can be accessed using the GetLastResult() method.
*/
int GetCategoryCount(void) const;
/**
* Gets the category with the specified category ID.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return The matched category, @n
* else @c null if no category matches the specified category ID
* @param[in] categoryId The category ID
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified @c categoryId is invalid.
* @exception E_OBJ_NOT_FOUND The specified record is not found.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks The specific error code can be accessed using the GetLastResult() method.
*/
Category* GetCategoryN(RecordId categoryId) const;
/**
* Searches the contacts whose email address contains the specified @c email string. @n
* The search operation is performed with a case insensitive key (param: @c email). @n
* The contacts are ordered by display name.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return A list of all the matched contacts, @n
* else an empty list if there is no matched contact, or @c null if an exception occurs (@ref Contact list)
* @param[in] email The substring of the email to search
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified @c email is an empty string.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks
* - The specific error code can be accessed using the GetLastResult() method.
* - There is a high probability for an occurrence of an out-of-memory exception. @n If possible, check whether the exception is E_OUT_OF_MEMORY or not. @n
* For more information on how to handle the out-of-memory exception, refer
* <a href="../org.tizen.native.appprogramming/html/basics_tizen_programming/exception_check.htm">here</a>.
*/
Tizen::Base::Collection::IList* SearchContactsByEmailN(const Tizen::Base::String& email) const;
/**
* Searches the contacts that have the specified @c name as a substring of their display name. @n
* The search operation is performed with a case insensitive key (param: @c name). @n
* The contacts are ordered by display name.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return A list of all the matched contacts, @n
* else an empty list if there is no matched contact, or @c null if an exception occurs (@ref Contact list)
* @param[in] name The substring of the name to search
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified @c name is an empty string.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks
* - The specific error code can be accessed using the GetLastResult() method.
* - There is a high probability for an occurrence of an out-of-memory exception.@n If possible, check whether the exception is E_OUT_OF_MEMORY or not.@n
* For more information on how to handle the out-of-memory exception, refer
* <a href="../org.tizen.native.appprogramming/html/basics_tizen_programming/exception_check.htm">here</a>.
*/
Tizen::Base::Collection::IList* SearchContactsByNameN(const Tizen::Base::String& name) const;
/**
* Searches the contacts that have the specified @c phoneNumber string as a substring of one of their phone numbers. @n
* The %SearchContactsByPhoneNumberN() method returns the contacts whose phone number match the value of the specified @c phoneNumber. @n
* The search operation is performed with a case insensitive key (param: @c phoneNumber). @n
* The contacts are ordered by display name.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return A list of all the matched contacts, @n
* else an empty list if there is no contact, or @c null if an exception occurs (@ref Contact list)
* @param[in] phoneNumber The substring of the phone number to search
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified @c phoneNumber is an empty string.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks
* - The specific error code can be accessed using the GetLastResult() method.
* - There is a high probability for an occurrence of an out-of-memory exception. @n If possible, check whether the exception is E_OUT_OF_MEMORY or not. @n
* For more information on how to handle the out-of-memory exception, refer
* <a href="../org.tizen.native.appprogramming/html/basics_tizen_programming/exception_check.htm">here</a>.
*/
Tizen::Base::Collection::IList* SearchContactsByPhoneNumberN(const Tizen::Base::String& phoneNumber) const;
/**
* Gets the latest change version of the address book.
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return The latest change version, @c
* else @c -1 if an exception occurs
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks The specific error code can be accessed using the GetLastResult() method.
* @see GetChangedContactsAfterN()
* @see GetChangedCategoriesAfterN()
*/
int GetLatestVersion(void) const;
/**
* Gets the change information of the contacts that have been changed after the specified change version. @n
*
* @brief <i> [Deprecated] </i>
* @deprecated This method is deprecated. Instead of using this method, use GetChangedContactInfoListN().
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return A list of contact change information, @n
* else an empty list if there is no changed contact, or @c null if an exception occurs (@ref ContactChangeInfo list)
* @param[in] version The change version
* @param[out] latestVersion The latest change version among the changed contacts
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified @c version is invalid.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks The specific error code can be accessed using the GetLastResult() method.
* @see GetLatestVersion()
*
* The following example demonstrates how to use the %GetChangedContactsAfterN() method.
* @code
* void
* MyApplication::GetChangedContacts(void)
* {
* IList* pChangedContacts = __pAddressbook->GetChangedContactsAfterN(__version, __version);
*
* IEnumerator* pEnum = pChangedContacts->GetEnumeratorN();
* while (pEnum->MoveNext() == E_SUCCESS)
* {
* ContactChangeInfo* pInfo = (ContactChangeInfo*) pEnum->GetCurrent();
*
* AppLog("Contact changed: type(%d), id(%d), version(%d)", pInfo->GetChangeType(), pInfo->GetContctId(), pInfo->GetVersion());
* }
* delete pEnum;
* pChangedContacts->RemoveAll(true);
* delete pChangedContacts;
* }
* @endcode
*/
Tizen::Base::Collection::IList* GetChangedContactsAfterN(int version, int& latestVersion) const;
/**
* Gets the change information of the contacts that have been changed after the specified change version. @n
*
* @since 2.1
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return A list of contact change information, @n
* else an empty list if there is no changed contact or @c null if an exception occurs (@ref ContactChangeInfo list)
* @param[in] version The change version
* @param[out] latestVersion The latest change version among the changed contacts
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method.
* @exception E_INVALID_ARG The specified @c version is invalid.
* @exception E_SYSTEM The method cannot proceed due to a severe system error
* @remarks The specific error code can be accessed using the GetLastResult() method.
* @see GetLatestVersion()
*
* The following example demonstrates how to use the %GetChangedContactInfoListN() method.
* @code
* void
* MyApplication::GetChangedContacts(void)
* {
* IList* pChangedContacts = __pAddressbook->GetChangedContactInfoListN (__version, __version);
*
* IEnumerator* pEnum = pChangedContacts->GetEnumeratorN();
* while (pEnum->MoveNext() == E_SUCCESS)
* {
* ContactChangeInfo* pInfo = (ContactChangeInfo*) pEnum->GetCurrent();
*
* AppLog("Contact changed: type(%d), id(%d), version(%d)", pInfo->GetChangeType(), pInfo->GetContctId(), pInfo->GetVersion());
* }
* delete pEnum;
* pChangedContacts->RemoveAll(true);
* delete pChangedContacts;
* }
* @endcode
*/
Tizen::Base::Collection::IList* GetChangedContactInfoListN(int version, int& latestVersion) const;
/**
* Gets the change information of the categories that have been changed after the specified version.
*
* @brief <i> [Deprecated] </i>
* @deprecated This method is deprecated. Instead of using this method, use GetChangedCategoryInfoListN().
*
* @since 2.0
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return A list of category change information, @n
* else an empty list if there is no changed category, or @c null if an exception occurs (@ref CategoryChangeInfo list)
*
* @param[in] version The change version
* @param[out] latestVersion The latest change version among the changed categories
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1
* @exception E_INVALID_ARG The specified @c version is invalid.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks The specific error code can be accessed using the GetLastResult() method.
* @see GetLatestVersion()
*
* The following example demonstrates how to use the %GetChangedCategoriesAfterN() method.
* @code
* void
* MyApplication::GetChangedCategories(void)
* {
* IList* pChangedCategories = __pAddressbook->GetChangedCategoriesAfterN(__version, __version);
*
* IEnumerator* pEnum = pChangedCategories->GetEnumeratorN();
* while (pEnum->MoveNext() == E_SUCCESS)
* {
* CategoryChangeInfo* pInfo = (CategoryChangeInfo*) pEnum->GetCurrent();
*
* AppLog("Category changed: type(%d), id(%d), version(%d)", pInfo->GetChangeType(), pInfo->GetCategoryId(), pInfo->GetVersion());
* }
* delete pEnum;
* pChangedCategories->RemoveAll(true);
* delete pChangedCategories;
* }
* @endcode
*/
Tizen::Base::Collection::IList* GetChangedCategoriesAfterN(int version, int& latestVersion) const;
/**
* Gets the change information of the categories that have been changed after the specified version.
*
* @since 2.1
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.read
*
* @return A list of category change information, @n
* else an empty list if there is no changed category or @c null if an exception occurs (@ref CategoryChangeInfo list)
*
* @param[in] version The change version
* @param[out] latestVersion The latest change version among the changed categories
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method.
* @exception E_INVALID_ARG The specified @c version is invalid.
* @exception E_SYSTEM The method cannot proceed due to a severe system error
* @remarks The specific error code can be accessed using the GetLastResult() method.
* @see GetLatestVersion()
*
* The following example demonstrates how to use the %GetChangedCategoryInfoListN() method.
* @code
* void
* MyApplication::GetChangedCategories(void)
* {
* IList* pChangedCategories = __pAddressbook->GetChangedCategoryInfoN(__version, __version);
*
* IEnumerator* pEnum = pChangedCategories->GetEnumeratorN();
* while (pEnum->MoveNext() == E_SUCCESS)
* {
* CategoryChangeInfo* pInfo = (CategoryChangeInfo*) pEnum->GetCurrent();
*
* AppLog("Category changed: type(%d), id(%d), version(%d)", pInfo->GetChangeType(), pInfo->GetCategoryId(), pInfo->GetVersion());
* }
* delete pEnum;
* pChangedCategories->RemoveAll(true);
* delete pChangedCategories;
* }
* @endcode
*/
Tizen::Base::Collection::IList* GetChangedCategoryInfoListN(int version, int& latestVersion) const;
/**
* Sets a user profile of this addressbook. @n
* To remove the user profile, @c null must be passed.
*
* @since 2.1
* @privlevel public
* @privilege %http://tizen.org/privilege/userprofile.write
*
* @return An error code
* @param[in] pUserProfile The user profile to set
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
*/
result SetUserProfile(const UserProfile* pUserProfile);
/**
* Gets a user profile of this addressbook.
*
* @since 2.1
* @privlevel public
* @privilege %http://tizen.org/privilege/userprofile.read
*
* @return The user profile, @n
* else @c null if the user profile does not exist, or if an exception has occurred
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks The specific error code can be accessed using the GetLastResult() method.
*/
UserProfile* GetUserProfileN(void) const;
/**
* Checks whether the user profile of this address book has been changed after the specified version or not.
* If the user profile does not exist, this method returns false.
*
* @since 2.1
* @privlevel public
* @privilege %http://tizen.org/privilege/userprofile.read
*
* @return @c true if the user profile has been changed, @n
* else @c false
* @param[in] version The change version
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method.
* @exception E_INVALID_ARG The specified @c version is invalid.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks The specific error code can be accessed using the GetLastResult() method.
* @see SetUserProfile()
*/
bool IsUserProfileChangedAfter(int version) const;
/**
* Gets the addressbook name.
*
* @since 2.0
*
* @return The addressbook name
*/
Tizen::Base::String GetName(void) const;
/**
* Gets the addressbook ID.
*
* @since 2.0
*
* @return The addressbook ID
*/
AddressbookId GetId(void) const;
/**
* Gets the account ID associated with the addressbook.
*
* @since 2.0
*
* @return The account ID
*/
AccountId GetAccountId(void) const;
/**
* Adds the contacts to the addressbook.
*
* @since 2.1
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.write
*
* @return An error code
* @param[in] contactList The contacts to add @n The list should contain the Contact instances.
* @param[out] pContactIdList A pointer to the list of contact IDs that have been added successfully @n Pass @c null if the contact IDs are not necessary.
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method.
* @exception E_INVALID_ARG Either of the following conditions has occurred:
* - The specified @c contactList is empty.
* - The specified @c contactList contains an empty contact.
* - The specified @c contactList contains a contact whose ID is not INVALID_RECORD_ID.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks If an exception occurs during adding contacts, the changes are getting rollbacked. @n
* This method blocks the execution of the calling thread until all contacts in the list has been added to the addressbook or if an exception occurs.
* It is recommended to call this method on any thread other than the main thread.
*/
result AddContacts(const Tizen::Base::Collection::IList& contactList, Tizen::Base::Collection::IListT<RecordId>* pContactIdList = null);
/**
* Updates the contacts.
*
* @since 2.1
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.write
*
* @return An error code
* @param[in] contactList The contacts to update @n The list should contain the Contact instances.
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method.
* @exception E_INVALID_ARG Either of the following conditions has occurred:
* - The specified @c contactList is empty.
* - The specified @c contactList contains an empty contact.
* - The specified @c contactList contains a contact whose ID is invalid.
* @exception E_OBJ_NOT_FOUND The specified @c contact does not exist.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks If an exception occurs during updating contacts, the changes are getting rollbacked. @n
* This method blocks the execution of the calling thread until all contacts in the list has been updated or if an exception occurs. @n
* It is recommended to call this method on any thread other than the main thread.
*/
result UpdateContacts(const Tizen::Base::Collection::IList& contactList);
/**
* Removes the contacts. @n If the contact specified by a contact ID in the list does not exist, the contact ID is ignored.
*
* @since 2.1
* @privlevel public
* @privilege %http://tizen.org/privilege/contact.write
*
* @return An error code
* @param[in] contactIdList The list of contact IDs to delete
* @exception E_SUCCESS The method is successful.
* @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method.
* @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method.
* @exception E_INVALID_ARG The specified @c contactIdList is empty or contains an invalid ID.
* @exception E_SYSTEM The method cannot proceed due to a severe system error.
* @remarks If an exception occurs during removing contacts, the changes are getting rollbacked. @n
* This method blocks the execution of the calling thread until all contacts in the list has been removed or if an exception occurs. @n
* It is recommended to call this method on any thread other than the main thread.
*/
result RemoveContacts(const Tizen::Base::Collection::IListT<RecordId>& contactIdList);
private:
/**
* The implementation of this copy constructor is intentionally blank and declared as private to prohibit copying of objects.
*
* @since 2.0
*/
Addressbook(const Addressbook& rhs);
/**
* The implementation of this copy assignment operator is intentionally blank and declared as private to prohibit copying of objects.
*
* @since 2.0
*/
Addressbook& operator =(const Addressbook& rhs);
private:
friend class _AddressbookImpl;
class _AddressbookImpl* __pAddressbookImpl;
}; // Addressbook
}} // Tizen::Social
#endif //_FSCL_ADDRESSBOOK_H_
|