114 if (notification ==
null) {
115 System.err.println(
"Notification is null");
121 int id = notification.getId();
122 System.out.println(
"Notification ID: " +
id);
127 String title = notification.getTitle();
128 System.out.println(
"Notification title: " + title);
133 String content = notification.getContent();
134 System.out.println(
"Notification content: " + content);
139 String imageUrl = notification.getImageUrl();
140 if (imageUrl !=
null && !imageUrl.isEmpty()) {
141 System.out.println(
"Notification image URL: " + imageUrl);
143 System.out.println(
"Notification has no image URL");
148 processNotification(notification);