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/13/15.
7
 */
8
public class PublicationIdentifier implements IsSerializable {
9
	private String type;
10
	private String value;
11

    
12
	public PublicationIdentifier() {
13
	}
14

    
15
	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
}
(26-26/39)