Project

General

Profile

Download (1.01 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2015 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.vaadin.view;
11

    
12
import java.util.UUID;
13

    
14
import eu.etaxonomy.cdm.vaadin.container.CdmSQLContainer;
15
import eu.etaxonomy.cdm.vaadin.container.IdAndUuid;
16

    
17
/**
18
 * @author cmathew
19
 * @date 2 Apr 2015
20
 *
21
 */
22
public interface INewTaxonBaseComponentListener {
23

    
24

    
25
    public CdmSQLContainer getSecRefContainer();
26

    
27

    
28
    /**
29
     * @param scientificName
30
     * @param secRefItemId
31
     * @param classificationUuid
32
     * @return
33
     */
34
    public IdAndUuid newTaxon(String scientificName, Object secRefItemId, UUID classificationUuid);
35

    
36

    
37
    /**
38
     * @param scientificName
39
     * @param secRefItemId
40
     * @param accTaxonUuid
41
     * @return
42
     */
43
    public IdAndUuid newSynonym(String scientificName, Object secRefItemId, UUID accTaxonUuid);
44

    
45

    
46

    
47

    
48

    
49

    
50
}
(5-5/7)