Skip to content
Snippets Groups Projects
Commit b90221c0 authored by cramakri's avatar cramakri
Browse files

LMS-1886 Add the experiment identifier to the information in the Sample dto.

SVN: 18897
parent 237fa555
No related branches found
No related tags found
No related merge requests found
...@@ -60,6 +60,13 @@ class Translator ...@@ -60,6 +60,13 @@ class Translator
initializer.putProperty(prop.getPropertyType().getCode(), prop.getValue()); initializer.putProperty(prop.getPropertyType().getCode(), prop.getValue());
} }
ch.systemsx.cisd.openbis.generic.shared.basic.dto.Experiment experimentOrNull =
privateSample.getExperiment();
if (null != experimentOrNull)
{
initializer.setExperimentIdentifierOrNull(experimentOrNull.getIdentifier());
}
return new Sample(initializer); return new Sample(initializer);
} }
......
...@@ -54,6 +54,8 @@ public final class Sample implements Serializable ...@@ -54,6 +54,8 @@ public final class Sample implements Serializable
private String identifier; private String identifier;
private String experimentIdentifierOrNull;
private Long sampleTypeId; private Long sampleTypeId;
private String sampleTypeCode; private String sampleTypeCode;
...@@ -100,6 +102,16 @@ public final class Sample implements Serializable ...@@ -100,6 +102,16 @@ public final class Sample implements Serializable
this.identifier = identifier; this.identifier = identifier;
} }
public String getExperimentIdentifierOrNull()
{
return experimentIdentifierOrNull;
}
public void setExperimentIdentifierOrNull(String experimentIdentifierOrNull)
{
this.experimentIdentifierOrNull = experimentIdentifierOrNull;
}
public void setSampleTypeId(Long sampleTypeId) public void setSampleTypeId(Long sampleTypeId)
{ {
this.sampleTypeId = sampleTypeId; this.sampleTypeId = sampleTypeId;
...@@ -140,6 +152,8 @@ public final class Sample implements Serializable ...@@ -140,6 +152,8 @@ public final class Sample implements Serializable
private final String identifier; private final String identifier;
private final String experimentIdentifierOrNull;
private final Long sampleTypeId; private final Long sampleTypeId;
private final String sampleTypeCode; private final String sampleTypeCode;
...@@ -165,6 +179,8 @@ public final class Sample implements Serializable ...@@ -165,6 +179,8 @@ public final class Sample implements Serializable
checkValidString(initializer.getIdentifier(), "Unspecified identifier."); checkValidString(initializer.getIdentifier(), "Unspecified identifier.");
this.identifier = initializer.getIdentifier(); this.identifier = initializer.getIdentifier();
this.experimentIdentifierOrNull = initializer.getExperimentIdentifierOrNull();
checkValidLong(initializer.getSampleTypeId(), "Unspecified sample type id."); checkValidLong(initializer.getSampleTypeId(), "Unspecified sample type id.");
this.sampleTypeId = initializer.getSampleTypeId(); this.sampleTypeId = initializer.getSampleTypeId();
...@@ -222,6 +238,11 @@ public final class Sample implements Serializable ...@@ -222,6 +238,11 @@ public final class Sample implements Serializable
return identifier; return identifier;
} }
public String getExperimentIdentifierOrNull()
{
return experimentIdentifierOrNull;
}
/** /**
* Returns the sample type id. * Returns the sample type id.
*/ */
......
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