]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/core/execution/PrimitiveValue.java
e29d67e90f9fdaf1e750257bc88dd24b6714fd93
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / main / java / org / argeo / slc / core / execution / PrimitiveValue.java
1 package org.argeo.slc.core.execution;
2
3 public class PrimitiveValue {
4 private String type;
5
6 private Object value;
7
8 public String getType() {
9 return type;
10 }
11
12 public void setType(String type) {
13 this.type = type;
14 }
15
16 public Object getValue() {
17 return value;
18 }
19
20 public void setValue(Object value) {
21 this.value = value;
22 }
23
24 }