Mercurial > libervia-backend
changeset 918:1597fb8b9108
bridge: remove unecessary signals/methods declarations
author | souliane <souliane@mailoo.org> |
---|---|
date | Fri, 21 Mar 2014 09:09:51 +0100 |
parents | a9401694d2dc |
children | ed9841e6d84a |
files | src/bridge/bridge.py |
diffstat | 1 files changed, 0 insertions(+), 41 deletions(-) [+] |
line wrap: on
line diff
--- 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