Back to project page transloadit-Android-sdk.
The source code is released under:
MIT License
If you think the Android project transloadit-Android-sdk 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 hu.szabot.transloadit.parser; //from ww w . j av a2 s . co m import hu.szabot.transloadit.exceptions.NotParseableException; import java.util.HashMap; public interface IResponseParser { /**Sets the response String*/ public void setResponse(String response); /**Gets the response String*/ public String getResponse(); /** * Parse the request * @return The parsed Map * @throws NotParseableException Thrown when the request not parseable. */ public HashMap<String, Object> parse() throws NotParseableException; }