src/com/beem/project/beem/service/aidl/IXmppConnection.aidl
changeset 524 e1a9ba4611dc
parent 59 ff98ffba21f4
child 526 62a448d5dfe9
--- a/src/com/beem/project/beem/service/aidl/IXmppConnection.aidl	Sat Nov 14 00:45:45 2009 +0100
+++ b/src/com/beem/project/beem/service/aidl/IXmppConnection.aidl	Sun Nov 15 00:11:06 2009 +0100
@@ -5,19 +5,23 @@
 import  com.beem.project.beem.service.aidl.IChatManager;
 
 interface IXmppConnection {
-    
+
     boolean connectSync();
-    
+
     void connectAsync();
-    
+
     boolean disconnect();
-    
+
     IRoster getRoster();
 
     void addConnectionListener(in IBeemConnectionListener listen);
     void removeConnectionListener(in IBeemConnectionListener listen);
-    
+
     boolean isAuthentificated();
-    
+
     IChatManager getChatManager();
-}
\ No newline at end of file
+
+    void changeStatusAndPriority(in int status, in String msg, in int priority);
+
+    void changeStatus(in int status, in String msg);
+}