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 claudio on 22/07/16.
7
 */
8
public class Instance implements IsSerializable {
9

    
10
    private String url;
11

    
12
    private String license;
13

    
14
    private String hostedby;
15

    
16
    private String instancetype;
17

    
18
    public Instance() {
19
    }
20

    
21
    public String getUrl() {
22
        return url;
23
    }
24

    
25
    public void setUrl(String url) {
26
        this.url = url;
27
    }
28

    
29
    public String getLicense() {
30
        return license;
31
    }
32

    
33
    public void setLicense(String license) {
34
        this.license = license;
35
    }
36

    
37
    public String getHostedby() {
38
        return hostedby;
39
    }
40

    
41
    public void setHostedby(String hostedby) {
42
        this.hostedby = hostedby;
43
    }
44

    
45
    public String getInstancetype() {
46
        return instancetype;
47
    }
48

    
49
    public void setInstancetype(String instancetype) {
50
        this.instancetype = instancetype;
51
    }
52
}
(9-9/23)