Project

General

Profile

1
package eu.dnetlib.usagestats.sushilite.domain;
2

    
3
import com.fasterxml.jackson.annotation.JsonProperty;
4

    
5
/**
6
 * Created by tsampikos on 31/10/2016.
7
 */
8
public class ItemIdentifier {
9
    private String type;
10
    private String value;
11

    
12
    public ItemIdentifier() {
13
    }
14

    
15
    public ItemIdentifier(String type, String value) {
16
        this.type = type;
17
        this.value = value;
18
    }
19

    
20
    @JsonProperty("Type")
21
    public String getType() {
22
        return type;
23
    }
24

    
25
    @JsonProperty("Value")
26
    public String getValue() {
27
        return value;
28
    }
29
}
(6-6/18)