Project

General

Profile

1
package eu.dnetlib.openaire.api.objects;
2

    
3
/**
4
 * Created by michele on 02/12/15.
5
 */
6
public class PidEntry {
7

    
8
	private String type;
9
	private String value;
10

    
11
	public PidEntry() {
12
	}
13

    
14
	public PidEntry(final String type, final String value) {
15
		this.type = type;
16
		this.value = value;
17
	}
18

    
19
	public String getType() {
20
		return type;
21
	}
22

    
23
	public void setType(final String type) {
24
		this.type = type;
25
	}
26

    
27
	public String getValue() {
28
		return value;
29
	}
30

    
31
	public void setValue(final String value) {
32
		this.value = value;
33
	}
34
}
(2-2/3)