org.lastbamboo.common.sip.client.util
Interface ProxyRegistrationListener


public interface ProxyRegistrationListener

A callback interface for objects interested in knowing about registration events.


Method Summary
 void registered(URI client, URI proxy)
          Called when we register with a given proxy.
 void registrationFailed(URI client, URI proxy)
          Called when an attempt to register with a given proxy fails.
 void reRegistered(URI client, URI proxy)
          Called when we re-register with a given proxy.
 void unregistered(URI client, URI proxy)
          Called when we unregister from a given proxy.
 

Method Detail

registered

void registered(URI client,
                URI proxy)
Called when we register with a given proxy.

Parameters:
client - The client.
proxy - The proxy.

reRegistered

void reRegistered(URI client,
                  URI proxy)
Called when we re-register with a given proxy.

Parameters:
client - The client.
proxy - The proxy.

registrationFailed

void registrationFailed(URI client,
                        URI proxy)
Called when an attempt to register with a given proxy fails.

Parameters:
client - The client.
proxy - The proxy.

unregistered

void unregistered(URI client,
                  URI proxy)
Called when we unregister from a given proxy.

Parameters:
client - The client.
proxy - The proxy.


Copyright © 2013 LittleShoot. All Rights Reserved.