forked from gooddata/gooddata-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataset.java
More file actions
35 lines (29 loc) · 852 Bytes
/
Copy pathDataset.java
File metadata and controls
35 lines (29 loc) · 852 Bytes
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
package com.gooddata.dataset;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Dataset
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class Dataset {
private final String identifier;
private final String link;
private final String title;
@JsonCreator
public Dataset(@JsonProperty("identifier") String identifier, @JsonProperty("link") String link,
@JsonProperty("title") String title) {
this.identifier = identifier;
this.link = link;
this.title = title;
}
public String getIdentifier() {
return identifier;
}
public String getLink() {
return link;
}
public String getTitle() {
return title;
}
}