(no commit message)
[cdmlib.git] / cdmlib-remote / src / main / java / eu / etaxonomy / cdm / remote / dto / NameSTO.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.remote.dto;
10
11 import java.util.ArrayList;
12 import java.util.List;
13
14 /**
15 * Simple Transfer Object version of {@link NameTO}
16 *
17 * @author a.kohlbecker
18 * @version 1.0
19 * @created 11.12.2007 14:40:26
20 */
21 public class NameSTO extends BaseSTO {
22
23 private String fullname;
24 private ReferenceSTO nomenclaturalReference;
25 private List<TaggedText> taggedName = new ArrayList();
26
27 }