Project

General

Profile

Download (1.97 KB) Statistics
| Branch: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2016 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.io.redlist.gefaesspflanzen;
11

    
12
import java.util.UUID;
13

    
14
import org.apache.log4j.Logger;
15

    
16
/**
17
 * @author pplitzner
18
 * @date Mar 7, 2016
19
 *
20
 */
21
public class RedListUtil {
22

    
23
    public static final UUID checkListClassificationUuid = UUID.fromString("928a4695-c055-465e-99da-07322384b0b7");
24

    
25
    public static final String NAME_NAMESPACE = "name";
26
    public static final String TAXON_GESAMTLISTE_NAMESPACE = "taxon_gesamt_liste";
27
    public static final String TAXON_CHECKLISTE_NAMESPACE = "taxon_checkliste";
28
    public static final String AUTHOR_NAMESPACE = "author";
29

    
30
    public static final String AUCT = "auct.";
31
    public static final String EX = " ex ";
32
    public static final String GUELT_BASIONYM = "b";
33
    public static final String GUELT_SYNONYM = "x";
34
    public static final String GUELT_ACCEPTED_TAXON = "1";
35

    
36

    
37
    public static final String GUELT = "GUELT";
38
    public static final String LOWER = "LOWER";
39
    public static final String NAMNR = "NAMNR";
40
    public static final String AUTOR_BASI = "AUTOR_BASI";
41
    public static final String AUTOR_KOMB = "AUTOR_KOMB";
42
    public static final String ZUSATZ = "ZUSATZ";
43
    public static final String NOM_ZUSATZ = "NOM_ZUSATZ";
44
    public static final String TAX_ZUSATZ = "TAX_ZUSATZ";
45
    public static final String EPI3 = "EPI3";
46
    public static final String EPI2 = "EPI2";
47
    public static final String EPI1 = "EPI1";
48
    public static final String RANG = "RANG";
49
    public static final String TAXNAME = "TAXNAME";
50
    public static final String AUTOR = "AUTOR";
51
    public static final String CL_TAXON = "CL_TAXON";
52

    
53
    public static void logMessage(long id, String message, Logger logger){
54
        logger.error(NAMNR+": "+id+" "+message);
55
    }
56

    
57
}
(7-7/7)