Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AccountSwitcherListener.java « accountswitcher « notes « owncloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e26277f61ba2c68315461e9ead526e7a23e23de (plain)
1
2
3
4
5
6
7
8
9
10
11
package it.niedermann.owncloud.notes.accountswitcher;

import it.niedermann.owncloud.notes.model.LocalAccount;

public interface AccountSwitcherListener {
    void addAccount();

    void onAccountChosen(LocalAccount localAccount);

    void onAccountDeleted(LocalAccount localAccount);
}