Project

General

Profile

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

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

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

    
10
    private String repositoryName;
11

    
12
    private String url;
13

    
14
    private String id;
15

    
16
    public Provenance() {
17
    }
18

    
19
    public String getRepositoryName() {
20
        return repositoryName;
21
    }
22

    
23
    public void setRepositoryName(String repositoryName) {
24
        this.repositoryName = repositoryName;
25
    }
26

    
27
    public String getUrl() {
28
        return url;
29
    }
30

    
31
    public void setUrl(String url) {
32
        this.url = url;
33
    }
34

    
35
    public String getId() {
36
        return id;
37
    }
38

    
39
    public void setId(String id) {
40
        this.id = id;
41
    }
42
}
(19-19/23)