Back to project page PicPosterComplete.
The source code is released under:
Apache License
If you think the Android project PicPosterComplete listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ca.ualberta.cs.picposter.network; /*ww w. j av a 2 s. c o m*/ /** * Represents a response from ElasticSearch. * Taken from https://github.com/rayzhangcl/ESDemo */ public class ElasticSearchResponse<T> { String _index; String _type; String _id; int _version; boolean exists; T _source; double max_score; public T getSource() { return _source; } }