/** * Copyright (C) 2004-2016, 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 links) { super(links); } }