X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;ds=inline;f=runtime%2Forg.argeo.slc.unit%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Funit%2Fexecution%2FExecutionFlowDescriptorTestUtils.java;fp=runtime%2Forg.argeo.slc.unit%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Funit%2Fexecution%2FExecutionFlowDescriptorTestUtils.java;h=33277c6989bcf3c4c4cddf1cccb27564b5f756cd;hb=86c47402780f41526382267ff1597d2f3a0d0dd7;hp=6539eadcc86803bc78442fe247ddbdde49d59fee;hpb=b9677d2472658530dff02c90ba23725fc80f1c67;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.unit/src/main/java/org/argeo/slc/unit/execution/ExecutionFlowDescriptorTestUtils.java b/runtime/org.argeo.slc.unit/src/main/java/org/argeo/slc/unit/execution/ExecutionFlowDescriptorTestUtils.java index 6539eadcc..33277c698 100644 --- a/runtime/org.argeo.slc.unit/src/main/java/org/argeo/slc/unit/execution/ExecutionFlowDescriptorTestUtils.java +++ b/runtime/org.argeo.slc.unit/src/main/java/org/argeo/slc/unit/execution/ExecutionFlowDescriptorTestUtils.java @@ -21,8 +21,8 @@ import java.util.HashMap; import java.util.Map; import org.argeo.slc.core.execution.DefaultExecutionSpec; +import org.argeo.slc.core.execution.PrimitiveAccessor; import org.argeo.slc.core.execution.PrimitiveSpecAttribute; -import org.argeo.slc.core.execution.PrimitiveUtils; import org.argeo.slc.core.execution.PrimitiveValue; import org.argeo.slc.core.execution.RefSpecAttribute; import org.argeo.slc.core.execution.RefValue; @@ -39,7 +39,7 @@ public class ExecutionFlowDescriptorTestUtils { Map values = new HashMap(); values.put("primitiveInteger", new PrimitiveValue( - PrimitiveUtils.TYPE_INTEGER, 100)); + PrimitiveAccessor.TYPE_INTEGER, 100)); RefValue refValue = new RefValue("002"); values.put("ref1", refValue); @@ -55,7 +55,7 @@ public class ExecutionFlowDescriptorTestUtils { Map attributes = new HashMap(); PrimitiveSpecAttribute primitiveInteger = new PrimitiveSpecAttribute(); - primitiveInteger.setType(PrimitiveUtils.TYPE_INTEGER); + primitiveInteger.setType(PrimitiveAccessor.TYPE_INTEGER); primitiveInteger.setValue(50); attributes.put("primitiveInteger", primitiveInteger);