]> git.argeo.org Git - gpl/argeo-slc.git/blob - SlcExecutionContext.java
57e491a5efbbafa00c1be36386a43bedfc5c4616
[gpl/argeo-slc.git] / SlcExecutionContext.java
1 package org.argeo.slc.runtime;
2
3 import org.argeo.slc.core.process.SlcExecution;
4
5 /** Provides access to the object used during the execution */
6 public interface SlcExecutionContext {
7 public Object getBean(String name);
8
9 public SlcExecution getSlcExecution();
10 }