Project

General

Profile

1
package eu.dnetlib.repo.manager.service.shared;
2

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

    
5
/**
6
 * Created by stefania on 3/8/16.
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
}
(19-19/20)