Back to project page GenericServer.
The source code is released under:
GNU General Public License
If you think the Android project GenericServer 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.davecoss.android.genericserver; /*from ww w .j a va2 s . c o m*/ public interface ServerHandler { public void traceback(Exception e); public void error(String tag, String msg); public void debug(String tag, String msg); public void info(String tag, String msg); public char[] get_password() throws HTTPError; }