comparison src/bridge/bridge.py @ 587:952322b1d490

Remove trailing whitespaces.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Fri, 18 Jan 2013 17:55:34 +0100
parents ca13633d3b6b
children 1f160467f5de
comparison
equal deleted inserted replaced
586:6a718ede8be1 587:952322b1d490
24 class Bridge(object): 24 class Bridge(object):
25 def __init__(self): 25 def __init__(self):
26 info ("Bridge initialization") 26 info ("Bridge initialization")
27 27
28 ##signals 28 ##signals
29 def newContact(self, contact): 29 def newContact(self, contact):
30 raise NotImplementedError 30 raise NotImplementedError
31 31
32 def newMessage(self, from_jid, msg, type='chat'): 32 def newMessage(self, from_jid, msg, type='chat'):
33 raise NotImplementedError 33 raise NotImplementedError
34 34
43 def connect(self): 43 def connect(self):
44 raise NotImplementedError 44 raise NotImplementedError
45 45
46 def getContacts(self): 46 def getContacts(self):
47 raise NotImplementedError 47 raise NotImplementedError
48 48
49 def getPresenceStatus(self): 49 def getPresenceStatus(self):
50 raise NotImplementedError 50 raise NotImplementedError
51 51
52 def sendMessage(self): 52 def sendMessage(self):
53 raise NotImplementedError 53 raise NotImplementedError
55 def setPresence(self, to="", type="", show="", status="", priority=0): 55 def setPresence(self, to="", type="", show="", status="", priority=0):
56 raise NotImplementedError 56 raise NotImplementedError
57 57
58 def setParam(self, name, value, namespace): 58 def setParam(self, name, value, namespace):
59 raise NotImplementedError 59 raise NotImplementedError
60 60
61 def getParam(self, name, namespace): 61 def getParam(self, name, namespace):
62 raise NotImplementedError 62 raise NotImplementedError
63 63
64 def getParams(self, namespace): 64 def getParams(self, namespace):
65 raise NotImplementedError 65 raise NotImplementedError
66 66
67 def getHistory(self, from_jid, to_jid, size): 67 def getHistory(self, from_jid, to_jid, size):
68 raise NotImplementedError 68 raise NotImplementedError