]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/process/SlcExecution.java
Improve JCR DAO
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / process / SlcExecution.java
index 7a81facf612b1c6529ef8a2fdd825d4c9057ef17..88d37c4f581db65e5087463663b6380e9bf0f543 100644 (file)
@@ -29,6 +29,9 @@ public class SlcExecution implements Serializable {
        private List<SlcExecutionStep> steps = new ArrayList<SlcExecutionStep>();\r
        private List<RealizedFlow> realizedFlows = new ArrayList<RealizedFlow>();\r
 \r
+       /** Attachment uuid. */\r
+       private String realizedFlowsXml = null;\r
+\r
        public List<RealizedFlow> getRealizedFlows() {\r
                return realizedFlows;\r
        }\r
@@ -143,4 +146,19 @@ public class SlcExecution implements Serializable {
                                return steps.get(steps.size() - 1).getBegin();\r
                }\r
        }\r
+\r
+       /**\r
+        * Not (yet) a stable API, should not be relied upon!\r
+        * \r
+        * @return an id or an url allowing to retrieve the XML, not the XML itself!\r
+        */\r
+       public String getRealizedFlowsXml() {\r
+               return realizedFlowsXml;\r
+       }\r
+\r
+       /** Not (yet) a stable API, should not be relied upon! */\r
+       public void setRealizedFlowsXml(String realizedFlowsXml) {\r
+               this.realizedFlowsXml = realizedFlowsXml;\r
+       }\r
+\r
 }\r