Package org.criticalfailure.torchlight.core.domain.entity.campaign

Examples of org.criticalfailure.torchlight.core.domain.entity.campaign.CampaignDate


            throws StorageObjectTranslationException {

        ce.setId(vo.getId());
        ce.setCampaign(campaignManager.getCampaign(vo.getCampaignId()));
        ce.setDescription(vo.getDescription());
        ce.setStartDate(new CampaignDate(vo.getStartDate()));
        ce.setEndDate(new CampaignDate(vo.getEndDate()));
        ce.setInsertDate(vo.getInsertDate());

        Set<ObjectInstance> people = new HashSet<ObjectInstance>();
        for(String personId : vo.getPeople()) {
            try {
View Full Code Here

TOP

Related Classes of org.criticalfailure.torchlight.core.domain.entity.campaign.CampaignDate

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.