FileDocCategorySizeDatePackage
SIPTimerEvent.javaAPI DocphoneME MR2 API (J2ME)1945Wed May 02 18:00:42 BST 2007gov.nist.siplite.stack

SIPTimerEvent

public class SIPTimerEvent extends Object
An event that indicates that a transaction has encountered an error.

Fields Summary
public static int
RETRANSMISSION
Retransmission enabled.
private Transaction
source
The current transaction originator.
private int
eventId
Current event id.
Constructors Summary
SIPTimerEvent(Transaction sourceTransaction, int eventId)
Creates a transaction error event.

param
sourceTransaction Transaction which is raising the error.
param
eventId ID of the error that has ocurred.

        this.source = sourceTransaction;
        this.eventId = eventId;
    
Methods Summary
public TransactiongetSource()
Gets the originating transaction.

return
the source transation

    
                 
       
        return this.source;