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
|
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE node SYSTEM "dbus.dtd">
<!--
Author: Ross Burton <ross@linux.intel.com>
Copyright (C) 2005 Opened Hand Ltd
Copyright (C) 2009 Intel Corporation
-->
<node>
<interface name="org.gnome.evolution.dataserver.addressbook.Book">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="EDataBook"/>
<signal name="writable">
<arg name="value" type="b"/>
</signal>
<signal name="connection">
<arg name="connected" type="b"/>
</signal>
<signal name="auth_required"/>
<method name="open">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_open"/>
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
<arg name="only_if_exists" type="b" direction="in"/>
</method>
<method name="remove">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_remove"/>
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
</method>
<method name="getContact">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_getContact"/>
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
<arg name="uid" type="s" direction="in"/>
<arg name="vcard" type="s" direction="out"/>
</method>
<method name="getContactList">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_getContactList"/>
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
<arg name="query" type="s" direction="in"/>
<arg name="vcards" type="as" direction="out"/>
</method>
<method name="authenticateUser">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_authenticateUser"/>
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
<arg name="user" type="s" direction="in"/>
<arg name="passwd" type="s" direction="in"/>
<arg name="auth_method" type="s" direction="in"/>
</method>
<method name="addContact">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_addContact"/>
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
<arg name="vcard" type="s" direction="in"/>
<arg name="uid" type="s" direction="out"/>
</method>
<method name="removeContacts">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_removeContacts"/>
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
<arg name="list" type="as" direction="in"/>
</method>
<method name="modifyContact">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_modifyContact"/>
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
<arg name="vcard" type="s" direction="in"/>
</method>
<method name="getStaticCapabilities">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_getStaticCapabilities"/>
<arg name="capabilities" type="s" direction="out"/>
</method>
<method name="getRequiredFields">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_getRequiredFields"/>
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
<arg name="fields" type="as" direction="out"/>
</method>
<method name="getSupportedFields">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_getSupportedFields"/>
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
<arg name="fields" type="as" direction="out"/>
</method>
<method name="getSupportedAuthMethods">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_getSupportedAuthMethods"/>
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
<arg name="auth_methods" type="as" direction="out"/>
</method>
<method name="getBookView">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_getBookView"/>
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
<arg name="query" type="s" direction="in"/>
<!-- <arg name="fields" type="as" direction="in"/> -->
<arg name="max_results" type="u" direction="in"/>
<arg name="view" type="o" direction="out"/>
</method>
<method name="getChanges">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_getChanges"/>
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
<arg name="change_id" type="s" direction="in"/>
<arg name="changes" type="a(us)" direction="out"/>
</method>
<method name="cancelOperation">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_cancelOperation"/>
</method>
<method name="close">
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_AddressBook_Book_close"/>
<annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
</method>
</interface>
</node>
|