Skip to content

v0.2.48..v0.2.49 changeset ExportParams.java

Garret Voltz edited this page Oct 2, 2019 · 1 revision
diff --git a/hoot-services/src/main/java/hoot/services/controllers/export/ExportParams.java b/hoot-services/src/main/java/hoot/services/controllers/export/ExportParams.java
index 9173e6b..4c9eb6e 100644
--- a/hoot-services/src/main/java/hoot/services/controllers/export/ExportParams.java
+++ b/hoot-services/src/main/java/hoot/services/controllers/export/ExportParams.java
@@ -79,6 +79,8 @@ public class ExportParams {
     @JsonProperty("PIXEL_SIZE")
     private double pixelSize = -1.0;
 
+    private String outputPath;
+
     public String getOutputType() {
         return outputType;
     }
@@ -199,6 +201,14 @@ public class ExportParams {
         return hoot2;
     }
 
+    public String getOutputPath() {
+        return outputPath;
+    }
+
+    public void setOutputPath(String outputPath) {
+        this.outputPath = outputPath;
+    }
+
     @Override
     public String toString() {
         return "ExportParams{" +
Clone this wiki locally