Project

General

Profile

Download (846 Bytes) Statistics
| Branch: | Tag: | 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
package eu.etaxonomy.cdm.remote.dto;
10

    
11
import java.util.UUID;
12

    
13

    
14

    
15
/**
16
 * This Simple Transfer Object (STO) is used as surrogate for instances of {@link Taxon} and {@link Synonym},  
17
 * thus a TaxonSTO my represent accepted a not accepted taxon. Therefore the flag isAccepted has been introduced 
18
 * by which accepted taxa can be clearly identified.
19
 * 
20
 * @author a.kohlbecker
21
 * @version 1.0
22
 * @created 13.12.2007 14:55:32
23
 *
24
 */
25
public class TaxonSTO extends BaseSTO {
26
	
27
	private NameSTO name;
28
	private UUID secUuid;
29
	private boolean isAccepted;
30
	
31
}
(27-27/30)