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; //ww w. j a va 2s . c om import hu.szabot.transloadit.exceptions.NotParseableException; import java.util.Map; /**The params filed parser interface*/ public interface IRequestParser { /**Sets the request objects to be parsed*/ public void setRequest(Map<String, Object> request); /**Gets the request parser*/ public Map<String, Object> getRequest(); /** * Parse the request * @return The parsed String * @throws NotParseableException Thrown when the request not parseable. */ public String parse() throws NotParseableException; }