forked from gooddata/gooddata-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRootLinks.java
More file actions
424 lines (388 loc) · 11.5 KB
/
Copy pathRootLinks.java
File metadata and controls
424 lines (388 loc) · 11.5 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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/*
* Copyright (C) 2004-2017, GoodData(R) Corporation. All rights reserved.
* This source code is licensed under the BSD-style license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
package com.gooddata.gdc;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.gooddata.GoodDataException;
import java.util.List;
/**
* GoodData API root links (aka "about" or "home").
* Deserialization only.
*/
public class RootLinks extends AboutLinks {
/**
* URI of GoodData API root
*/
public static final String URI = "/gdc";
@JsonCreator
public RootLinks(@JsonProperty("links") List<Link> links) {
super(null, null, null, links);
}
/**
* Get GoodData API root URI string
*
* @return GoodData API root URI string
* @deprecated use {@link #getHomeUri()} instead
* @throws GoodDataException in case no link with such category found
*/
@Deprecated
@JsonIgnore
public String getHomeLink() {
return getHomeUri();
}
/**
* Get GoodData API root URI string
*
* @return GoodData API root URI string
* @throws GoodDataException in case no link with such category found
*/
@JsonIgnore
public String getHomeUri() {
return getLink(LinkCategory.HOME).getUri();
}
/**
* Get temporary token generator URI string
*
* @return temporary token generator URI string
* @deprecated use {@link #getTokenUri()} instead
* @throws GoodDataException in case no link with such category found
*/
@Deprecated
@JsonIgnore
public String getTokenLink() {
return getTokenUri();
}
/**
* Get temporary token generator URI string
*
* @return temporary token generator URI string
* @throws GoodDataException in case no link with such category found
*/
@JsonIgnore
public String getTokenUri() {
return getLink(LinkCategory.TOKEN).getUri();
}
/**
* Get authentication service URI string
*
* @return authentication service URI string
* @deprecated use {@link #getLoginUri()} instead
* @throws GoodDataException in case no link with such category found
*/
@Deprecated
@JsonIgnore
public String getLoginLink() {
return getLoginUri();
}
/**
* Get authentication service URI string
*
* @return authentication service URI string
* @throws GoodDataException in case no link with such category found
*/
@JsonIgnore
public String getLoginUri() {
return getLink(LinkCategory.LOGIN).getUri();
}
/**
* Get metadata resources URI string
*
* @return metadata resources URI string
* @deprecated use {@link #getMetadataUri()} instead
* @throws GoodDataException in case no link with such category found
*/
@Deprecated
@JsonIgnore
public String getMetadataLink() {
return getMetadataUri();
}
/**
* Get metadata resources URI string
*
* @return metadata resources URI string
* @throws GoodDataException in case no link with such category found
*/
@JsonIgnore
public String getMetadataUri() {
return getLink(LinkCategory.METADATA).getUri();
}
/**
* Get report execution resource URI string
*
* @return report execution resource URI string
* @deprecated use {@link #getXTabUri()} instead
* @throws GoodDataException in case no link with such category found
*/
@Deprecated
@JsonIgnore
public String getXTabLink() {
return getXTabUri();
}
/**
* Get report execution resource URI string
*
* @return report execution resource URI string
* @throws GoodDataException in case no link with such category found
*/
@JsonIgnore
public String getXTabUri() {
return getLink(LinkCategory.XTAB).getUri();
}
/**
* Get URI string of resource used to determine valid attribute values in the context of a report
*
* @return URI string of resource used to determine valid attribute values in the context of a report
* @deprecated use {@link #getAvailableElementsUri()} instead
* @throws GoodDataException in case no link with such category found
*/
@Deprecated
@JsonIgnore
public String getAvailableElementsLink() {
return getAvailableElementsUri();
}
/**
* Get URI string of resource used to determine valid attribute values in the context of a report
*
* @return URI string of resource used to determine valid attribute values in the context of a report
* @throws GoodDataException in case no link with such category found
*/
@JsonIgnore
public String getAvailableElementsUri() {
return getLink(LinkCategory.AVAILABLE_ELEMENTS).getUri();
}
/**
* Get report exporting resource URI string
*
* @return report exporting resource URI string
* @deprecated use {@link #getReportExporterUri()} instead
* @throws GoodDataException in case no link with such category found
*/
@Deprecated
@JsonIgnore
public String getReportExporterLink() {
return getReportExporterUri();
}
/**
* Get report exporting resource URI string
*
* @return report exporting resource URI string
* @throws GoodDataException in case no link with such category found
*/
@JsonIgnore
public String getReportExporterUri() {
return getLink(LinkCategory.REPORT_EXPORTER).getUri();
}
/**
* Get account manipulation resource URI string
*
* @return account manipulation resource URI string
* @deprecated use {@link #getAccountUri()} instead
* @throws GoodDataException in case no link with such category found
*/
@Deprecated
@JsonIgnore
public String getAccountLink() {
return getAccountUri();
}
/**
* Get account manipulation resource URI string
*
* @return account manipulation resource URI string
* @throws GoodDataException in case no link with such category found
*/
@JsonIgnore
public String getAccountUri() {
return getLink(LinkCategory.ACCOUNT).getUri();
}
/**
* Get user and project management resource URI string
*
* @return user and project management resource URI string
* @deprecated use {@link #getProjectsUri()} instead
* @throws GoodDataException in case no link with such category found
*/
@Deprecated
@JsonIgnore
public String getProjectsLink() {
return getProjectsUri();
}
/**
* Get user and project management resource URI string
*
* @return user and project management resource URI string
* @throws GoodDataException in case no link with such category found
*/
@JsonIgnore
public String getProjectsUri() {
return getLink(LinkCategory.PROJECTS).getUri();
}
/**
* Get miscellaneous tool resource URI string
*
* @return miscellaneous tool resource URI string
* @deprecated use {@link #getToolUri()} instead
* @throws GoodDataException in case no link with such category found
*/
@Deprecated
@JsonIgnore
public String getToolLink() {
return getToolUri();
}
/**
* Get miscellaneous tool resource URI string
*
* @return miscellaneous tool resource URI string
* @throws GoodDataException in case no link with such category found
*/
@JsonIgnore
public String getToolUri() {
return getLink(LinkCategory.TOOL).getUri();
}
/**
* Get template resource URI string
*
* @return template resource URI string
* @deprecated use {@link #getTemplatesUri()} instead
* @throws GoodDataException in case no link with such category found
*/
@Deprecated
@JsonIgnore
public String getTemplatesLink() {
return getTemplatesUri();
}
/**
* Get template resource URI string
*
* @return template resource URI string
* @throws GoodDataException in case no link with such category found
*/
@JsonIgnore
public String getTemplatesUri() {
return getLink(LinkCategory.TEMPLATES).getUri();
}
/**
* Get release information URI string
*
* @return release information URI string
* @deprecated use {@link #getReleaseInfoUri()} instead
* @throws GoodDataException in case no link with such category found
*/
@Deprecated
@JsonIgnore
public String getReleaseInfoLink() {
return getReleaseInfoUri();
}
/**
* Get release information URI string
*
* @return release information URI string
* @throws GoodDataException in case no link with such category found
*/
@JsonIgnore
public String getReleaseInfoUri() {
return getLink(LinkCategory.RELEASE_INFO).getUri();
}
/**
* Get user data staging area URI string
*
* @return user data staging area URI string
* @deprecated use {@link #getUserStagingUri()} instead
* @throws GoodDataException in case no link with such category found
*/
@Deprecated
@JsonIgnore
public String getUserStagingLink() {
return getUserStagingUri();
}
/**
* Get user data staging area URI string
*
* @return user data staging area URI string
* @throws GoodDataException in case no link with such category found
*/
@JsonIgnore
public String getUserStagingUri() {
return getLink(LinkCategory.USER_STAGING).getUri();
}
/**
* Get link by category
*
* @param category requested link category
* @return link by given category
* @throws GoodDataException in case no link with such category found
*/
@JsonIgnore
private Link getLink(LinkCategory category) {
for (Link link : getLinks()) {
if (category.value.equals(link.getCategory())) {
return link;
}
}
throw new GoodDataException("No link with such category found");
}
/**
* GoodData API root link category enum
*/
private enum LinkCategory {
/**
* GoodData API root
*/
HOME("home"),
/**
* Temporary token generator
*/
TOKEN("token"),
/**
* Authentication service
*/
LOGIN("login"),
/**
* Metadata resources
*/
METADATA("md"),
/**
* Report execution resource
*/
XTAB("xtab"),
/**
* Resource used to determine valid attribute values in the context of a report
*/
AVAILABLE_ELEMENTS("availablelements"),
/**
* Report exporting resource
*/
REPORT_EXPORTER("report-exporter"),
/**
* Resource for logged in account manipulation
*/
ACCOUNT("account"),
/**
* Resource for user and project management
*/
PROJECTS("projects"),
/**
* Miscellaneous resources
*/
TOOL("tool"),
/**
* Template resource - for internal use only
*/
TEMPLATES("templates"),
/**
* Release information
*/
RELEASE_INFO("releaseInfo"),
/**
* User data staging area
*/
USER_STAGING("uploads");
private final String value;
LinkCategory(final String value) {
this.value = value;
}
}
}