1: package org.sakaiproject.api.app.scheduler; 2: 3: //this is the worker API that tools implement and actually do the real work 4: public interface ScheduledInvocationCommand { 5: 6: public void execute(String opaqueContext); 7: 8: }