01: package org.sakaiproject.component.app.scheduler.test;
02:
03: import org.apache.commons.logging.Log;
04: import org.apache.commons.logging.LogFactory;
05: import org.sakaiproject.api.app.scheduler.ScheduledInvocationCommand;
06:
07: public class ScheduledInvocationTestCommand implements
08: ScheduledInvocationCommand {
09:
10: private static final Log LOG = LogFactory
11: .getLog(ScheduledInvocationTestCommand.class);
12:
13: public void execute(String opaqueContext) {
14:
15: LOG.info("Command executed! Context: " + opaqueContext);
16:
17: }
18:
19: }
|