public class

CWConstants

extends Object
java.lang.Object
   ↳ android.net.cw.CWConstants

Summary

Constants
String ACTION_CW_REGISTRATION_STATE_CHANGED Broadcast intent action indicating that C+W has been registered or deregistered successfully or fail.
String ACTION_CW_SIP_INVITE_RESULT Broadcast intent action indicating that C+W SIP invite state is OK or FAIL.
int CW_SIP_INVITE_FAIL
int CW_SIP_INVITE_OK
int CW_SIP_INVITE_TIMEOUT
String EXTRA_CW_REG_EXPIRE The lookup key for an int that indicates the expired time (in minutes) of C+W session after register successfully.
String EXTRA_CW_REG_STATE The lookup key for an int that indicates whether C+W is registered or deregistered successfully or fail.
String EXTRA_CW_SIP_INVITE_RESULT
String PROPERTY_CW_DATA_IP
String PROPERTY_CW_DATA_PORT
String PROPERTY_CW_STREAM_ID
int RIL_CW_DEREGISTERING
int RIL_CW_DEREGISTER_FAIL
int RIL_CW_DEREGISTER_SUCC
int RIL_CW_REGISTERING
int RIL_CW_REGISTER_FAIL
int RIL_CW_REGISTER_IDLE
int RIL_CW_REGISTER_SUCC
int RIL_CW_REGISTER_TIMEOUT
Public Constructors
CWConstants()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final String ACTION_CW_REGISTRATION_STATE_CHANGED

Broadcast intent action indicating that C+W has been registered or deregistered successfully or fail. One extra provides this state as an int.

Constant Value: "android.intent.action.ACTION_CW_REGISTRATION_STATE_CHANGED"

public static final String ACTION_CW_SIP_INVITE_RESULT

Broadcast intent action indicating that C+W SIP invite state is OK or FAIL. One extra provides this state as an int.

Constant Value: "android.intent.action.ACTION_CW_SIP_INVITE_RESULT"

public static final int CW_SIP_INVITE_FAIL

Constant Value: 202 (0x000000ca)

public static final int CW_SIP_INVITE_OK

Constant Value: 201 (0x000000c9)

public static final int CW_SIP_INVITE_TIMEOUT

Constant Value: 203 (0x000000cb)

public static final String EXTRA_CW_REG_EXPIRE

The lookup key for an int that indicates the expired time (in minutes) of C+W session after register successfully.

Constant Value: "cw_reg_expire"

public static final String EXTRA_CW_REG_STATE

The lookup key for an int that indicates whether C+W is registered or deregistered successfully or fail.

Constant Value: "cw_reg_state"

public static final String EXTRA_CW_SIP_INVITE_RESULT

Constant Value: "cw_sip_invite_result"

public static final String PROPERTY_CW_DATA_IP

Constant Value: "cdma.cw.dataip"

public static final String PROPERTY_CW_DATA_PORT

Constant Value: "cdma.cw.dataport"

public static final String PROPERTY_CW_STREAM_ID

Constant Value: "cdma.cw.streamid"

public static final int RIL_CW_DEREGISTERING

Constant Value: 106 (0x0000006a)

public static final int RIL_CW_DEREGISTER_FAIL

Constant Value: 104 (0x00000068)

public static final int RIL_CW_DEREGISTER_SUCC

Constant Value: 103 (0x00000067)

public static final int RIL_CW_REGISTERING

Constant Value: 105 (0x00000069)

public static final int RIL_CW_REGISTER_FAIL

Constant Value: 102 (0x00000066)

public static final int RIL_CW_REGISTER_IDLE

Constant Value: 108 (0x0000006c)

public static final int RIL_CW_REGISTER_SUCC

Constant Value: 101 (0x00000065)

public static final int RIL_CW_REGISTER_TIMEOUT

Constant Value: 107 (0x0000006b)

Public Constructors

public CWConstants ()