blob: 2e2ac39010fc25e395994f369c1e6f48a59970d5 (
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
|
package com.juick.service;
import java.util.Collection;
import java.util.List;
/**
* Created by aalexeev on 11/13/16.
*/
public interface PushQueriesService {
List<String> getAndroidRegID(int uid);
List<String> getAndroidTokens(Collection<Integer> uids);
List<String> getWinPhoneURL(int uid);
List<String> getWindowsTokens(Collection<Integer> uids);
List<String> getAPNSToken(int uid);
List<String> getAPNSTokens(Collection<Integer> uids);
boolean deleteAPNSToken(String token);
}
|