Project

General

Profile

1 50621 michele.ar
package eu.dnetlib.data.db;
2
3
public class Affiliation {
4
5
	private String pid;
6
	private String gid;
7
	private int year;
8
9
	public Affiliation() {}
10
11
	public Affiliation(final String pid, final String gid, final int year) {
12
		this.pid = pid;
13
		this.gid = gid;
14
		this.year = year;
15
	}
16
17
	public String getPid() {
18
		return pid;
19
	}
20
21
	public void setPid(final String pid) {
22
		this.pid = pid;
23
	}
24
25
	public String getGid() {
26
		return gid;
27
	}
28
29
	public void setGid(final String gid) {
30
		this.gid = gid;
31
	}
32
33
	public int getYear() {
34
		return year;
35
	}
36
37
	public void setYear(final int year) {
38
		this.year = year;
39
	}
40
41
}