Project

General

Profile

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

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

    
5
/**
6
 * Created by claudio on 22/07/16.
7
 */
8
public class Pid implements IsSerializable {
9

    
10
    private String value;
11

    
12
    private String type;
13

    
14
    public Pid() {
15
    }
16

    
17
    public String getValue() {
18
        return value;
19
    }
20

    
21
    public void setValue(String value) {
22
        this.value = value;
23
    }
24

    
25
    public String getType() {
26
        return type;
27
    }
28

    
29
    public void setType(String type) {
30
        this.type = type;
31
    }
32
}
(17-17/23)