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

Examples of org.criticalfailure.torchlight.core.domain.entity.campaign.AbstractCampaign.save()


            return;
        }

        try {
            campaignManager.registerCampaign(campaign);
            campaign.save();
        }
        catch(Exception e) {
            logger.error("Exception while trying to register/save campaign: " + e.getLocalizedMessage(), e);

            alertService
View Full Code Here


            campaign.setStorageType("local"); // TODO: use a constant
            campaign.setStorageUri(PathUtils.getPathAsURI(PathUtils.buildPath("${dataDir}", "local")));

            campaignManager.registerCampaign(campaign);

            campaign.save();
        }

        logger.info("Done initializing campaign list: " + campaignManager.getCampaignList().length + " campaign(s).");
    }
View Full Code Here

            return;
        }

        try {
            campaignManager.registerCampaign(campaign);
            campaign.save();
        }
        catch(Exception e) {
            logger.error("Exception while trying to register/save campaign: " + e.getLocalizedMessage(), e);

            alertService
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.