Project

General

Profile

1 54525 panagiotis
package eu.dnetlib.repo.manager.domain;
2 50614 panagiotis
3 50845 panagiotis
import com.fasterxml.jackson.annotation.JsonInclude;
4 50614 panagiotis
5 50845 panagiotis
@JsonInclude(JsonInclude.Include.NON_NULL)
6 50614 panagiotis
public class RequestFilter{
7
8 50845 panagiotis
    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 56636 antonis.le
    private String englishname = null;
14 53113 panagiotis
    private String collectedfrom = null;
15 50614 panagiotis
16
17 56636 antonis.le
18
19 50614 panagiotis
    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 50631 panagiotis
39
    public String getCountry() {
40
        return country;
41
    }
42
43
    public void setCountry(String country) {
44
        this.country = country;
45
    }
46 50845 panagiotis
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 53113 panagiotis
63
    public String getCollectedfrom() {
64
        return collectedfrom;
65
    }
66
67
    public void setCollectedfrom(String collectedfrom) {
68
        this.collectedfrom = collectedfrom;
69
    }
70 56636 antonis.le
71
    public String getEnglishname() {
72
        return englishname;
73
    }
74
75
    public void setEnglishname(String englishname) {
76
        this.englishname = englishname;
77
    }
78 50614 panagiotis
}