moving UuidAndTitleCache from model to persistence. #4799
[cdmlib.git] / cdmlib-persistence / src / main / java / eu / etaxonomy / cdm / persistence / dao / molecular / IAmplificationDao.java
1 // $Id$
2 /**
3 * Copyright (C) 2014 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10 package eu.etaxonomy.cdm.persistence.dao.molecular;
11
12 import java.util.List;
13 import java.util.UUID;
14
15 import eu.etaxonomy.cdm.model.molecular.Amplification;
16 import eu.etaxonomy.cdm.persistence.dao.common.IAnnotatableDao;
17 import eu.etaxonomy.cdm.persistence.dto.UuidAndTitleCache;
18
19 /**
20 * @author pplitzner
21 * @date 11.03.2014
22 *
23 */
24 public interface IAmplificationDao extends IAnnotatableDao<Amplification>{
25
26 /**
27 * Retrieves the {@link UUID} and the string representation (title cache) of all
28 * {@link Amplification}s found in the data base.
29 * @return a list of {@link UuidAndTitleCache}
30 */
31 public List<UuidAndTitleCache<Amplification>> getAmplificationUuidAndLabelCache();
32 }