package org.argeo.slc.execution; /** Any object which can perform processing */ public interface Executable { /** Executes the actions specified by the object */ public void execute(); }