author | Da Risk <darisk972@gmail.com> |
Thu, 19 Mar 2009 22:23:18 +0100 | |
changeset 30 | 7057a9d3657a |
parent 29 | a49d1556772c |
child 31 | 85faac00d92c |
permissions | -rw-r--r-- |
29
a49d1556772c
Starting work on the Service interface.
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
1 |
package com.beem.project.beem.service.aidl; |
a49d1556772c
Starting work on the Service interface.
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
2 |
|
30
7057a9d3657a
Add some adapter for smack classes
Da Risk <darisk972@gmail.com>
parents:
29
diff
changeset
|
3 |
import com.beem.project.beem.service.aidl.IRoster; |
7057a9d3657a
Add some adapter for smack classes
Da Risk <darisk972@gmail.com>
parents:
29
diff
changeset
|
4 |
|
29
a49d1556772c
Starting work on the Service interface.
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
5 |
interface IXMPPConnection { |
a49d1556772c
Starting work on the Service interface.
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
6 |
|
a49d1556772c
Starting work on the Service interface.
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
7 |
boolean connect(); |
a49d1556772c
Starting work on the Service interface.
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
8 |
|
a49d1556772c
Starting work on the Service interface.
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
9 |
boolean disconnect(); |
a49d1556772c
Starting work on the Service interface.
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
10 |
|
a49d1556772c
Starting work on the Service interface.
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
11 |
boolean login(in String username, in String password, in String resource); |
a49d1556772c
Starting work on the Service interface.
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
12 |
// void login(String username, String password, String resource); |
30
7057a9d3657a
Add some adapter for smack classes
Da Risk <darisk972@gmail.com>
parents:
29
diff
changeset
|
13 |
|
7057a9d3657a
Add some adapter for smack classes
Da Risk <darisk972@gmail.com>
parents:
29
diff
changeset
|
14 |
IRoster getRoster(); |
7057a9d3657a
Add some adapter for smack classes
Da Risk <darisk972@gmail.com>
parents:
29
diff
changeset
|
15 |
|
29
a49d1556772c
Starting work on the Service interface.
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
16 |
} |