All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gooddata.gdc.Gdc Maven / Gradle / Ivy

/*
 * 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 links) {
        super(links);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy