Add IMable interface
authorPhilip Withnall <philip.withnall@collabora.co.uk>
Fri, 16 Jul 2010 12:40:39 +0000 (13:40 +0100)
committerTravis Reitter <travis.reitter@collabora.co.uk>
Tue, 3 Aug 2010 13:49:30 +0000 (09:49 -0400)
folks/Makefile.am
folks/imable.vala [new file with mode: 0644]

index 1340473..d0cd276 100644 (file)
@@ -18,6 +18,7 @@ folks_valasources = \
        backend-store.vala \
        favourite.vala \
        groups.vala \
+       imable.vala \
        individual.vala \
        individual-aggregator.vala \
        persona.vala \
diff --git a/folks/imable.vala b/folks/imable.vala
new file mode 100644 (file)
index 0000000..db2b28f
--- /dev/null
@@ -0,0 +1,42 @@
+/*
+ * Copyright (C) 2010 Collabora Ltd.
+ *
+ * This library is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 2.1 of the License, or
+ * (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this library.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Authors:
+ *       Philip Withnall <philip.withnall@collabora.co.uk>
+ */
+
+using GLib;
+
+/**
+ * IM addresses exposed by an object implementing {@link Presence}.
+ */
+public interface Folks.IMable : Object
+{
+  /* FIXME: We have to use GenericArray<string> here rather than string[] as
+   * null-terminated arrays aren't supported as generic types yet. */
+  /**
+   * A mapping of IM protocol to an ordered list of IM addresses.
+   *
+   * Each mapping is from an arbitrary protocol identifier to a list of IM
+   * addresses on that protocol for the contact, listed in preference order.
+   * The most-preferred IM address for each protocol comes first in that
+   * protocol's list.
+   */
+  public abstract HashTable<string, GenericArray<string>> im_addresses
+    {
+      get; set;
+    }
+}