src/com/beem/project/beem/service/aidl/IXmppFacade.aidl
author nikita@mapiproxy
Tue, 25 Aug 2009 02:49:40 +0200
changeset 353 91bf7d256964
parent 269 d78115a6b45b
child 369 952c6eeb6493
permissions -rw-r--r--
merge avec mon debut de rtp

package com.beem.project.beem.service.aidl;

import  com.beem.project.beem.service.aidl.IXmppConnection;
import  com.beem.project.beem.service.aidl.IRoster;
import  com.beem.project.beem.service.aidl.IChatManager;
import com.beem.project.beem.service.PresenceAdapter;

interface IXmppFacade {

    /**
     * Get the XmppConnection of the facade.
     */
    IXmppConnection createConnection();
    
    /**
     * Get the roster of the user
     */ 
    IRoster getRoster();
    
    /**
     * Connect and login synchronously on the server.
     */
    void connectSync();
    
    /**
     * Connect and login asynchronously on the server.
     */
    void connectAsync();
    
    /**
     * Disconnect from the server
     */
    void disconnect();

    /**
     * Get the chat manager.
     */
    IChatManager getChatManager();
    
    /**
     * Change the status of the user.
     * @param status the status to set
     * @param msg the message state to set
     */
    void changeStatus(in int status, in String msg);
    
    void sendPresencePacket(in PresenceAdapter presence);
    
    void blockUser(in String jid);
    
    /**
     * make a jingle audio call
     * @param jid the receiver id
     */
     
     void call(in String jid);
}