1 31 32 package org.opencms.notification; 33 34 import org.opencms.file.CmsObject; 35 import org.opencms.scheduler.I_CmsScheduledJob; 36 37 import java.util.Map ; 38 39 47 public class CmsContentNotificationJob implements I_CmsScheduledJob { 48 49 52 public String launch(CmsObject cms, Map parameters) throws Exception { 53 54 CmsNotificationCandidates candidates = new CmsNotificationCandidates(cms); 55 return candidates.notifyResponsibles(); 56 } 57 } 58 | Popular Tags |