]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/core/execution/PrimitiveValue.java
XML format for executions
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / main / java / org / argeo / slc / core / execution / PrimitiveValue.java
index e29d67e90f9fdaf1e750257bc88dd24b6714fd93..01793268affa745ddff0bef1042895cc27cea24e 100644 (file)
@@ -1,10 +1,20 @@
 package org.argeo.slc.core.execution;
 
-public class PrimitiveValue {
+public class PrimitiveValue extends AbstractExecutionValue implements
+               PrimitiveAccessor {
        private String type;
 
        private Object value;
 
+       public PrimitiveValue() {
+       }
+
+       public PrimitiveValue(String type, Object value) {
+               super();
+               this.type = type;
+               this.value = value;
+       }
+
        public String getType() {
                return type;
        }