]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/main/java/org/argeo/slc/runtime/SimpleSlcRuntime.java
Restructure example
[gpl/argeo-slc.git] / org.argeo.slc.core / src / main / java / org / argeo / slc / runtime / SimpleSlcRuntime.java
1 package org.argeo.slc.runtime;
2
3 import org.springframework.context.ApplicationContext;
4
5 public class SimpleSlcRuntime implements SlcRuntime {
6 protected ApplicationContext runtimeContext;
7
8 public SimpleSlcRuntime() {
9 }
10
11 public SimpleSlcRuntime(ApplicationContext runtimeContext) {
12 this.runtimeContext = runtimeContext;
13 }
14
15 public ApplicationContext getRuntimeContext() {
16 return runtimeContext;
17 }
18
19 }