Overview

Summary

ContactDonateImprint


Appendix E-42: NOTIFICATION (UI prompt)


NotificationGameModuleLinkedIn

Properties (5)

PropertyTypeEntityReferenceModule
(1) CreatedAtDATENotification
(2) DataJsonSTRINGNotification
(3) IsReadBOOLNotification
(4) TypeSTRINGNotification
(5) UserLONGNotificationUserAccountUserAccountModule


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /notification/{id}deleteNotificationById(id)GameModuleDELETENotification
(2) /notificationfindAllNotification()GameModuleGETNotification
(3) /notification/{id}findNotificationById(id)GameModuleGETNotification
(4) /notification/user/{id}findAllNotificationOfUser(id)GameModuleGETUserAccount Notification
(5) /notification/{id}updateNotificationById(notification)GameModulePUTNotification
(6) /notificationinsertNotification(notification)GameModulePOSTNotification





Example:

final Notification notification = (Notification) invokeModule(GAME_MODULE + "/notification/" + id, Notification.class);
if (notification != null) {
    final UserAccount user1 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + notification.getUser().getId(), UserAccount.class);
    if (user1 != null) {
    }
}
return notification;


Overview

Summary

ContactDonateImprint