Refactor Argeo API
[gpl/argeo-slc.git] / org.argeo.slc.api / src / org / argeo / slc / execution / ExecutionStack.java
diff --git a/org.argeo.slc.api/src/org/argeo/slc/execution/ExecutionStack.java b/org.argeo.slc.api/src/org/argeo/slc/execution/ExecutionStack.java
deleted file mode 100644 (file)
index 0a15e33..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-package org.argeo.slc.execution;
-
-/** Deal with nested level of executions using different variables. */
-public interface ExecutionStack {
-       /**
-        * @param name
-        * @return null if no object is found
-        */
-       public Object findScopedObject(String name);
-
-       public void addScopedObject(String name, Object obj);
-
-       public void enterFlow(ExecutionFlow executionFlow);
-
-       /** @return internal stack level UUID. */
-       public String getCurrentStackLevelUuid();
-
-       public Integer getStackSize();
-
-       public void leaveFlow(ExecutionFlow executionFlow);
-
-       Object findLocalVariable(String key);
-}