]> git.argeo.org Git - gpl/argeo-slc.git/blob - SimpleSlcRuntime.java
e7da7f9623d390a92bc440f14a4d9dbf0423e8cd
[gpl/argeo-slc.git] / 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 }