--- 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);
+}