# Print output for @column tags ?>
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. |
public abstract void onRegistering (String localProfileUri)
Called when a registration request is sent.
Parameters | |
---|---|
localProfileUri |
String : the URI string of the SIP profile to register with |
public abstract 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 |
public abstract 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: