Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
99a2293e
Commit
99a2293e
authored
7 years ago
by
felmer
Browse files
Options
Downloads
Patches
Plain Diff
SSDM-5515: Add h5 folder flags to DatasetDescription
SVN: 38708
parent
d50f3a96
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/DatasetDescription.java
+24
-0
24 additions, 0 deletions
...x/cisd/openbis/generic/shared/dto/DatasetDescription.java
with
24 additions
and
0 deletions
openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/DatasetDescription.java
+
24
−
0
View file @
99a2293e
...
@@ -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
()
{
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment