Project

General

Profile

Download (779 Bytes) Statistics
| Branch: | Tag: | Revision:
1 b7799a2b m.doering
/**
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 13f56004 m.doering
package eu.etaxonomy.cdm.remote.dto;
11 b7799a2b m.doering
12
/**
13
 * A String globally uniquely identified by an uuid.
14
 * 
15
 * @author a.kohlbecker
16
 * @version 1.0
17
 * @created 11.12.2007 14:13:29
18
 *
19
 */
20
public class IdentifiedString  {
21
	
22
	private String uuid;
23
	private String value;
24
	
25
	public String getUuid() {
26
		return uuid;
27
	}
28
	public void setUuid(String uuid) {
29
		this.uuid = uuid;
30
	}
31
	public String getText() {
32
		return value;
33
	}
34
	public void setText(String text) {
35
		this.value = text;
36
	}
37
	
38
39
}