Project

General

Profile

1
package eu.dnetlib.openaire.vocabularies;
2

    
3
/**
4
 * Created by claudio on 15/09/2017.
5
 */
6
public class Country {
7

    
8
	private String code;
9

    
10
	private String name;
11

    
12
	public Country() {
13
	}
14

    
15
	public Country(final String code, final String name) {
16
		this.code = code;
17
		this.name = name;
18
	}
19

    
20
	public String getCode() {
21
		return code;
22
	}
23

    
24
	public void setCode(final String code) {
25
		this.code = code;
26
	}
27

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

    
32
	public void setName(final String name) {
33
		this.name = name;
34
	}
35
}
(1-1/3)