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
aa717e25
Commit
aa717e25
authored
16 years ago
by
felmer
Browse files
Options
Downloads
Patches
Plain Diff
bug fixed concerning handling of internal data set codes
SVN: 5664
parent
ffb809e3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bds/source/java/ch/systemsx/cisd/bds/DataSet.java
+9
-5
9 additions, 5 deletions
bds/source/java/ch/systemsx/cisd/bds/DataSet.java
with
9 additions
and
5 deletions
bds/source/java/ch/systemsx/cisd/bds/DataSet.java
+
9
−
5
View file @
aa717e25
...
...
@@ -54,9 +54,6 @@ public final class DataSet implements IStorable
static
final
String
PARENT_CODES
=
"parent_codes"
;
/** This data set unique identifier. */
private
final
String
code
;
/** Provides the information when the data set has been created. */
private
final
Date
productionTimestamp
;
...
...
@@ -75,6 +72,9 @@ public final class DataSet implements IStorable
/** The list of parent codes. Never <code>null</code> but could be empty. */
private
final
List
<
String
>
parentCodes
;
/** This data set unique identifier. */
private
String
code
;
private
BooleanOrUnknown
isComplete
=
BooleanOrUnknown
.
UNKNOWN
;
/**
...
...
@@ -103,8 +103,7 @@ public final class DataSet implements IStorable
final
Date
productionTimestampOrNull
,
final
String
producerCodeOrNull
,
final
List
<
String
>
parentCodesOrNull
)
{
assert
StringUtils
.
isEmpty
(
code
)
==
false
:
"Unspecified data set code."
;
this
.
code
=
code
;
this
.
code
=
code
==
null
?
""
:
code
;
this
.
isMeasured
=
isMeasured
;
assert
StringUtils
.
isEmpty
(
observableType
)
==
false
:
"Unspecified observable type."
;
this
.
observableTypeCode
=
observableType
;
...
...
@@ -118,6 +117,11 @@ public final class DataSet implements IStorable
this
.
productionTimestamp
=
productionTimestampOrNull
;
}
public
final
void
setCode
(
String
code
)
{
this
.
code
=
code
;
}
public
final
String
getCode
()
{
return
code
;
...
...
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