# HG changeset patch # User souliane # Date 1395389391 -3600 # Node ID 1597fb8b91081db05313cf91378e64ed0afa6551 # Parent a9401694d2dccca07e4a40d8fb51af5bf161b66c bridge: remove unecessary signals/methods declarations diff -r a9401694d2dc -r 1597fb8b9108 src/bridge/bridge.py --- a/src/bridge/bridge.py Thu Mar 20 21:18:18 2014 +0100 +++ b/src/bridge/bridge.py Fri Mar 21 09:09:51 2014 +0100 @@ -23,44 +23,3 @@ class Bridge(object): def __init__(self): info("Bridge initialization") - - ##signals - def newContact(self, contact): - raise NotImplementedError - - def newMessage(self, from_jid, msg, type='chat'): - raise NotImplementedError - - def presenceUpdate(self, type, jid, show, status, priority): - raise NotImplementedError - - def paramUpdate(self, name, value): - raise NotImplementedError - - ##methods - def connect(self): - raise NotImplementedError - - def getContacts(self): - raise NotImplementedError - - def getPresenceStatus(self): - raise NotImplementedError - - def sendMessage(self): - raise NotImplementedError - - def setPresence(self, to="", type="", show="", status="", priority=0): - raise NotImplementedError - - def setParam(self, name, value, namespace): - raise NotImplementedError - - def getParam(self, name, namespace): - raise NotImplementedError - - def getParams(self, security_limit, app, namespace): - raise NotImplementedError - - def getHistory(self, from_jid, to_jid, size): - raise NotImplementedError