Project

General

Profile

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

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

    
5
public class Project implements IsSerializable {
6

    
7
    private String code;
8
    private String acronym;
9
    private String title;
10
    private String funder;
11
    private String fundingProgram;
12
    private String jurisdiction;
13

    
14
    public Project() {
15
    }
16

    
17
    public Project(final String code, final String acronym, final String title, final String funder, final String fundingProgram, final String jurisdiction) {
18
        this.code = code;
19
        this.acronym = acronym;
20
        this.title = title;
21
        this.funder = funder;
22
        this.fundingProgram = fundingProgram;
23
        this.jurisdiction = jurisdiction;
24
    }
25

    
26
    public String getCode() {
27
        return code;
28
    }
29

    
30
    public void setCode(String code) {
31
        this.code = code;
32
    }
33

    
34
    public String getAcronym() {
35
        return acronym;
36
    }
37

    
38
    public void setAcronym(String acronym) {
39
        this.acronym = acronym;
40
    }
41

    
42
    public String getTitle() {
43
        return title;
44
    }
45

    
46
    public void setTitle(String title) {
47
        this.title = title;
48
    }
49

    
50
    public String getFunder() {
51
        return funder;
52
    }
53

    
54
    public void setFunder(String funder) {
55
        this.funder = funder;
56
    }
57

    
58
    public String getFundingProgram() {
59
        return fundingProgram;
60
    }
61

    
62
    public void setFundingProgram(String fundingProgram) {
63
        this.fundingProgram = fundingProgram;
64
    }
65

    
66
    public String getJurisdiction() {
67
        return jurisdiction;
68
    }
69

    
70
    public void setJurisdiction(String jurisdiction) {
71
        this.jurisdiction = jurisdiction;
72
    }
73
}
(18-18/23)