dandelion/app/src/main/java/com/github/dfa/diaspora_android/listener/DiasporaUserProfileChangedL...

60 lines
2.1 KiB
Java
Raw Normal View History

2016-10-26 16:23:14 +02:00
/*
This file is part of the dandelion*.
2016-10-26 16:23:14 +02:00
dandelion* is free software: you can redistribute it and/or modify
2016-10-26 16:23:14 +02:00
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
dandelion* is distributed in the hope that it will be useful,
2016-10-26 16:23:14 +02:00
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with the dandelion*.
2016-10-26 16:23:14 +02:00
If not, see <http://www.gnu.org/licenses/>.
*/
package com.github.dfa.diaspora_android.listener;
import com.github.dfa.diaspora_android.data.DiasporaUserProfile;
/**
* Created by gsantner (gsantner AT mailbox DOT org) on 26.03.16.
2016-10-26 16:23:14 +02:00
* Interface that needs to be implemented by classes that listen for Profile related changes
*/
public interface DiasporaUserProfileChangedListener {
/**
* Called when the DiasporaUserProfile name changed
2016-11-04 03:08:59 +01:00
*
2016-10-26 16:23:14 +02:00
* @param diasporaUserProfile The profile
2016-11-04 03:08:59 +01:00
* @param name The new name
2016-10-26 16:23:14 +02:00
*/
void onUserProfileNameChanged(DiasporaUserProfile diasporaUserProfile, String name);
/**
* Called when the DiasporaUserProfile avatarUrl changed
2016-11-04 03:08:59 +01:00
*
2016-10-26 16:23:14 +02:00
* @param diasporaUserProfile The profile
2016-11-04 03:08:59 +01:00
* @param avatarUrl The new name
2016-10-26 16:23:14 +02:00
*/
void onUserProfileAvatarChanged(DiasporaUserProfile diasporaUserProfile, String avatarUrl);
/**
* Called when the DiasporaUserProfile notificationCount changed
2016-11-04 03:08:59 +01:00
*
2016-10-26 16:23:14 +02:00
* @param diasporaUserProfile The profile
2016-11-04 03:08:59 +01:00
* @param notificationCount The new notificationCount
2016-10-26 16:23:14 +02:00
*/
void onNotificationCountChanged(DiasporaUserProfile diasporaUserProfile, int notificationCount);
/**
* Called when the DiasporaUserProfile unreadMessageCount changed
2016-11-04 03:08:59 +01:00
*
2016-10-26 16:23:14 +02:00
* @param diasporaUserProfile The profile
2016-11-04 03:08:59 +01:00
* @param unreadMessageCount The new unreadMessageCount
2016-10-26 16:23:14 +02:00
*/
void onUnreadMessageCountChanged(DiasporaUserProfile diasporaUserProfile, int unreadMessageCount);
}