forked from gooddata/gooddata-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGdc.java
More file actions
303 lines (273 loc) · 7.09 KB
/
Copy pathGdc.java
File metadata and controls
303 lines (273 loc) · 7.09 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
/*
* Copyright (C) 2007-2014, GoodData(R) Corporation. All rights reserved.
*/
package com.gooddata.gdc;
import org.codehaus.jackson.annotate.JsonCreator;
import org.codehaus.jackson.annotate.JsonIgnore;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import org.codehaus.jackson.annotate.JsonProperty;
import org.codehaus.jackson.annotate.JsonTypeInfo;
import org.codehaus.jackson.annotate.JsonTypeName;
import org.codehaus.jackson.map.annotate.JsonSerialize;
import java.util.List;
/**
* GoodData API root response (aka "about" or "home")
*/
@JsonTypeName("about")
@JsonTypeInfo(include = JsonTypeInfo.As.WRAPPER_OBJECT, use = JsonTypeInfo.Id.NAME)
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
public class Gdc {
/**
* URI of GoodData API root
*/
public static final String URI = "/gdc";
private final List<Link> links;
@JsonCreator
public Gdc(@JsonProperty("links") List<Link> links) {
this.links = links;
}
/**
* Get GoodData API root link
*
* @return GoodData API root link
*/
@JsonIgnore
public String getHomeLink() {
return getLink(LinkCategory.HOME).getUri();
}
/**
* Get temporary token generator link
*
* @return temporary token generator link
*/
@JsonIgnore
public String getTokenLink() {
return getLink(LinkCategory.TOKEN).getUri();
}
/**
* Get authentication service link
*
* @return authentication service link
*/
@JsonIgnore
public String getLoginLink() {
return getLink(LinkCategory.LOGIN).getUri();
}
/**
* Get metadata resources link
*
* @return metadata resources link
*/
@JsonIgnore
public String getMetadataLink() {
return getLink(LinkCategory.METADATA).getUri();
}
/**
* Get report execution resource link
*
* @return report execution resource link
*/
@JsonIgnore
public String getXTabLink() {
return getLink(LinkCategory.XTAB).getUri();
}
/**
* Get link of resource used to determine valid attribute values in the context of a report
*
* @return link of resource used to determine valid attribute values in the context of a report
*/
@JsonIgnore
public String getAvailableElementsLink() {
return getLink(LinkCategory.AVAILABLE_ELEMENTS).getUri();
}
/**
* Get report exporting resource link
*
* @return report exporting resource link
*/
@JsonIgnore
public String getReportExporterLink() {
return getLink(LinkCategory.REPORT_EXPORTER).getUri();
}
/**
* Get account manipulation resource link
*
* @return account manipulation resource link
*/
@JsonIgnore
public String getAccountLink() {
return getLink(LinkCategory.ACCOUNT).getUri();
}
/**
* Get user and project management resource link
*
* @return user and project management resource link
*/
@JsonIgnore
public String getProjectsLink() {
return getLink(LinkCategory.PROJECTS).getUri();
}
/**
* Get miscellaneous tool resource link
*
* @return miscellaneous tool resource link
*/
@JsonIgnore
public String getToolLink() {
return getLink(LinkCategory.TOOL).getUri();
}
/**
* Get template resource link
*
* @return template resource link
*/
@JsonIgnore
public String getTemplatesLink() {
return getLink(LinkCategory.TEMPLATES).getUri();
}
/**
* Get release information link
*
* @return release information link
*/
@JsonIgnore
public String getReleaseInfoLink() {
return getLink(LinkCategory.RELEASE_INFO).getUri();
}
/**
* Get user data staging area link
*
* @return user data staging area link
*/
@JsonIgnore
public String getUserStagingLink() {
return getLink(LinkCategory.USER_STAGING).getUri();
}
/**
* Get link by category
*
* @param category requested link category
* @return link by given category
*/
@JsonIgnore
private Link getLink(LinkCategory category) {
for (Link link : links) {
if (category.value.equals(link.getCategory())) {
return link;
}
}
return null;
}
/**
* GoodData API root link
*/
@JsonIgnoreProperties(ignoreUnknown = true)
private static class Link {
private final String category;
private final String link;
private final String summary;
private final String title;
@JsonCreator
public Link(@JsonProperty("category") String category, @JsonProperty("link") String link,
@JsonProperty("summary") String summary, @JsonProperty("title") String title) {
this.category = category;
this.link = link;
this.summary = summary;
this.title = title;
}
/**
* Get link category
*
* @return link category
*/
public String getCategory() {
return category;
}
/**
* Get link URI
*
* @return link URI
*/
public String getUri() {
return link;
}
/**
* Get link summary
*
* @return link summary
*/
public String getSummary() {
return summary;
}
/**
* Get link title
*
* @return link title
*/
public String getTitle() {
return title;
}
}
/**
* GoodData API root link category enum
*/
private static 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;
private LinkCategory(final String value) {
this.value = value;
}
}
}