X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=runtime%2Forg.argeo.slc.specs%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fexecution%2FExecutionModulesManager.java;h=06681747a8e2e3be3d4cfb39f0939236a7ffad72;hb=5187ffaff5610275cf3dbc5fb913f59126576da8;hp=b04eca3006b86e56152c17a08f045e02534a882a;hpb=58e0e18d64a2080680a9f8397b0dfa2894519910;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionModulesManager.java b/runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionModulesManager.java index b04eca300..06681747a 100644 --- a/runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionModulesManager.java +++ b/runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionModulesManager.java @@ -16,7 +16,6 @@ package org.argeo.slc.execution; import java.util.List; -import java.util.Map; import org.argeo.slc.deploy.ModulesManager; @@ -44,22 +43,22 @@ public interface ExecutionModulesManager extends ModulesManager { /** Synchronously finds and executes an {@link ExecutionFlow}. */ public void execute(RealizedFlow realizedFlow); - /** Notify of a status update status of the {@link ExecutionProcess} */ - public void dispatchUpdateStatus(ExecutionProcess process, - String oldStatus, String newStatus); - - /** Notify that a step was added in an {@link ExecutionProcess} */ - public void dispatchAddSteps(ExecutionProcess process, - List steps); - - /** - * Register a notifier which will be notified based on the provided - * properties. - */ - public void registerProcessNotifier(ExecutionProcessNotifier notifier, - Map properties); - - /** Unregisters a notifier */ - public void unregisterProcessNotifier(ExecutionProcessNotifier notifier, - Map properties); + // /** Notify of a status update status of the {@link ExecutionProcess} */ +// public void dispatchUpdateStatus(ExecutionProcess process, +// String oldStatus, String newStatus); + // + // /** Notify that a step was added in an {@link ExecutionProcess} */ + // public void dispatchAddSteps(ExecutionProcess process, + // List steps); + // + // /** + // * Register a notifier which will be notified based on the provided + // * properties. + // */ + // public void registerProcessNotifier(ExecutionProcessNotifier notifier, + // Map properties); + // + // /** Unregisters a notifier */ + // public void unregisterProcessNotifier(ExecutionProcessNotifier notifier, + // Map properties); }