1 package gov.nist.javax.sip; 2 3 import javax.sip.ServerTransaction; 4 5 6 public 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