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
32 lines (26 loc) · 796 Bytes
/
Copy pathGdc.java
File metadata and controls
32 lines (26 loc) · 796 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
/*
* 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.JsonProperty;
import com.gooddata.gdc.AboutLinks.Link;
import java.util.List;
/**
* GoodData API root links (aka "about" or "home").
* Deserialization only.
* @deprecated use {@link RootLinks} instead
*/
@Deprecated
public class Gdc extends RootLinks {
/**
* URI of GoodData API root
*/
public static final String URI = "/gdc";
@JsonCreator
public Gdc(@JsonProperty("links") List<Link> links) {
super(links);
}
}