Skip to content

v0.2.47..v0.2.48 changeset JobStatus.java

Garret Voltz edited this page Sep 27, 2019 · 1 revision
diff --git a/hoot-services/src/main/java/hoot/services/models/db/JobStatus.java b/hoot-services/src/main/java/hoot/services/models/db/JobStatus.java
index 81f6b8b..b9f92d8 100644
--- a/hoot-services/src/main/java/hoot/services/models/db/JobStatus.java
+++ b/hoot-services/src/main/java/hoot/services/models/db/JobStatus.java
@@ -54,6 +54,8 @@ public class JobStatus {
 
     private Integer trackableCommandCount;
 
+    private String parentId;
+
     public java.sql.Timestamp getEnd() {
         return end;
     }
@@ -133,5 +135,13 @@ public class JobStatus {
     public void setCommandCount(Integer commandCount) {
         this.trackableCommandCount = commandCount;
     }
+
+    public String getParentId() {
+        return parentId;
+    }
+
+    public void setParentId(String parentId) {
+        this.parentId = parentId;
+    }
 }
 
Clone this wiki locally