1package eu.siacs.conversations.services;
2
3import eu.siacs.conversations.entities.Account;
4
5public class PushManagementService {
6
7 protected final XmppConnectionService mXmppConnectionService;
8
9 public PushManagementService(XmppConnectionService service) {
10 this.mXmppConnectionService = service;
11 }
12
13 public void registerPushTokenOnServer(Account account) {
14 //stub implementation. only affects playstore flavor
15 }
16
17 public boolean available(Account account) {
18 return false;
19 }
20
21 public boolean isStub() {
22 return true;
23 }
24}