-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDataSetModelSwagger.java
More file actions
221 lines (199 loc) · 6.85 KB
/
DataSetModelSwagger.java
File metadata and controls
221 lines (199 loc) · 6.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
package fr.insee.rmes.modelSwagger.dataset;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import fr.insee.rmes.model.datasets.*;
import lombok.Getter;
import lombok.Setter;
import jakarta.annotation.Generated;
import jakarta.validation.Valid;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL;
@JsonInclude(NON_NULL)
@JsonPropertyOrder({
"id",
"uri",
"catalogRecordCreated",
"catalogRecordModified",
"catalogRecordCreator",
"catalogRecordContributor",
"identifier",
"issued",
"modified",
"disseminationStatus",
"validationState",
"version",
"creator",
"publisher",
"title",
"subtitle",
"abstract",
"description",
"scopeNote",
"wasGeneratedBy",
"type",
"archiveUnit",
"accessRights",
"confidentialityStatus",
"theme",
"landingPage",
"processStep",
"accrualPeriodicity",
"temporal",
"temporalResolution",
"spatial",
"spatialResolution",
"spatialTemporal",
"statisticalUnit",
"structure",
"numObservations",
"numSeries",
"wasDerivedFrom",
"relations",
"keyword"
})
@Generated("jsonschema2pojo")
@Setter
@Getter
public class DataSetModelSwagger implements Serializable {
@JsonProperty("id")
private String id;
@JsonProperty("catalogRecordCreated")
private CatalogRecordCreated catalogRecordCreated;
@JsonProperty("catalogRecordModified")
private CatalogRecordModified catalogRecordModified;
@JsonProperty("catalogRecordCreator")
private CatalogRecordCreator catalogRecordCreator;
@JsonProperty("catalogRecordContributor")
private CatalogRecordContributor catalogRecordContributor;
@JsonProperty("title")
//@Valid
private List<LangContent> title ;
@JsonProperty("uri")
private String uri;
@JsonProperty("modified")
private String modified;
@JsonProperty ("validationState")
private String validationState;
@JsonProperty("creator")
private List<IdLabel> creator;
@JsonProperty("disseminationStatus")
private String disseminationStatus;
@JsonProperty("identifier")
private String identifier;
@JsonProperty("subtitle")
private List<LangContent> subtitle;
@JsonProperty("abstract")
private List<LangContent> abstractDataset;
@JsonProperty("description")
private List<LangContent> description;
@JsonProperty("scopeNote")
private List<LangContent> scopeNote;
@JsonProperty("landingPage")
private List<LandingPage> landingPage;
@JsonProperty("processStep")
private ProcessStep processStep;
@JsonProperty("publisher")
private IdLabel publisher;
@JsonProperty("wasGeneratedBy")
private List<IdLabel> wasGeneratedBy;
@JsonProperty("wasDerivedFrom")
private WasDerivedFrom wasDerivedFrom;
@JsonProperty("type")
private List<LangContent> type;
@JsonProperty("archiveUnit")
private List<IdLabel> archiveUnit;
@JsonProperty("accessRights")
private List<LangContent> accessRights;
@JsonProperty("confidentialityStatus")
private List<LangContent> confidentialityStatus;
@JsonProperty("accrualPeriodicity")
private Label accrualPeriodicity;
@JsonProperty("temporal")
private Temporal temporal;
@JsonProperty("temporalResolution")
private List<Label> temporalResolution;
@JsonProperty("spatial")
private IdLabel spatial;
@JsonProperty("spatialResolution")
private List<IdLabel> spatialResolution;
@JsonProperty("spatialTemporal")
private SpatialTemporal spatialTemporal;
@JsonProperty("statisticalUnit")
private List<LangContent> statisticalUnit;
@JsonProperty("structure")
private Structure structure;
@JsonProperty("version")
private String version;
@JsonProperty("issued")
private String issued;
@JsonProperty("numObservations")
private Integer numObservations;
@JsonProperty("numSeries")
private Integer numSeries;
@JsonProperty("relations")
private List<String> relations;
@JsonProperty("keyword")
private List<LangContent> keyword;
@JsonProperty("theme")
@JsonInclude(NON_NULL)
private List<ThemeModelSwagger> themeModelSwaggerS;
@JsonIgnore
@Valid
private Map<String, Object> additionalProperties = new HashMap<String, Object>();
public DataSetModelSwagger() {
}
public DataSetModelSwagger(Id id, List<LangContent> title, Uri uri, String validationState, DisseminationStatus disseminationStatus, CatalogRecordCreated catalogRecordCreated, CatalogRecordModified catalogRecordModified, CatalogRecordCreator catalogRecordCreator, CatalogRecordContributor catalogRecordContributor) {
this.id = id.toString();
this.title = title;
this.uri = uri.toString();
this.validationState = validationState;
this.disseminationStatus = disseminationStatus.toString();
this.catalogRecordContributor = catalogRecordContributor;
this.catalogRecordCreator = catalogRecordCreator;
this.catalogRecordCreated = catalogRecordCreated;
this.catalogRecordModified = catalogRecordModified;
}
public DataSetModelSwagger(Id id, Uri uri, Modified modified) {
this.id = id.toString();
this.uri = uri.toString();
this.modified = modified.toString();
}
public DataSetModelSwagger(Id id, List<LangContent> title, Uri uri, Modified modified, String validationState) {
this.id = id.toString();
this.title = title;
this.uri = uri.toString();
this.modified = modified.toString();
this.validationState= validationState;
}
public DataSetModelSwagger(Id id, List<LangContent> title, Uri uri, Modified modified, String validationState, List<ThemeModelSwagger> themeModelSwaggerS) {
this.id = id.toString();
this.title = title;
this.uri = uri.toString();
this.modified = modified.toString();
this.validationState = validationState;
this.themeModelSwaggerS = themeModelSwaggerS;
}
public Id getIdWithTypeId(){
Id id = new Id(this.id);
return id;
}
public Uri getUriWithTypeUri(){
Uri uri = new Uri(this.uri);
return uri;
}
public void addKeyword(LangContent langContent) {
if (this.keyword == null) {
this.keyword = new ArrayList<>();
this.keyword.add(langContent);
}
else {
this.keyword.add(langContent);
}
}
}