Home | History | Annotate | Download | only in sip
      1 package javax.sip;
      2 
      3 import javax.sip.message.Response;
      4 
      5 public interface ServerTransaction extends Transaction {
      6     void sendResponse(Response response)
      7             throws SipException, InvalidArgumentException;
      8 
      9     void enableRetransmissionAlerts() throws SipException;
     10 
     11     ServerTransaction getCanceledInviteTransaction();
     12 }
     13