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
	private Project project;
13
	private Organization organization;
14
	private Journal journal;
15
	private Publisher publisher;
16
	private Funder funder;
17

    
18
	public Vocabulary() {
19
	}
20

    
21
	public Vocabulary(String id, String name){//Object obj) {
22
		this.id = id;
23
		this.name = name;
24
		//this.object = obj;
25
	}
26

    
27
	public String getId() {
28
		return id;
29
	}
30

    
31
	public void setId(String id) {
32
		this.id = id;
33
	}
34

    
35
	public String getName() {
36
		return name;
37
	}
38

    
39
	public void setName(String name) {
40
		this.name = name;
41
	}
42

    
43
	public Project getProject() {
44
		return project;
45
	}
46

    
47
	public void setProject(Project project) {
48
		this.project = project;
49
	}
50

    
51
	public Organization getOrganization() {
52
		return organization;
53
	}
54

    
55
	public void setOrganization(Organization organization) {
56
		this.organization = organization;
57
	}
58

    
59
	public Journal getJournal() {
60
		return journal;
61
	}
62

    
63
	public void setJournal(Journal journal) {
64
		this.journal = journal;
65
	}
66

    
67
	public Publisher getPublisher() {
68
		return publisher;
69
	}
70

    
71
	public void setPublisher(Publisher publisher) {
72
		this.publisher = publisher;
73
	}
74

    
75
	public Funder getFunder() {
76
		return funder;
77
	}
78

    
79
	public void setFunder(Funder funder) {
80
		this.funder = funder;
81
	}
82
/*public Object getObject() {
83
		return object;
84
	}
85

    
86
	public void setObject(Object object) {
87
		this.object = object;
88
	}*/
89
}
(52-52/52)