Project

General

Profile

1
package eu.dnetlib.shared;
2

    
3
import com.google.gwt.user.client.rpc.IsSerializable;
4
import eu.dnetlib.goldoa.domain.*;
5

    
6
/**
7
 * Created by stefania on 2/25/15.
8
 */
9
public class FundingWizardState implements IsSerializable {
10

    
11
    private Request request = new Request();
12

    
13
    private Person researcher;
14
    private Project project;
15
    private Publication publication;
16
    private Invoice invoice;
17

    
18
    public FundingWizardState() {
19
    }
20

    
21
    public Request getRequest() {
22
        return request;
23
    }
24

    
25
    public void setRequest(Request request) {
26
        this.request = request;
27
    }
28

    
29
    public Person getResearcher() {
30
        return researcher;
31
    }
32

    
33
    public void setResearcher(Person researcher) {
34
        this.researcher = researcher;
35
    }
36

    
37
    public Project getProject() {
38
        return project;
39
    }
40

    
41
    public void setProject(Project project) {
42
        this.project = project;
43
    }
44

    
45
    public Publication getPublication() {
46
        return publication;
47
    }
48

    
49
    public void setPublication(Publication publication) {
50
        this.publication = publication;
51
    }
52

    
53
    public Invoice getInvoice() {
54
        return invoice;
55
    }
56

    
57
    public void setInvoice(Invoice invoice) {
58
        this.invoice = invoice;
59
    }
60
}
(1-1/2)