Cyprus import
[cdmlib-apps.git] / app-import / src / main / java / eu / etaxonomy / cdm / io / cyprus / CyprusTransformer.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 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
11 package eu.etaxonomy.cdm.io.cyprus;
12
13 import java.util.UUID;
14
15 import org.apache.log4j.Logger;
16
17 import eu.etaxonomy.cdm.common.CdmUtils;
18 import eu.etaxonomy.cdm.io.common.mapping.InputTransformerBase;
19 import eu.etaxonomy.cdm.io.common.mapping.UndefinedTransformerMethodException;
20 import eu.etaxonomy.cdm.model.common.MarkerType;
21 import eu.etaxonomy.cdm.model.description.Feature;
22
23 /**
24 * @author a.mueller
25 * @created 01.03.2010
26 * @version 1.0
27 */
28 public final class CyprusTransformer extends InputTransformerBase {
29 @SuppressWarnings("unused")
30 private static final Logger logger = Logger.getLogger(CyprusTransformer.class);
31
32
33 public static final UUID uuidAcceptedKew = UUID.fromString("c980102c-2e57-4ed3-b608-51a5d9091d89");
34 public static final UUID uuidAcceptedGeneva = UUID.fromString("8c7a0544-c71b-4809-9a2d-0583ff32f833");
35 public static final UUID uuidAcceptedItis = UUID.fromString("0738c566-0219-4e3d-a8fd-8f3d82e2d20f");
36
37
38 /* (non-Javadoc)
39 * @see eu.etaxonomy.cdm.io.common.mapping.InputTransformerBase#getMarkerTypeByKey(java.lang.String)
40 */
41 @Override
42 public MarkerType getMarkerTypeByKey(String key) throws UndefinedTransformerMethodException {
43 if (CdmUtils.isEmpty(key)){return null;
44 // }else if (key.equalsIgnoreCase("distribution")){return MarkerType.;
45 // }else if (key.equalsIgnoreCase("habitatecology")){return Feature.ECOLOGY();
46 }else{
47 return null;
48 }
49 }
50
51 @Override
52 public UUID getMarkerTypeUuid(String key) throws UndefinedTransformerMethodException {
53 if (CdmUtils.isEmpty(key)){return null;
54 // }else if (key.equalsIgnoreCase("IMPERFECTLY KNOWN SPECIES")){return uuidIncompleteTaxon;
55 }else{
56 return null;
57 }
58
59 }
60
61
62
63
64
65 }