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 26/10/2016.
7
 */
8
public class Filter {
9
    private final String name;
10
    private final String value;
11

    
12
    public Filter(String name, String value) {
13
        this.name = name;
14
        this.value = value;
15
    }
16

    
17
    @JsonProperty("Name")
18
    public String getName() {
19
        return name;
20
    }
21

    
22
    @JsonProperty("Value")
23
    public String getValue() {
24
        return value;
25
    }
26
}
(3-3/18)