Fixing a bug with deny lists
[theonering] / src / tp / handle.py
1 # telepathy-python - Base classes defining the interfaces of the Telepathy framework
2 #
3 # Copyright (C) 2005,2006 Collabora Limited
4 # Copyright (C) 2005,2006 Nokia Corporation
5 #
6 # This library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2.1 of the License, or (at your option) any later version.
10 #
11 # This library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # Lesser General Public License for more details.
15 #
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with this library; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
20 class Handle(object):
21     def __init__(self, id, handle_type, name):
22         self._id = id
23         self._type = handle_type
24         self._name = name
25
26     def get_id(self):
27         return self._id
28
29     def __int__(self):
30         return int(self._id)
31
32     def __long__(self):
33         return long(self._id)
34
35     def get_type(self):
36         return self._type
37
38     def get_name(self):
39         return self._name
40
41     def __eq__(self, other):
42         return (int(self) == int(other) and self.get_type() == other.get_type())
43
44     def __ne__(self, other):
45         return not self.__eq__(other)