author | Da Risk <darisk972@gmail.com> |
Tue, 22 Dec 2009 17:28:31 +0100 | |
changeset 599 | cdadf4e39f99 |
parent 520 | 88a19fcd70b3 |
permissions | -rw-r--r-- |
599 | 1 |
/* |
2 |
BEEM is a videoconference application on the Android Platform. |
|
3 |
||
4 |
Copyright (C) 2009 by Frederic-Charles Barthelery, |
|
5 |
Jean-Manuel Da Silva, |
|
6 |
Nikita Kozlov, |
|
7 |
Philippe Lago, |
|
8 |
Jean Baptiste Vergely, |
|
9 |
Vincent Veronis. |
|
10 |
||
11 |
This file is part of BEEM. |
|
12 |
||
13 |
BEEM is free software: you can redistribute it and/or modify |
|
14 |
it under the terms of the GNU General Public License as published by |
|
15 |
the Free Software Foundation, either version 3 of the License, or |
|
16 |
(at your option) any later version. |
|
17 |
||
18 |
BEEM is distributed in the hope that it will be useful, |
|
19 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
20 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
21 |
GNU General Public License for more details. |
|
22 |
||
23 |
You should have received a copy of the GNU General Public License |
|
24 |
along with BEEM. If not, see <http://www.gnu.org/licenses/>. |
|
25 |
||
26 |
Please send bug reports with examples or suggestions to |
|
27 |
contact@beem-project.com or http://dev.beem-project.com/ |
|
28 |
||
29 |
Epitech, hereby disclaims all copyright interest in the program "Beem" |
|
30 |
written by Frederic-Charles Barthelery, |
|
31 |
Jean-Manuel Da Silva, |
|
32 |
Nikita Kozlov, |
|
33 |
Philippe Lago, |
|
34 |
Jean Baptiste Vergely, |
|
35 |
Vincent Veronis. |
|
36 |
||
37 |
Nicolas Sadirac, November 26, 2009 |
|
38 |
President of Epitech. |
|
39 |
||
40 |
Flavien Astraud, November 26, 2009 |
|
41 |
Head of the EIP Laboratory. |
|
42 |
||
43 |
*/ |
|
272 | 44 |
package com.beem.project.beem.service.aidl; |
45 |
||
515
5e4b8b7908f6
Creation de l'interface à distance pour la classe PrivacyListManager.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
272
diff
changeset
|
46 |
import com.beem.project.beem.service.PrivacyListItem; |
518
6b8089c9b834
Creation de l'activite PrivacyList et d'une interface PrivacyListListener ainsi que son implementation.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
516
diff
changeset
|
47 |
import com.beem.project.beem.service.aidl.IPrivacyListListener; |
272 | 48 |
|
49 |
interface IPrivacyListManager { |
|
515
5e4b8b7908f6
Creation de l'interface à distance pour la classe PrivacyListManager.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
272
diff
changeset
|
50 |
void createPrivacyList(in String listName, in List<PrivacyListItem> items); |
5e4b8b7908f6
Creation de l'interface à distance pour la classe PrivacyListManager.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
272
diff
changeset
|
51 |
void removePrivacyList(in String listName); |
5e4b8b7908f6
Creation de l'interface à distance pour la classe PrivacyListManager.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
272
diff
changeset
|
52 |
void editPrivacyList(in String listName, in List<PrivacyListItem> items); |
5e4b8b7908f6
Creation de l'interface à distance pour la classe PrivacyListManager.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
272
diff
changeset
|
53 |
String getActivePrivacyList(); |
5e4b8b7908f6
Creation de l'interface à distance pour la classe PrivacyListManager.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
272
diff
changeset
|
54 |
String getDefaultPrivacyList(); |
5e4b8b7908f6
Creation de l'interface à distance pour la classe PrivacyListManager.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
272
diff
changeset
|
55 |
void setActivePrivacyList(in String listName); |
5e4b8b7908f6
Creation de l'interface à distance pour la classe PrivacyListManager.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
272
diff
changeset
|
56 |
void setDefaultPrivacyList(in String listName); |
5e4b8b7908f6
Creation de l'interface à distance pour la classe PrivacyListManager.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
272
diff
changeset
|
57 |
void declineActivePrivacyList(); |
5e4b8b7908f6
Creation de l'interface à distance pour la classe PrivacyListManager.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
272
diff
changeset
|
58 |
void declineDefaultPrivacyList(); |
520
88a19fcd70b3
Ajout de la possibilite de creer une PrivacyList et de la liste de PrivacyLists. Debug requis.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
518
diff
changeset
|
59 |
List<String> getPrivacyLists(); |
515
5e4b8b7908f6
Creation de l'interface à distance pour la classe PrivacyListManager.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
272
diff
changeset
|
60 |
void blockUser(in String listName, in String jid); |
516
da650185bf8b
PrivacyListManagerAdapter implementation.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
515
diff
changeset
|
61 |
List<String> getBlockedUsersByList(in String listName); |
da650185bf8b
PrivacyListManagerAdapter implementation.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
515
diff
changeset
|
62 |
List<String> getBlockedGroupsByList(in String listName); |
518
6b8089c9b834
Creation de l'activite PrivacyList et d'une interface PrivacyListListener ainsi que son implementation.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
516
diff
changeset
|
63 |
void addPrivacyListListener(in IPrivacyListListener listener); |
6b8089c9b834
Creation de l'activite PrivacyList et d'une interface PrivacyListListener ainsi que son implementation.
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents:
516
diff
changeset
|
64 |
void removePrivacyListListener(in IPrivacyListListener listener); |
599 | 65 |
} |
66 |