Back to project page smsgateway-android.
The source code is released under:
GNU General Public License
If you think the Android project smsgateway-android 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.nubgames.smsgateway; // w w w.j a v a2 s . c o m /** * An interface for stateful transitions. */ public interface Status { public static final int FAILED_AUTH = -3; public static final int FAILED_CONNECT = -2; public static final int NOT_RUNNING = 0; public static final int DISCONNECTED = 1; public static final int CONNECTING = 2; public static final int AUTHORIZING = 3; public static final int CONNECTED = 4; public static final int RETRYING = 5; public void update(int flag); public boolean isCritical(int flag); }