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
045139b7
Commit
045139b7
authored
12 years ago
by
felmer
Browse files
Options
Downloads
Patches
Plain Diff
generate codes by prefix and static counters
SVN: 26612
parent
ec252bc1
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
openbis/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/base/builder/ExternalDataBuilder.java
+5
-4
5 additions, 4 deletions
.../openbis/systemtest/base/builder/ExternalDataBuilder.java
with
5 additions
and
4 deletions
openbis/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/base/builder/ExternalDataBuilder.java
+
5
−
4
View file @
045139b7
...
...
@@ -40,6 +40,8 @@ import ch.systemsx.cisd.openbis.plugin.generic.shared.IGenericServer;
public
class
ExternalDataBuilder
extends
Builder
<
ExternalData
>
{
private
static
int
number
;
private
IETLLIMSService
etlService
;
private
SampleIdentifier
sampleIdentifier
;
...
...
@@ -55,12 +57,11 @@ public class ExternalDataBuilder extends Builder<ExternalData>
private
boolean
container
;
public
ExternalDataBuilder
(
ICommonServerForInternalUse
commonServer
,
IGenericServer
genericServer
,
IETLLIMSService
etlService
)
IGenericServer
genericServer
,
IETLLIMSService
etlService
)
{
super
(
commonServer
,
genericServer
);
this
.
etlService
=
etlService
;
this
.
code
=
UUID
.
randomUUID
().
toString
()
;
this
.
code
=
"DS"
+
number
++
;
this
.
parentCodes
=
new
ArrayList
<
String
>();
this
.
container
=
false
;
this
.
componentCodes
=
new
ArrayList
<
String
>();
...
...
@@ -120,7 +121,7 @@ public class ExternalDataBuilder extends Builder<ExternalData>
public
ExternalData
create
()
{
DataSetType
dataSetType
=
new
DataSetType
();
dataSetType
.
setCode
(
UUID
.
randomUUID
().
toString
()
);
dataSetType
.
setCode
(
"DT"
+
number
++
);
if
(
this
.
container
)
{
dataSetType
.
setDataSetKind
(
DataSetKind
.
CONTAINER
);
...
...
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