Project

General

Profile

1
package eu.dnetlib.goldoa.domain;
2

    
3
import com.google.gwt.user.client.rpc.IsSerializable;
4

    
5
/**
6
 * Created by antleb on 3/3/15.
7
 */
8
public class Vocabulary implements IsSerializable {
9

    
10
	private String id;
11
	private String name;
12

    
13
	public Vocabulary() {
14
	}
15

    
16
	public Vocabulary(String id, String name) {
17
		this.id = id;
18
		this.name = name;
19
	}
20

    
21
	public String getId() {
22
		return id;
23
	}
24

    
25
	public void setId(String id) {
26
		this.id = id;
27
	}
28

    
29
	public String getName() {
30
		return name;
31
	}
32

    
33
	public void setName(String name) {
34
		this.name = name;
35
	}
36
}
(117-117/117)