Skip to content
Snippets Groups Projects
Commit 99a2293e authored by felmer's avatar felmer
Browse files

SSDM-5515: Add h5 folder flags to DatasetDescription

SVN: 38708
parent d50f3a96
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,10 @@ public class DatasetDescription implements Serializable, IDatasetLocation ...@@ -38,6 +38,10 @@ public class DatasetDescription implements Serializable, IDatasetLocation
private String fileFormatType; private String fileFormatType;
private boolean h5Folders;
private boolean h5arFolders;
private String datasetCode; private String datasetCode;
private String dataSetLocation; private String dataSetLocation;
...@@ -277,6 +281,26 @@ public class DatasetDescription implements Serializable, IDatasetLocation ...@@ -277,6 +281,26 @@ public class DatasetDescription implements Serializable, IDatasetLocation
this.fileFormatType = fileFormatType; this.fileFormatType = fileFormatType;
} }
public boolean isH5Folders()
{
return h5Folders;
}
public void setH5Folders(boolean h5Folders)
{
this.h5Folders = h5Folders;
}
public boolean isH5arFolders()
{
return h5arFolders;
}
public void setH5arFolders(boolean h5arFolders)
{
this.h5arFolders = h5arFolders;
}
@Override @Override
public String toString() public String toString()
{ {
......
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