Skip to content
Snippets Groups Projects
Commit ba1c90a5 authored by pkupczyk's avatar pkupczyk
Browse files

SSDM-3082 : V3 DSS API - change recursive to false by default in DataSetFileDownloadOptions

SVN: 35613
parent 9fba9f86
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,7 @@ public class DownloadFileTest extends AbstractFileTest ...@@ -24,6 +24,7 @@ public class DownloadFileTest extends AbstractFileTest
{ {
IDataSetFileId root = new DataSetFilePermId(new DataSetPermId(dataSetCode)); IDataSetFileId root = new DataSetFilePermId(new DataSetPermId(dataSetCode));
DataSetFileDownloadOptions options = new DataSetFileDownloadOptions(); DataSetFileDownloadOptions options = new DataSetFileDownloadOptions();
options.setRecursive(true);
Map<String, String> contentMap = download(Arrays.asList(root), options); Map<String, String> contentMap = download(Arrays.asList(root), options);
......
...@@ -26,7 +26,7 @@ public class DataSetFileDownloadOptions implements Serializable ...@@ -26,7 +26,7 @@ public class DataSetFileDownloadOptions implements Serializable
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
private boolean recursive = true; private boolean recursive = false;
public boolean isRecursive() public boolean isRecursive()
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment