Project

General

Profile

1
package eu.dnetlib.repo.manager.domain.broker;
2

    
3
/**
4
 * Created by stefanos on 17/3/2017.
5
 */
6
public class ConditionParams {
7

    
8
    private String value;
9
    private String otherValue;
10

    
11
    public ConditionParams() {
12
    }
13

    
14
    public ConditionParams(final String value, final String otherValue) {
15
        this.value = value;
16
        this.otherValue = otherValue;
17
    }
18

    
19
    public String getValue() {
20
        return this.value;
21
    }
22

    
23
    public void setValue(final String value) {
24
        this.value = value;
25
    }
26

    
27
    public String getOtherValue() {
28
        return this.otherValue;
29
    }
30

    
31
    public void setOtherValue(final String otherValue) {
32
        this.otherValue = otherValue;
33
    }
34
}
(4-4/14)