Skip to content

v0.2.54..v0.2.55 changeset ConflateParams.java

Garret Voltz edited this page Aug 14, 2020 · 1 revision
diff --git a/hoot-services/src/main/java/hoot/services/controllers/conflation/ConflateParams.java b/hoot-services/src/main/java/hoot/services/controllers/conflation/ConflateParams.java
index d67b12f..6a8049f 100644
--- a/hoot-services/src/main/java/hoot/services/controllers/conflation/ConflateParams.java
+++ b/hoot-services/src/main/java/hoot/services/controllers/conflation/ConflateParams.java
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2015, 2016, 2017, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2015, 2016, 2017, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 package hoot.services.controllers.conflation;
 
@@ -86,6 +86,9 @@ public class ConflateParams {
     @JsonProperty("CLEANING_OPTIONS")
     private List<String> cleaningOpts;
 
+    @JsonProperty("taskInfo")
+    private String taskInfo;
+
     public String getInputType1() {
         return inputType1;
     }
@@ -222,6 +225,14 @@ public class ConflateParams {
         this.cleaningOpts = cleaningOpts;
     }
 
+    public void setTaskInfo(String taskInfo) {
+        this.taskInfo = taskInfo;
+    }
+
+    public String getTaskInfo() {
+        return taskInfo;
+    }
+
     @Override
     public String toString() {
         return "ConflateParams{" +
Clone this wiki locally