Examples of CampaignSummary


Examples of net.cloudcodex.server.data.home.CampaignSummary

   
    final Data.Campaign campaign =
      campaignService.createCampaign(context, name, game,
          description, icon, context.getUser());

    final CampaignSummary summary = new CampaignSummary();
    summary.setCampaign(campaign);
    summary.setMaster(context.getUser());
    summary.setNotifications(null);
    summary.setCharacters(null);
   
    return createResult(context, DTOUtil.mapCampaignSummary(summary));
  }
View Full Code Here

Examples of net.cloudcodex.server.data.home.CampaignSummary

   
    final Data.Campaign campaign =
      campaignService.updateCampaign(context, campaignId, name, game,
          description, icon, context.getUser());

    final CampaignSummary summary = new CampaignSummary();
    summary.setCampaign(campaign);
    summary.setMaster(context.getUser());
    summary.setNotifications(null);
    summary.setCharacters(null);
   
    return createResult(context, DTOUtil.mapCampaignSummary(summary));
  }
View Full Code Here

Examples of net.cloudcodex.server.data.home.CampaignSummary

      return null;
    }
   
    final List<CampaignSummary> summaries = new ArrayList<CampaignSummary>();
    for(Campaign campaign : campaigns) {
      final CampaignSummary summary = new CampaignSummary();
      summary.setCampaign(campaign);
      summary.setMaster(user);
      summary.setNotifications(getNotifications(context, campaign.getKey()));
      summary.setCharacters(dao.getCampaignPlayableCharacters(context, campaign.getKey()));
      summaries.add(summary);
    }
   
    return summaries.isEmpty() ? null : summaries;
  }
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.