1package gov.nist.javax.sip;
2
3import javax.sip.ServerTransaction;
4
5
6public interface ServerTransactionExt extends ServerTransaction, TransactionExt {
7    /**
8     * Return the canceled Invite transaction corresponding to an
9     * incoming CANCEL server transaction.
10     *
11     * @return -- the canceled Invite transaction.
12     *
13     */
14    public ServerTransaction getCanceledInviteTransaction();
15}
16