/* * Copyright 2017 JessYan * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package me.jessyan.armscomponent.gold.mvp.model.api.service; import java.util.List; import io.reactivex.Observable; import me.jessyan.armscomponent.gold.mvp.model.entity.GoldBaseResponse; import me.jessyan.armscomponent.gold.mvp.model.entity.GoldListBean; import retrofit2.Retrofit; import retrofit2.http.GET; import retrofit2.http.Header; import retrofit2.http.Headers; import retrofit2.http.Query; import static me.jessyan.armscomponent.gold.mvp.model.api.Api.GOLD_DOMAIN_NAME; import static me.jessyan.retrofiturlmanager.RetrofitUrlManager.DOMAIN_NAME_HEADER; /** * ================================================ * 展示 {@link Retrofit#create(Class)} 中需要传入的 ApiService 的使用方式 * 存放关于 gold 的一些 API * <p> * Created by JessYan on 08/05/2016 12:05 * <a href="mailto:[email protected]">Contact me</a> * <a href="https://github.com/JessYanCoding">Follow me</a> * ================================================ */ public interface GoldService { /** * 文章列表 */ @Headers({DOMAIN_NAME_HEADER + GOLD_DOMAIN_NAME}) @GET("/1.1/classes/Entry") Observable<GoldBaseResponse<List<GoldListBean>>> getGoldList(@Header("X-LC-Id") String id, @Header("X-LC-Sign") String sign, @Query("where") String where, @Query("order") String order, @Query("include") String include, @Query("limit") int limit, @Query("skip") int skip); }