src/com/beem/project/beem/service/aidl/IXmppConnection.aidl
author Da Risk <darisk972@gmail.com>
Tue, 22 Dec 2009 17:28:31 +0100
changeset 599 cdadf4e39f99
parent 545 0de3d7f3fa81
child 625 fd6d31c4460e
permissions -rw-r--r--
Checkstyle

/*
    BEEM is a videoconference application on the Android Platform.

    Copyright (C) 2009 by Frederic-Charles Barthelery,
                          Jean-Manuel Da Silva,
                          Nikita Kozlov,
                          Philippe Lago,
                          Jean Baptiste Vergely,
                          Vincent Veronis.

    This file is part of BEEM.

    BEEM is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    BEEM is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with BEEM.  If not, see <http://www.gnu.org/licenses/>.

    Please send bug reports with examples or suggestions to
    contact@beem-project.com or http://dev.beem-project.com/

    Epitech, hereby disclaims all copyright interest in the program "Beem"
    written by Frederic-Charles Barthelery,
               Jean-Manuel Da Silva,
               Nikita Kozlov,
               Philippe Lago,
               Jean Baptiste Vergely,
               Vincent Veronis.

    Nicolas Sadirac, November 26, 2009
    President of Epitech.

    Flavien Astraud, November 26, 2009
    Head of the EIP Laboratory.

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

import  com.beem.project.beem.service.aidl.IRoster;
import  com.beem.project.beem.service.aidl.IBeemConnectionListener;
import  com.beem.project.beem.service.aidl.IChatManager;
import  com.beem.project.beem.service.aidl.IPrivacyListManager;

interface IXmppConnection {

    boolean connectSync();

    void connectAsync();

    boolean disconnect();

    IRoster getRoster();

    void addConnectionListener(in IBeemConnectionListener listen);
    void removeConnectionListener(in IBeemConnectionListener listen);

    boolean isAuthentificated();

    IChatManager getChatManager();

    void changeStatusAndPriority(in int status, in String msg, in int priority);

    void changeStatus(in int status, in String msg);

    IPrivacyListManager getPrivacyListManager();

    String getErrorMessage();
}