Project

General

Profile

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

    
3

    
4
public class RequestFilter{
5

    
6
    private String registeredby = "";
7
    private String typology = "";
8
    private String country = "";
9

    
10

    
11
    public RequestFilter() {
12

    
13
    }
14

    
15
    public String getTypology() {
16
        return typology;
17
    }
18

    
19
    public void setTypology(String typology) {
20
        this.typology = typology;
21
    }
22

    
23
    public String getRegisteredby() {
24
        return registeredby;
25
    }
26

    
27
    public void setRegisteredby(String registeredby) {
28
        this.registeredby = registeredby;
29
    }
30

    
31
    public String getCountry() {
32
        return country;
33
    }
34

    
35
    public void setCountry(String country) {
36
        this.country = country;
37
    }
38
}
(5-5/5)