Skip to content
Snippets Groups Projects
Commit 124c55c2 authored by buczekp's avatar buczekp
Browse files

[LMS-2442] fixed build

SVN: 22352
parent d574429d
No related branches found
No related tags found
No related merge requests found
......@@ -47,8 +47,15 @@ public interface IDeletionDAO extends IGenericDAO<DeletionPE>
void revert(DeletionPE deletion);
/** Returns list of ids of samples moved to trash in specified deletions. */
@Deprecated
List<TechId> findTrashedSampleIds(List<TechId> deletionIds);
/** Returns list of ids of non-comonent samples (having no container) moved to trash in specified deletions. */
List<TechId> findTrashedNonComponentSampleIds(List<TechId> deletionIds);
/** Returns list of ids of component samples (samples with container) moved to trash in specified deletions. */
List<TechId> findTrashedComponentSampleIds(List<TechId> deletionIds);
/** Returns list of ids of experiments moved to trash in specified deletions. */
List<TechId> findTrashedExperimentIds(List<TechId> deletionIds);
......
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