Overview

Summary

ServicesContactDonateAboutImprint


Appendix E-11: NOTIFICATION (UI prompt)


NotificationCategoryModuleYouTubeCom

Properties (5)

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


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /notification/{id}findNotificationById(id)CategoryModuleGETNotification
(2) /notificationfindAllNotification()CategoryModuleGETNotification
(3) /notificationinsertNotification(notification)CategoryModulePOSTNotification
(4) /notification/user/{id}findAllNotificationOfUser(id)CategoryModuleGETUser Notification
(5) /notification/{id}updateNotificationById(notification)CategoryModulePUTNotification
(6) /notification/{id}deleteNotificationById(id)CategoryModuleDELETENotification





Example:

final Notification notification = (Notification) invokeModule(CATEGORY_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

ServicesContactDonateAboutImprint