blob: df332870996330bfc0537296da7fa0c98c314720 (
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 uid_from, 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 uid_from, int uid_to);
List<User> getPMLastConversationsUsers(int uid, int cnt);
List<com.juick.Message> getPMMessages(int uid, int uid_to);
List<com.juick.Message> getLastPMInbox(int uid);
List<com.juick.Message> getLastPMSent(int uid);
}
|