Back to project page MConsole.
The source code is released under:
MIT License
If you think the Android project MConsole 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 pl.skifo.mconsole; /*from w w w. j a v a 2 s. com*/ public interface ResponseEvaluator { /** * Evaluates if given server response is correct or not * * @param response * @return evaluation result */ public boolean isOK(ServerResponse response); }