Back to project page beansight-mobile-android.
The source code is released under:
Apache License
If you think the Android project beansight-mobile-android 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 com.beansight.android.api.responses; //from w w w. j a va 2s . com public class Response<T> { private T response; private Meta meta; public T getResponse() { return response; } public void setResponse(T response) { this.response = response; } public Meta getMeta() { return meta; } public void setMeta(Meta meta) { this.meta = meta; } }