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

MINOR : Fix bug that causes loss of sample parents in sample update from DSS transaction

SVN: 26292
parent 30a24534
No related branches found
No related tags found
No related merge requests found
......@@ -68,4 +68,25 @@ public class SampleBatchUpdateDetails implements Serializable
{
return propertiesToUpdate;
}
public void setExperimentUpdateRequested(boolean experimentUpdateRequested)
{
this.experimentUpdateRequested = experimentUpdateRequested;
}
public void setParentsUpdateRequested(boolean parentsUpdateRequested)
{
this.parentsUpdateRequested = parentsUpdateRequested;
}
public void setContainerUpdateRequested(boolean containerUpdateRequested)
{
this.containerUpdateRequested = containerUpdateRequested;
}
public void setPropertiesToUpdate(Set<String> propertiesToUpdate)
{
this.propertiesToUpdate = propertiesToUpdate;
}
}
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