Project

General

Profile

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

    
3
import com.google.gwt.user.client.rpc.IsSerializable;
4

    
5
/**
6
 * Created by stefanos on 17/3/2017.
7
 */
8
public class ConditionParams implements IsSerializable {
9

    
10
    private String value;
11
    private String otherValue;
12

    
13
    public ConditionParams() {
14
    }
15

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

    
21
    public String getValue() {
22
        return this.value;
23
    }
24

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

    
29
    public String getOtherValue() {
30
        return this.otherValue;
31
    }
32

    
33
    public void setOtherValue(final String otherValue) {
34
        this.otherValue = otherValue;
35
    }
36
}
(4-4/23)