コード例 #1
0
 public NotificationBuilder setDateCreated(LocalDateTime localDateTime) {
   notification.setDateCreated(localDateTime);
   return this;
 }
コード例 #2
0
 public NotificationBuilder setNotificationType(NotificationType notificationType) {
   notification.setNotificationType(notificationType);
   return this;
 }
コード例 #3
0
 public NotificationBuilder setUserNotified(User userNotified) {
   notification.setUserNotified(userNotified);
   return this;
 }
コード例 #4
0
 public NotificationBuilder isSeen(boolean isSeen) {
   notification.setSeen(isSeen);
   return this;
 }
コード例 #5
0
 public NotificationBuilder setMessage(String message) {
   notification.setMessage(message);
   return this;
 }