]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.executionflow/src/main/java/org/argeo/slc/executionflow/SimpleSpecAttribute.java
Introduce executor and event notifications
[gpl/argeo-slc.git] / sandbox / argeo.slc.executionflow / src / main / java / org / argeo / slc / executionflow / SimpleSpecAttribute.java
1 package org.argeo.slc.executionflow;
2
3 public class SimpleSpecAttribute implements ExecutionSpecAttribute {
4 private Object value = null;
5
6 public Object getValue() {
7 return value;
8 }
9
10 public void setValue(Object value){
11 this.value = value;
12 }
13 }