Project

General

Profile

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

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

    
5
import java.util.ArrayList;
6
import java.util.List;
7

    
8
/**
9
 * Created by claudio on 22/07/16.
10
 */
11
public class Publication implements IsSerializable {
12

    
13
    private String originalId;
14

    
15
    private List<String> titles = new ArrayList<>();
16

    
17
    private List<String> abstracts = new ArrayList<>();
18

    
19
    private String language;
20

    
21
    private List<String> subjects = new ArrayList<>();
22

    
23
    private List<String> creators = new ArrayList<>();
24

    
25
    private String publicationdate;
26

    
27
    private String publisher;
28

    
29
    private String embargoenddate;
30

    
31
    private List<String> contributor = new ArrayList<>();
32

    
33
    private Journal journal;
34

    
35
    private List<String> collectedFrom = new ArrayList<>();
36

    
37
    private List<Pid> pids = new ArrayList<>();
38

    
39
    private List<Instance> instances = new ArrayList<>();
40

    
41
    private List<ExternalReference> externalReferences = new ArrayList<>();
42

    
43
    private List<Project> projects = new ArrayList<>();
44

    
45
    private List<Dataset> datasets = new ArrayList<>();
46

    
47
    public Publication() {
48
    }
49

    
50
    public String getOriginalId() {
51
        return originalId;
52
    }
53

    
54
    public void setOriginalId(String originalId) {
55
        this.originalId = originalId;
56
    }
57

    
58
    public List<String> getTitles() {
59
        return titles;
60
    }
61

    
62
    public void setTitles(List<String> titles) {
63
        this.titles = titles;
64
    }
65

    
66
    public List<String> getAbstracts() {
67
        return abstracts;
68
    }
69

    
70
    public void setAbstracts(List<String> abstracts) {
71
        this.abstracts = abstracts;
72
    }
73

    
74
    public String getLanguage() {
75
        return language;
76
    }
77

    
78
    public void setLanguage(String language) {
79
        this.language = language;
80
    }
81

    
82
    public List<String> getSubjects() {
83
        return subjects;
84
    }
85

    
86
    public void setSubjects(List<String> subjects) {
87
        this.subjects = subjects;
88
    }
89

    
90
    public List<String> getCreators() {
91
        return creators;
92
    }
93

    
94
    public void setCreators(List<String> creators) {
95
        this.creators = creators;
96
    }
97

    
98
    public String getPublicationdate() {
99
        return publicationdate;
100
    }
101

    
102
    public void setPublicationdate(String publicationdate) {
103
        this.publicationdate = publicationdate;
104
    }
105

    
106
    public String getPublisher() {
107
        return publisher;
108
    }
109

    
110
    public void setPublisher(String publisher) {
111
        this.publisher = publisher;
112
    }
113

    
114
    public String getEmbargoenddate() {
115
        return embargoenddate;
116
    }
117

    
118
    public void setEmbargoenddate(String embargoenddate) {
119
        this.embargoenddate = embargoenddate;
120
    }
121

    
122
    public List<String> getContributor() {
123
        return contributor;
124
    }
125

    
126
    public void setContributor(List<String> contributor) {
127
        this.contributor = contributor;
128
    }
129

    
130
    public Journal getJournal() {
131
        return journal;
132
    }
133

    
134
    public void setJournal(Journal journal) {
135
        this.journal = journal;
136
    }
137

    
138
    public List<String> getCollectedFrom() {
139
        return collectedFrom;
140
    }
141

    
142
    public void setCollectedFrom(List<String> collectedFrom) {
143
        this.collectedFrom = collectedFrom;
144
    }
145

    
146
    public List<Pid> getPids() {
147
        return pids;
148
    }
149

    
150
    public void setPids(List<Pid> pids) {
151
        this.pids = pids;
152
    }
153

    
154
    public List<Instance> getInstances() {
155
        return instances;
156
    }
157

    
158
    public void setInstances(List<Instance> instances) {
159
        this.instances = instances;
160
    }
161

    
162
    public List<ExternalReference> getExternalReferences() {
163
        return externalReferences;
164
    }
165

    
166
    public void setExternalReferences(List<ExternalReference> externalReferences) {
167
        this.externalReferences = externalReferences;
168
    }
169

    
170
    public List<Project> getProjects() {
171
        return projects;
172
    }
173

    
174
    public void setProjects(List<Project> projects) {
175
        this.projects = projects;
176
    }
177

    
178
    public List<Dataset> getDatasets() {
179
        return datasets;
180
    }
181

    
182
    public void setDatasets(List<Dataset> datasets) {
183
        this.datasets = datasets;
184
    }
185
}
(20-20/23)