Project

General

Profile

Download (1.17 KB) 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

    
10
package eu.etaxonomy.cdm.remote.dto;
11

    
12
/**
13
 * Transfer object derived from {@link LanguageString} excluding some {@link CdmBase} fields
14
 * 
15
 * Term descriptions are to be delivered by a separate web service request.
16
 * 
17
 * @author a.kohlbecker
18
 * @author m.doering
19
 * @version 1.0
20
 * @created 11.12.2007 12:10:45
21
 *
22
 */
23
public class LocalisedTermTO {
24

    
25
	/**
26
	 * Representation of this term in the specific language as specified by {@link LocalisedTermTO#language}
27
	 */
28
	private String term;
29
	/**
30
	 * UID of this term. The UUID is unique for all representations of this term, 
31
	 * that is it does not depend on the {@link LocalisedTermTO#language}.
32
	 */
33
	private String uuid;
34
	/**
35
	 * The language of this term representation
36
	 */
37
	private String language;
38
	
39
	public String getLanguage() {
40
		return language;
41
	}
42
	public void setLanguage(String language) {
43
		this.language = language;
44
	}
45
}
(5-5/24)