]> git.argeo.org Git - gpl/argeo-slc.git/blob - ExecutionStackLevel.java
790404b58dda4c7298547b6e40b74f3a4c08859f
[gpl/argeo-slc.git] / ExecutionStackLevel.java
1 package org.argeo.slc.execution;
2
3 import java.util.Map;
4
5 public interface ExecutionStackLevel {
6 public ExecutionFlow getExecutionFlow();
7
8 public Map<String, Object> getScopedObjects();
9
10 public String getUuid();
11
12 public Map<String, Object> getLocalVariables();
13
14 }