Merge tag 'v2.3.15' into testing
[gpl/argeo-slc.git] / org.argeo.slc.api / src / org / argeo / slc / primitive / PrimitiveValue.java
diff --git a/org.argeo.slc.api/src/org/argeo/slc/primitive/PrimitiveValue.java b/org.argeo.slc.api/src/org/argeo/slc/primitive/PrimitiveValue.java
deleted file mode 100644 (file)
index 0c2bf23..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-package org.argeo.slc.primitive;
-
-import org.argeo.slc.execution.AbstractExecutionValue;
-
-/** Primitive value to be used by an execution. */
-public class PrimitiveValue extends AbstractExecutionValue implements
-               PrimitiveAccessor {
-       private static final long serialVersionUID = 533414290998374166L;
-
-       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;
-       }
-
-       public void setType(String type) {
-               this.type = type;
-       }
-
-       public Object getValue() {
-               return value;
-       }
-
-       public void setValue(Object value) {
-               this.value = value;
-       }
-
-}