Home | History | Annotate | Download | only in sip
      1 package javax.sip;
      2 
      3 public class TimeoutEvent extends TransactionTerminatedEvent {
      4     private Timeout mTimeout;
      5 
      6     public TimeoutEvent(Object source, ServerTransaction serverTransaction,
      7             Timeout timeout) {
      8         super(source, serverTransaction);
      9         mTimeout = timeout;
     10     }
     11 
     12     public TimeoutEvent(Object source, ClientTransaction clientTransaction,
     13             Timeout timeout) {
     14         super(source, clientTransaction);
     15         mTimeout = timeout;
     16     }
     17 
     18     public Timeout getTimeout() {
     19         return mTimeout;
     20     }
     21 }
     22