Most visited

Recently visited

Added in API level 9

SipRegistrationListener

public interface SipRegistrationListener

android.net.sip.SipRegistrationListener


Listener for SIP registration events.

Summary

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 methods

onRegistering

Added in API level 9
void onRegistering (String localProfileUri)

Called when a registration request is sent.

Parameters
localProfileUri String: the URI string of the SIP profile to register with

onRegistrationDone

Added in API level 9
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

onRegistrationFailed

Added in API level 9
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:

Hooray!