From ba1c90a5a4485a64bc2a3b6dc86bd18f9569ec7d Mon Sep 17 00:00:00 2001 From: pkupczyk <pkupczyk> Date: Tue, 2 Feb 2016 13:44:02 +0000 Subject: [PATCH] SSDM-3082 : V3 DSS API - change recursive to false by default in DataSetFileDownloadOptions SVN: 35613 --- .../openbis/generic/dss/systemtest/api/v3/DownloadFileTest.java | 1 + .../v3/dto/datasetfile/download/DataSetFileDownloadOptions.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/datastore_server/sourceTest/java/ch/ethz/sis/openbis/generic/dss/systemtest/api/v3/DownloadFileTest.java b/datastore_server/sourceTest/java/ch/ethz/sis/openbis/generic/dss/systemtest/api/v3/DownloadFileTest.java index de66140b3e7..6e479a48915 100644 --- a/datastore_server/sourceTest/java/ch/ethz/sis/openbis/generic/dss/systemtest/api/v3/DownloadFileTest.java +++ b/datastore_server/sourceTest/java/ch/ethz/sis/openbis/generic/dss/systemtest/api/v3/DownloadFileTest.java @@ -24,6 +24,7 @@ public class DownloadFileTest extends AbstractFileTest { IDataSetFileId root = new DataSetFilePermId(new DataSetPermId(dataSetCode)); DataSetFileDownloadOptions options = new DataSetFileDownloadOptions(); + options.setRecursive(true); Map<String, String> contentMap = download(Arrays.asList(root), options); diff --git a/openbis_api/source/java/ch/ethz/sis/openbis/generic/dssapi/v3/dto/datasetfile/download/DataSetFileDownloadOptions.java b/openbis_api/source/java/ch/ethz/sis/openbis/generic/dssapi/v3/dto/datasetfile/download/DataSetFileDownloadOptions.java index fdf83043a6c..54e87a8cf96 100644 --- a/openbis_api/source/java/ch/ethz/sis/openbis/generic/dssapi/v3/dto/datasetfile/download/DataSetFileDownloadOptions.java +++ b/openbis_api/source/java/ch/ethz/sis/openbis/generic/dssapi/v3/dto/datasetfile/download/DataSetFileDownloadOptions.java @@ -26,7 +26,7 @@ public class DataSetFileDownloadOptions implements Serializable private static final long serialVersionUID = 1L; - private boolean recursive = true; + private boolean recursive = false; public boolean isRecursive() { -- GitLab