Back to project page Fon.
The source code is released under:
GNU General Public License
If you think the Android project Fon 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 org.rsalvaterra.fon; /*from w w w. ja v a 2 s .com*/ public interface ResponseCodes { static final int CUST_WISPR_NOT_PRESENT = 1024; static final int CUST_ALREADY_CONNECTED = 1025; static final int CUST_CREDENTIALS_ERROR = 10001; static final int FON_INVALID_CREDENTIALS_ALT = 900; static final int FON_NOT_ENOUGH_CREDIT = 901; static final int FON_INVALID_CREDENTIALS = 902; static final int FON_USER_IN_BLACK_LIST = 903; static final int FON_SESSION_LIMIT_EXCEEDED = 905; static final int FON_SPOT_LIMIT_EXCEEDED = 906; static final int FON_NOT_AUTHORIZED = 907; static final int FON_CUSTOMIZED_ERROR = 908; static final int FON_INTERNAL_ERROR = 909; static final int FON_UNKNOWN_ERROR = 910; static final int FON_INVALID_TEMPORARY_CREDENTIAL = 911; static final int FON_AUTHORIZATION_CONNECTION_ERROR = 912; static final int WISPR_MESSAGE_TYPE_INITIAL_REDIRECT = 100; static final int WISPR_MESSAGE_TYPE_PROXY_NOTIFICATION = 110; static final int WISPR_MESSAGE_TYPE_AUTH_NOTIFICATION = 120; static final int WISPR_MESSAGE_TYPE_LOGOFF_NOTIFICATION = 130; static final int WISPR_MESSAGE_TYPE_RESPONSE_AUTH_POLL = 140; static final int WISPR_MESSAGE_TYPE_RESPONSE_ABORT_LOGIN = 150; static final int WISPR_RESPONSE_CODE_NO_ERROR = 0; static final int WISPR_RESPONSE_CODE_LOGIN_SUCCEEDED = 50; static final int WISPR_RESPONSE_CODE_LOGIN_FAILED = 100; static final int WISPR_RESPONSE_CODE_RADIUS_ERROR = 102; static final int WISPR_RESPONSE_CODE_NETWORK_ADMIN_ERROR = 105; static final int WISPR_RESPONSE_CODE_LOGOFF_SUCCEEDED = 150; static final int WISPR_RESPONSE_CODE_LOGING_ABORTED = 151; static final int WISPR_RESPONSE_CODE_PROXY_DETECTION = 200; static final int WISPR_RESPONSE_CODE_AUTH_PENDING = 201; static final int WISPR_RESPONSE_CODE_ACCESS_GATEWAY_INTERNAL_ERROR = 255; }