Project

General

Profile

Download (1.61 KB) Statistics
| Branch: | Revision:
1
/**
2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9

    
10
package eu.etaxonomy.cdm.io.redlist.gefaesspflanzen;
11

    
12
import java.util.HashMap;
13
import java.util.Map;
14
import java.util.UUID;
15

    
16
import org.apache.log4j.Logger;
17

    
18
import eu.etaxonomy.cdm.io.common.DbImportStateBase;
19

    
20
/**
21
 *
22
 * @author pplitzner
23
 * @since Mar 1, 2016
24
 *
25
 */
26
public class RedListGefaesspflanzenImportState extends DbImportStateBase<RedListGefaesspflanzenImportConfigurator, RedListGefaesspflanzenImportState>{
27
	@SuppressWarnings("unused")
28
	private static final Logger logger = Logger.getLogger(RedListGefaesspflanzenImportState.class);
29

    
30
	private final Map<String, UUID> authorMap = new HashMap<String, UUID>();
31
	private Map<String, UUID> familyMap = new HashMap<String, UUID>();
32
	private UUID checklistClassificationUuid;
33

    
34
    protected RedListGefaesspflanzenImportState(RedListGefaesspflanzenImportConfigurator config) {
35
        super(config);
36
    }
37

    
38
    public Map<String, UUID> getAuthorMap() {
39
        return authorMap;
40
    }
41

    
42
    public void setChecklistClassificationUuid(UUID checklistClassificationUuid) {
43
        this.checklistClassificationUuid = checklistClassificationUuid;
44
    }
45

    
46
    public UUID getChecklistClassificationUuid() {
47
        return checklistClassificationUuid;
48
    }
49

    
50
    public Map<String, UUID> getFamilyMap() {
51
        return familyMap;
52
    }
53

    
54
    public void setFamilyMap(Map<String, UUID> familyMap) {
55
        this.familyMap = familyMap;
56
    }
57

    
58
}
(7-7/9)