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

com.ardoq.service.DeprecatedModelService Maven / Gradle / Ivy

package com.ardoq.service;

import com.ardoq.model.Model;
import retrofit.Callback;
import retrofit.http.GET;
import retrofit.http.Path;

import java.util.List;

/**
 * Handles our models. Will change in the future.
 *
 * @deprecated
 */
public interface DeprecatedModelService {

    @GET("/api/model")
    List getAllModels();

    @GET("/api/model")
    void getAllModels(Callback> callback);

    @GET("/api/model/{id}")
    Model getModelById(@Path("id") String id);

    @GET("/api/model/{id}")
    void getModelById(@Path("id") String id, Callback callback);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy