*/
public CampaignEvent createCampaignEvent(CampaignEvent template) {
logger.info("Creating new campaign event from template: " + template);
CampaignEvent ce = (CampaignEvent)appContext.getBean("campaignEvent");
ce.setId(template.getId());
ce.setCampaign(template.getCampaign());
ce.setDescription(template.getDescription());
ce.setStartDate(template.getStartDate());
ce.setEndDate(template.getEndDate());
ce.setInsertDate(template.getInsertDate());
ce.setPeople(template.getPeople());
logger.info("Campaign event created: " + ce);
return ce;
}