Project

General

Profile

1 57741 ioannis.di
package eu.dnetlib.repo.manager.domain.broker;
2 44339 stefanos.g
3
/**
4
 * Created by stefanos on 26/10/2016.
5
 */
6 57741 ioannis.di
public class Range{
7 44339 stefanos.g
8
    private String min;
9
    private String max;
10
11
    public Range() {
12
    }
13
14
    public Range(final String min, final String max) {
15
        super();
16
        this.min = min;
17
        this.max = max;
18
    }
19
20
    public String getMin() {
21
        return this.min;
22
    }
23
24
    public void setMin(final String min) {
25
        this.min = min;
26
    }
27
28
    public String getMax() {
29
        return this.max;
30
    }
31
32
    public void setMax(final String max) {
33
        this.max = max;
34
    }
35
36
}