merge-update from trunk
[cdmlib.git] / cdmlib-services / src / main / java / eu / etaxonomy / cdm / api / service / molecular / IAmplificationService.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.api.service.molecular;
11
12 import java.util.List;
13 import java.util.UUID;
14
15 import eu.etaxonomy.cdm.api.service.IAnnotatableService;
16 import eu.etaxonomy.cdm.model.common.UuidAndTitleCache;
17 import eu.etaxonomy.cdm.model.molecular.Amplification;
18
19 /**
20 * @author pplitzner
21 * @date 11.03.2014
22 *
23 */
24 public interface IAmplificationService extends IAnnotatableService<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>> getAmplificationUuidAndDescription();
32
33 }