aboutsummaryrefslogtreecommitdiff
path: root/juick-server-core/src/main/java/com/juick/service/PMQueriesService.java
blob: e20bb3a59e6b6cc08c93c379f51af669561ac0c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.juick.service;

import com.juick.User;

import java.util.List;

/**
 * Created by aalexeev on 11/13/16.
 */
public interface PMQueriesService {
    boolean createPM(int uidFrom, int uid_to, String body);

    boolean addPMinRoster(int uid, String jid);

    boolean removePMinRoster(int uid, String jid);

    boolean havePMinRoster(int uid, String jid);

    String getLastView(int uidFrom, int uidTo);

    List<User> getPMLastConversationsUsers(int uid, int cnt);

    List<com.juick.Message> getPMMessages(int uid, int uidTo);

    List<com.juick.Message> getLastPMInbox(int uid);

    List<com.juick.Message> getLastPMSent(int uid);
}