Project

General

Profile

1
package eu.dnetlib.repo.manager.domain;
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
    private String englishname = null;
14
    private String collectedfrom = null;
15

    
16

    
17

    
18

    
19
    public RequestFilter() {
20

    
21
    }
22

    
23
    public String getTypology() {
24
        return typology;
25
    }
26

    
27
    public void setTypology(String typology) {
28
        this.typology = typology;
29
    }
30

    
31
    public String getRegisteredby() {
32
        return registeredby;
33
    }
34

    
35
    public void setRegisteredby(String registeredby) {
36
        this.registeredby = registeredby;
37
    }
38

    
39
    public String getCountry() {
40
        return country;
41
    }
42

    
43
    public void setCountry(String country) {
44
        this.country = country;
45
    }
46

    
47
    public String getId() {
48
        return id;
49
    }
50

    
51
    public void setId(String id) {
52
        this.id = id;
53
    }
54

    
55
    public String getOfficialname() {
56
        return officialname;
57
    }
58

    
59
    public void setOfficialname(String officialname) {
60
        this.officialname = officialname;
61
    }
62

    
63
    public String getCollectedfrom() {
64
        return collectedfrom;
65
    }
66

    
67
    public void setCollectedfrom(String collectedfrom) {
68
        this.collectedfrom = collectedfrom;
69
    }
70

    
71
    public String getEnglishname() {
72
        return englishname;
73
    }
74

    
75
    public void setEnglishname(String englishname) {
76
        this.englishname = englishname;
77
    }
78
}
(22-22/32)