diff options
Diffstat (limited to 'addressbook/backend/idl')
-rw-r--r-- | addressbook/backend/idl/addressbook.idl | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/addressbook/backend/idl/addressbook.idl b/addressbook/backend/idl/addressbook.idl index 7562b148a2..342482d573 100644 --- a/addressbook/backend/idl/addressbook.idl +++ b/addressbook/backend/idl/addressbook.idl @@ -45,19 +45,7 @@ module Addressbook { /* * Fetching cards in the addresbook. */ - VCard getVCard (in CardId id); - - /* - * Permissions. the first form is general write - * permission (whether or not the user can add or - * remove or modify any entry in the addressbook.) - * - * if can_write returns TRUE, can_write_card can still - * return FALSE if the user doesn't have permission to - * modify/remove that specific card. - */ - boolean isWriteable (); - boolean isCardWriteable (in CardId Id); + void getVCard (in CardId id); void authenticateUser (in string user, in string passwd); @@ -123,6 +111,8 @@ module Addressbook { void notifyBookOpened (in CallStatus status, in Book book); + void notifyCardRequested (in CallStatus status, in VCard card); + void notifyCursorRequested (in CallStatus status, in CardCursor cursor); void notifyViewRequested (in CallStatus status, in BookView view); @@ -168,4 +158,3 @@ module Addressbook { }; }; }; - |