Project

General

Profile

1 35352 antonis.le
package eu.dnetlib.goldoa.domain;
2
3 36934 antonis.le
import com.google.gwt.user.client.rpc.IsSerializable;
4 35354 antonis.le
5 35352 antonis.le
/**
6
 * Created by antleb on 3/13/15.
7
 */
8 36934 antonis.le
public class PublicationIdentifier implements IsSerializable {
9 35352 antonis.le
	private String type;
10
	private String value;
11
12 35354 antonis.le
	public PublicationIdentifier() {
13
	}
14
15 35352 antonis.le
	public PublicationIdentifier(String type, String value) {
16
		this.type = type;
17
		this.value = value;
18
	}
19
20
	public String getType() {
21
		return type;
22
	}
23
24
	public void setType(String type) {
25
		this.type = type;
26
	}
27
28
	public String getValue() {
29
		return value;
30
	}
31
32
	public void setValue(String value) {
33
		this.value = value;
34
	}
35
}