Project

General

Profile

Download (961 Bytes) 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.bfnXml.out;
11

    
12
import java.util.HashSet;
13
import java.util.Set;
14
import java.util.UUID;
15

    
16
import org.apache.log4j.Logger;
17

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

    
20
/**
21
 *
22
 * @author pplitzner
23
 * @date May 3, 2016
24
 *
25
 */
26
public class BfnXmlExportState extends XmlExportState<BfnXmlExportConfigurator>{
27

    
28
	@SuppressWarnings("unused")
29
	private static final Logger logger = Logger.getLogger(BfnXmlExportState.class);
30

    
31
	private Set<UUID> knownConceptRelations = new HashSet<UUID>();
32

    
33
	public BfnXmlExportState(BfnXmlExportConfigurator config) {
34
		super(config);
35
	}
36

    
37
    public Set<UUID> getKnownConceptRelations() {
38
        return knownConceptRelations;
39
    }
40

    
41
}
(4-4/6)