Overview

Summary

ContactDonateImprint


Appendix E-11: NOTIFICATION (UI prompt)


NotificationAdModuleYouTubeCom

Properties (5)

PropertyTypeEntityReferenceModule
(1) CreatedAtDATENotification
(2) IsReadBOOLNotification
(3) PayloadJsonSTRINGNotification
(4) TypeSTRINGNotification
(5) UserLONGNotificationUserUserModule


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /notificationfindAllNotification()AdModuleGETNotification
(2) /notification/{id}deleteNotificationById(id)AdModuleDELETENotification
(3) /notificationinsertNotification(notification)AdModulePOSTNotification
(4) /notification/user/{id}findAllNotificationOfUser(id)AdModuleGETUser Notification
(5) /notification/{id}findNotificationById(id)AdModuleGETNotification
(6) /notification/{id}updateNotificationById(notification)AdModulePUTNotification





Example:

final Notification notification = (Notification) invokeModule(AD_MODULE + "/notification/" + id, Notification.class);
if (notification != null) {
    final User user1 = (User) invokeModule(USER_MODULE + "/user/" + notification.getUser().getId(), User.class);
    if (user1 != null) {
    }
}
return notification;


Overview

Summary

ContactDonateImprint