public interface SipRegistrationListener
android.net.sip.SipRegistrationListener |
Listener for SIP registration events.
Public methods |
|
---|---|
abstract void |
onRegistering(String localProfileUri) Called when a registration request is sent. |
abstract void |
onRegistrationDone(String localProfileUri, long expiryTime) Called when the registration succeeded. |
abstract void |
onRegistrationFailed(String localProfileUri, int errorCode, String errorMessage) Called when the registration failed. |
void onRegistering (String localProfileUri)
Called when a registration request is sent.
Parameters | |
---|---|
localProfileUri |
String : the URI string of the SIP profile to register with |
void onRegistrationDone (String localProfileUri, long expiryTime)
Called when the registration succeeded.
Parameters | |
---|---|
localProfileUri |
String : the URI string of the SIP profile to register with |
expiryTime |
long : duration in seconds before the registration expires |
void onRegistrationFailed (String localProfileUri, int errorCode, String errorMessage)
Called when the registration failed.
Parameters | |
---|---|
localProfileUri |
String : the URI string of the SIP profile to register with |
errorCode |
int : error code of this error |
errorMessage |
String : error message |
See also: