使用Google HTTP Client Library的数组中的通用类型

时间:2016-05-30 10:20:42

标签: java http google-http-client

我有基本的http响应,如下所示:

{ 
"data" : [], 
"total" : 0, 
"hasMore" : false
}

在数据中可以是任何对象 - Users,FeedItems等。

所以我想要创建像

这样的基类
public class BaseDataReponse<T> {

@Key
public List<T> data;

@Key
public Integer total;

@Key
public Boolean hasMore;

}

我可以在Android库的Retrofit中这样做。

但我无法理解如何在Google HTTP Client Library中执行此操作。

0 个答案:

没有答案