summaryrefslogtreecommitdiff
path: root/src/contact.py
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-09-16 17:57:27 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-09-16 17:57:27 +0000
commitf638427afc92dda86452e563524d5528fee2b344 (patch)
tree2d08e292a19d808b47ad25ded3b2dd8abd80c0d5 /src/contact.py
parent0d6c7276b19fff2cdfb7b2f252fefa1b338f63af (diff)
downloadpoezio-f638427afc92dda86452e563524d5528fee2b344.tar.gz
poezio-f638427afc92dda86452e563524d5528fee2b344.tar.bz2
poezio-f638427afc92dda86452e563524d5528fee2b344.tar.xz
poezio-f638427afc92dda86452e563524d5528fee2b344.zip
LALALALALALALALALA
Diffstat (limited to 'src/contact.py')
-rw-r--r--src/contact.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/contact.py b/src/contact.py
new file mode 100644
index 00000000..c3b07fc2
--- /dev/null
+++ b/src/contact.py
@@ -0,0 +1,29 @@
+# Copyright 2010 Le Coz Florent <louizatakk@fedoraproject.org>
+#
+# This file is part of Poezio.
+#
+# Poezio is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, version 3 of the License.
+#
+# Poezio 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 General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Poezio. If not, see <http://www.gnu.org/licenses/>.
+
+from sleekxmpp.xmlstream.jid import JID
+
+class Contact(object):
+ """
+ Defines a roster item
+ """
+ def __init__(self, jid):
+ self._jid = JID(jid) # a SleekXMPP jid object
+ self._display_name = None
+ self.groups = [] # a list of groups the contact is in
+
+ def getJid(self):
+ return self._jid