aboutsummaryrefslogtreecommitdiffstats
path: root/src/standard/java/de/pixart/messenger/services/PushManagementService.java
blob: 49d2589baffb4ea70a9e127e9f0bcf67640e7f45 (plain)
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
29
30
31
32
33
34
35
36
package de.pixart.messenger.services;

import de.pixart.messenger.entities.Account;

public class PushManagementService {

    protected final XmppConnectionService mXmppConnectionService;

    public PushManagementService(XmppConnectionService service) {
        this.mXmppConnectionService = service;
    }

    void registerPushTokenOnServer(Account account) {
        //stub implementation. only affects playstore flavor
    }

    void registerPushTokenOnServer(Conversation conversation) {
        //stub implementation. only affects playstore flavor
    }

    void unregisterChannel(Account account, String hash) {
        //stub implementation. only affects playstore flavor
    }

    void disablePushOnServer(Conversation conversation) {
        //stub implementation. only affects playstore flavor
    }

    public boolean available(Account account) {
        return false;
    }

    public boolean isStub() {
        return true;
    }
}