]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/core/execution/SimpleSpringExecutionModule.java
Rename OverrideContextAware task
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / main / java / org / argeo / slc / core / execution / SimpleSpringExecutionModule.java
1 package org.argeo.slc.core.execution;
2
3 public class SimpleSpringExecutionModule extends AbstractSpringExecutionModule {
4
5 private String name;
6 private String version;
7
8 public void setName(String name) {
9 this.name = name;
10 }
11
12 public void setVersion(String version) {
13 this.version = version;
14 }
15
16 public String getName() {
17 return name;
18 }
19
20 public String getVersion() {
21 return version;
22 }
23
24 }