comparison frontends/sat_bridge_frontend/DBus.py @ 136:d6c0fe7489af

frontend DBus bridge: added profile management for launchAction method
author Goffi <goffi@goffi.org>
date Fri, 16 Jul 2010 20:17:01 +0800
parents ded2431cea5a
children 8a2053de6f8c
comparison
equal deleted inserted replaced
135:7452ac3818e7 136:d6c0fe7489af
107 return self.db_comm_iface.addContact(jid, profile_key) 107 return self.db_comm_iface.addContact(jid, profile_key)
108 108
109 def delContact(self, jid, profile_key='@DEFAULT@'): 109 def delContact(self, jid, profile_key='@DEFAULT@'):
110 return self.db_comm_iface.delContact(jid, profile_key) 110 return self.db_comm_iface.delContact(jid, profile_key)
111 111
112 def launchAction(self, type, data): 112 def launchAction(self, type, data, profile_key='@DEFAULT@'):
113 return self.db_req_iface.launchAction(type, data) 113 return self.db_req_iface.launchAction(type, data, profile_key)
114 114
115 def confirmationAnswer(self, id, accepted, data): 115 def confirmationAnswer(self, id, accepted, data):
116 return self.db_req_iface.confirmationAnswer(id, accepted, data) 116 return self.db_req_iface.confirmationAnswer(id, accepted, data)
117 117
118 def getProgress(self, id): 118 def getProgress(self, id):