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