X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.api%2Fsrc%2Forg%2Fargeo%2Fslc%2Fexecution%2FExecutionContext.java;fp=org.argeo.slc.api%2Fsrc%2Forg%2Fargeo%2Fslc%2Fexecution%2FExecutionContext.java;h=0000000000000000000000000000000000000000;hb=09c9e5093fe1353aaac344ac8a8caf2e1dcc0778;hp=46c448f41291fe6ad4468f1bc55b37fcc66bcd46;hpb=8ff996a3380166be2ae9cf0ef0fa22c58e11746a;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.api/src/org/argeo/slc/execution/ExecutionContext.java b/org.argeo.slc.api/src/org/argeo/slc/execution/ExecutionContext.java deleted file mode 100644 index 46c448f41..000000000 --- a/org.argeo.slc.api/src/org/argeo/slc/execution/ExecutionContext.java +++ /dev/null @@ -1,20 +0,0 @@ -package org.argeo.slc.execution; - -/** Variables or references attached to an execution (typically thread bounded).*/ -public interface ExecutionContext { - public final static String VAR_EXECUTION_CONTEXT_ID = "slcVar.executionContext.id"; - public final static String VAR_EXECUTION_CONTEXT_CREATION_DATE = "slcVar.executionContext.creationDate"; - public final static String VAR_FLOW_ID = "slcVar.flow.id"; - public final static String VAR_FLOW_NAME = "slcVar.flow.name"; - - public String getUuid(); - - /** @return the variable value, or null if not found. */ - public Object getVariable(String key); - - public void setVariable(String key, Object value); - - public void beforeFlow(ExecutionFlow executionFlow); - - public void afterFlow(ExecutionFlow executionFlow); -}