public class EventsCallbacks {
public EventsCallbacks() {
public void onSendingMessage(int toUserId, Message message, AuthorisationCallback authorisationCallback) {
authorisationCallback.OK();
public void onRemovingFriend(int friendId, AuthorisationCallback authorisationCallback) {
authorisationCallback.OK();
public void onLockingUser(int userId, AuthorisationCallback authorisationCallback) {
authorisationCallback.OK();
public void onUnLockingUser(int userId, AuthorisationCallback authorisationCallback) {
authorisationCallback.OK();
public void onDeletingConversation(int userId, AuthorisationCallback authorisationCallback) {
authorisationCallback.OK();
public void onAudioCallClick(int userId, AuthorisationCallback authorisationCallback) {
authorisationCallback.OK();
public void onVideoCallClick(int userId, AuthorisationCallback authorisationCallback) {
authorisationCallback.OK();