]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/PrimitiveValue.java
Modular distributions
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / PrimitiveValue.java
1 package org.argeo.slc.core.execution;
2
3 public class PrimitiveValue extends AbstractExecutionValue implements
4 PrimitiveAccessor {
5 private String type;
6
7 private Object value;
8
9 public PrimitiveValue() {
10 }
11
12 public PrimitiveValue(String type, Object value) {
13 super();
14 this.type = type;
15 this.value = value;
16 }
17
18 public String getType() {
19 return type;
20 }
21
22 public void setType(String type) {
23 this.type = type;
24 }
25
26 public Object getValue() {
27 return value;
28 }
29
30 public void setValue(Object value) {
31 this.value = value;
32 }
33
34 }