cleanup
[cdmlib.git] / cdmlib-io / src / main / java / eu / etaxonomy / cdm / io / common / mapping / berlinModel / CdmUriMapper.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 package eu.etaxonomy.cdm.io.common.mapping.berlinModel;
10
11 import java.net.URI;
12
13 import eu.etaxonomy.cdm.io.common.mapping.CdmSingleAttributeMapperBase;
14
15 /**
16 * @author a.mueller
17 * @since 20.03.2008
18 */
19 public class CdmUriMapper extends CdmSingleAttributeMapperBase {
20
21 public CdmUriMapper(String dbAttributString, String cdmAttributeString) {
22 super(dbAttributString, cdmAttributeString);
23 }
24
25 @Override
26 public Class getTypeClass(){
27 return URI.class;
28 }
29 }