Skip to content
Snippets Groups Projects
Commit 045139b7 authored by felmer's avatar felmer
Browse files

generate codes by prefix and static counters

SVN: 26612
parent ec252bc1
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
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