Project

General

Profile

1
package eu.dnetlib.repo.manager.service.utils;
2

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

    
5
@JsonInclude(JsonInclude.Include.NON_NULL)
6
public class RequestFilter{
7

    
8
    private String registeredby = null;
9
    private String typology = null;
10
    private String country = null;
11
    private String id = null;
12
    private String officialname = null;
13

    
14

    
15
    public RequestFilter() {
16

    
17
    }
18

    
19
    public String getTypology() {
20
        return typology;
21
    }
22

    
23
    public void setTypology(String typology) {
24
        this.typology = typology;
25
    }
26

    
27
    public String getRegisteredby() {
28
        return registeredby;
29
    }
30

    
31
    public void setRegisteredby(String registeredby) {
32
        this.registeredby = registeredby;
33
    }
34

    
35
    public String getCountry() {
36
        return country;
37
    }
38

    
39
    public void setCountry(String country) {
40
        this.country = country;
41
    }
42

    
43
    public String getId() {
44
        return id;
45
    }
46

    
47
    public void setId(String id) {
48
        this.id = id;
49
    }
50

    
51
    public String getOfficialname() {
52
        return officialname;
53
    }
54

    
55
    public void setOfficialname(String officialname) {
56
        this.officialname = officialname;
57
    }
58
}
(7-7/7)