Package net.cloudcodex.shared.dto

Examples of net.cloudcodex.shared.dto.NotificationDTO


   
    if(notification == null || type == null) {
      return null;
    }
   
    final NotificationDTO dto = new NotificationDTO();
    dto.setId(notification.getKey().getId()); // FIXME
    dto.setDate(notification.getTimestamp());
    dto.setMessage(notification.getMessage());
    dto.setType(type);
   
    return dto;
  }
View Full Code Here


      return null;
    }
   
    final List<NotificationDTO> dtos = new ArrayList<NotificationDTO>();
    for(Notification notification : notifications) {
      final NotificationDTO dto = mapNotification(notification, type);
      if(dto != null) {
        dtos.add(dto);
      }
    }
   
View Full Code Here

TOP

Related Classes of net.cloudcodex.shared.dto.NotificationDTO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.