diff options
author | nobody <nobody@localhost> | 1999-11-01 02:48:15 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1999-11-01 02:48:15 +0800 |
commit | c48faceb78e6c8a8b7f536b8475e039858f703ed (patch) | |
tree | 8cefe43740f603fea65ecbf6d8d3bf8b0d407572 /calendar/GnomeCal.idl | |
parent | c8d14b53ef41de80458405ffadb0721458b7add9 (diff) | |
download | gsoc2013-evolution-BUG_BUDDY_0_2.tar gsoc2013-evolution-BUG_BUDDY_0_2.tar.gz gsoc2013-evolution-BUG_BUDDY_0_2.tar.bz2 gsoc2013-evolution-BUG_BUDDY_0_2.tar.lz gsoc2013-evolution-BUG_BUDDY_0_2.tar.xz gsoc2013-evolution-BUG_BUDDY_0_2.tar.zst gsoc2013-evolution-BUG_BUDDY_0_2.zip |
This commit was manufactured by cvs2svn to create tagBUG_BUDDY_0_2
'BUG_BUDDY_0_2'.
svn path=/tags/BUG_BUDDY_0_2/; revision=1359
Diffstat (limited to 'calendar/GnomeCal.idl')
-rw-r--r-- | calendar/GnomeCal.idl | 109 |
1 files changed, 0 insertions, 109 deletions
diff --git a/calendar/GnomeCal.idl b/calendar/GnomeCal.idl deleted file mode 100644 index 5c5d400d9e..0000000000 --- a/calendar/GnomeCal.idl +++ /dev/null @@ -1,109 +0,0 @@ -module GNOME { - - module Calendar { - - interface Repository { - - exception NotFound {}; - typedef sequence<string> String_Sequence; - - /* - * get_object: - * @uid: Unique Identifier for the object - * - * Returns a vCalendar object for the object - * that matches the UID @uid. - */ - string get_object (in string uid) - raises (NotFound); - - /* - * get_objects_by_id_list: - * @uid_list: a sequence of Unique Identifiers - * - * Returns a vCalendar object for the objects - * that matches the given UID list @uid_list; - * NotFound is raised if any of the given UIDs - * were not found. - */ - string get_objects_by_id_list (in String_Sequence uid) - raises (NotFound); - - /* - * get_object_by_pilot_id: - * @pilot_id: the pilot id - * - * Returns the object that has the @pilot_id - * identifier. - */ - string get_object_by_pilot_id (in long pilot_id) - raises (NotFound); - - /* - * get_id_from_pilot_id: - * @pilot_id: the pilot id - * - * Returns the object id that matches the @pilot_id - * identifier. - */ - string get_id_from_pilot_id (in long pilot_id) - raises (NotFound); - - /* - * delete_object: - * @uid: Unique Identifier for the object - */ - void delete_object (in string uid) - raises (NotFound); - - /* - * update_object: - * @uid: uid of object to update - * @object: vcard object to update - */ - void update_object (in string uid, in string object); - - /* - * update_pilot_id: - * @uid: Unique identifier for the event we want to update - * @pilot_id: new ID assigned by the pilot - * @pilot_status: Status to flag the event with - */ - void update_pilot_id (in string uid, in long pilot_id, in long pilot_status) - raises (NotFound); - - /* - * get_objects: - * - * Danger Will Robinson : This can result in a - * huge string, namely the size of all your entries. - * Returns a vCalendar with all the objects - */ - string get_objects (); - - /* - * get_object_id_list - * - * Returns a sequence of the UID's of the entries - */ - String_Sequence get_object_id_list(); - - /* - * get_updated_objects: - * - * Returns a vCalendar with all the objects that have been - * modified since the last Pilot Sync - */ - string get_updated_objects (); - - /* - * done: - * - * Informs the calendar that we are done using it, - * gets a chance to destroy windows and save information. - */ - void done (); - }; - }; -}; - |