ref #5744 latest changes cyprus images
[cdmlib-apps.git] / app-import / src / main / java / eu / etaxonomy / cdm / io / algaterra / AlgaTerraImportState.java
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.algaterra;
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.berlinModel.in.BerlinModelImportState;
19
20 /**
21 * @author a.mueller
22 * @created 11.05.2009
23 * @version 1.0
24 */
25 public class AlgaTerraImportState extends BerlinModelImportState{
26
27 @SuppressWarnings("unused")
28 private static final Logger logger = Logger.getLogger(AlgaTerraImportState.class);
29
30 private boolean specimenVocabulariesCreated = false;
31
32 public AlgaTerraImportState(AlgaTerraImportConfigurator config) {
33 super(config);
34 }
35
36 public AlgaTerraImportConfigurator getAlgaTerraConfigurator(){
37 return (AlgaTerraImportConfigurator)getConfig();
38 }
39
40 public boolean isSpecimenVocabulariesCreated() {
41 return specimenVocabulariesCreated;
42 }
43
44 public void setSpecimenVocabulariesCreated(boolean specimenVocabulariesCreated) {
45 this.specimenVocabulariesCreated = specimenVocabulariesCreated;
46 }
47
48
49 }