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 25/10/2016.
7
 */
8
public class Requestor {
9
    private String id;
10

    
11
    public Requestor() {
12
    }
13

    
14
    public Requestor(String id) {
15
        this.id = id;
16
    }
17

    
18
    @JsonProperty("ID")
19
    public String getID() {
20
        return id;
21
    }
22

    
23
}
(16-16/18)