Home | History | Annotate | Download | only in stack
      1 /*
      2  * This source code has been contributed to the public domain by Mobicents
      3  *
      4  * This software is provided by NIST as a service and is expressly
      5  * provided "AS IS."  NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED
      6  * OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF
      7  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT
      8  * AND DATA ACCURACY.  NIST does not warrant or make any representations
      9  * regarding the use of the software or the results thereof, including but
     10  * not limited to the correctness, accuracy, reliability or usefulness of
     11  * the software.
     12  *
     13  * Permission to use this software is contingent upon your acceptance
     14  * of the terms of this agreement.
     15  */
     16 package gov.nist.javax.sip.stack;
     17 
     18 import java.util.EventListener;
     19 
     20 /**
     21  * Interface implemented by classes that want to be notified of asynchronous
     22  * dialog events.
     23  *
     24  * @author jean deruelle
     25  * @since 2.0
     26  */
     27 public interface SIPDialogEventListener extends EventListener {
     28 
     29     /**
     30      * Invoked when an error has ocurred with a dialog.
     31      *
     32      * @param dialogErrorEvent Error event.
     33      */
     34     public void dialogErrorEvent(SIPDialogErrorEvent dialogErrorEvent);
     35 }
     36