Back to project page FrameLite.
The source code is released under:
GNU General Public License
If you think the Android project FrameLite 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.miku.framelite.api.webservice; public abstract class WebServiceStringRequest<T> extends AbstractWebServiceRequest<T, String> { @Override protected String handlerRawResponse(Object rawResponse) throws Exception { return rawResponse.toString(); } }