Examples of CampaignPublicSummaryDTO


Examples of net.cloudcodex.shared.dto.home.CampaignPublicSummaryDTO

  public void initView() {

    view.addCharacter(characterSummaryDTO.getId(),
        characterSummaryDTO.getIcon(), characterSummaryDTO.getName());

    CampaignPublicSummaryDTO campaignDTO = characterSummaryDTO
        .getCampaign();
    view.addCampaignInfos(campaignDTO.getName(), campaignDTO.getGame(),
        campaignDTO.getCreationDate(),
        campaignDTO.getGameMasterNickname());

    List<NotificationDTO> characterNotificationDTOs = characterSummaryDTO
        .getNotifications();
    if (characterNotificationDTOs != null) {
      for (NotificationDTO notificationDTO : characterNotificationDTOs) {
View Full Code Here

Examples of net.cloudcodex.shared.dto.home.CampaignPublicSummaryDTO

      return null;
    }
   
    final Campaign campaign = summary.getCampaign();
    final User master = summary.getMaster();
    final CampaignPublicSummaryDTO dto = new CampaignPublicSummaryDTO();
    dto.setId(campaign.getKey().getId());
    dto.setName(campaign.getName());
    dto.setIcon(campaign.getIcon());
    dto.setNotifications(mapNotification(
        summary.getNotifications(), NotificationType.CAMPAIGN));
    dto.setCreationDate(campaign.getDate());
    dto.setGameMasterNickname(master == null ? null : master.getNickname());
    return dto;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.